/**
 * HStore - Modern Redesigned Stylesheet
 * Fresh, clean, and professional design
 */

/* ========================================
   TOP BAR STYLES
   ======================================== */
.top-bar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: #38bdf8 !important;
}

/* ========================================
   MAIN HEADER STYLES
   ======================================== */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 600px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    background: #fff;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.search-icon {
    color: #64748b;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 0.95rem;
    outline: none;
}

.search-btn {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action-item {
    position: relative;
}

.action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    color: #475569;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-icon:hover {
    background: #e2e8f0;
    color: #0ea5e9;
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

/* Header Wallet */
.header-wallet {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.wallet-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 50%;
    color: #fff;
}

.wallet-info {
    display: flex;
    flex-direction: column;
}

.wallet-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
}

/* User Menu */
.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px 5px 5px;
    background: #f8fafc;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-menu-toggle:hover {
    background: #f1f5f9;
}

.user-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.user-avatar-lg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.user-role {
    font-size: 0.7rem;
    color: #64748b;
}

.user-dropdown {
    min-width: 280px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}

.dropdown-header-custom {
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
}

/* Header Buttons */
.header-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-btn-outline {
    color: #475569;
    border: 2px solid #e2e8f0;
}

.header-btn-outline:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.header-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    border: none;
}

.header-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    color: #475569;
    font-size: 1.25rem;
}

/* ========================================
   MAIN NAVIGATION STYLES
   ======================================== */
.main-nav {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-item {
    position: relative;
}

.nav-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-menu-link:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.nav-menu-link.active {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.nav-menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 3px 3px 0 0;
}

/* Responsive Header */
@media (max-width: 991px) {
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .header-wallet .wallet-info {
        display: none;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .nav-menu-link {
        width: 100%;
    }
}

:root {
    /* New Color Palette - Deep Blue & Teal */
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary-color: #6366f1;
    --accent-color: #14b8a6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* General Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Navbar - Glassmorphism Style */
.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link:hover {
    color: var(--primary-light) !important;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.notification-dropdown {
    min-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 16px;
    border: none;
    box-shadow: var(--card-shadow-hover);
}

/* Search Box */
.navbar .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .form-control {
    border: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
}

.navbar .form-control:focus {
    box-shadow: none;
    background: #fff;
}

.navbar .btn-primary {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

/* Cards - Modern Glass Effect */
.card {
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.card-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(20, 184, 166, 0.05));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 700;
    padding: 1.25rem 1.5rem;
}

/* Product Cards */
.product-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    padding: 20px;
    transition: transform 0.4s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .product-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    border-radius: 20px 20px 0 0;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--dark-color);
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card .seller-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Seller Cards */
.seller-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,249,255,0.9));
}

.seller-card .seller-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.seller-card .seller-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.seller-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
}

.badge-verified {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.badge-unverified {
    background: linear-gradient(135deg, #64748b, #475569);
}

.badge-pending {
    background: linear-gradient(135deg, var(--warning-color), #fbbf24);
    color: #000;
}

/* Star Rating */
.star-rating {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.star-rating .rating-number {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* Forms */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    background: #fff;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-success {
    color: var(--success-color);
    border: 2px solid var(--success-color);
}

.btn-outline-success:hover {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    border-color: transparent;
    color: white;
}

.btn-outline-danger {
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

.btn-outline-danger:hover {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    border-color: transparent;
    color: white;
}

/* Tables */
.table {
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.table thead th {
    background: linear-gradient(135deg, var(--dark-color), #1e293b);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--border-color);
}

.table tbody tr:hover {
    background: rgba(14, 165, 233, 0.05);
}

/* Pagination */
.pagination .page-link {
    border-radius: 10px;
    margin: 0 4px;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(20, 184, 166, 0.15));
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
    color: #92400e;
    border-left: 4px solid var(--warning-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(99, 102, 241, 0.15));
    color: #0c4a6e;
    border-left: 4px solid var(--primary-color);
}

/* Wallet Card */
.wallet-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wallet-card .balance {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wallet-card .balance-label {
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Stats Cards */
.stat-card {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,249,255,0.95));
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 0 20px 0 100%;
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Payment Box */
.payment-box {
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.payment-box .qr-code {
    max-width: 200px;
    margin: 1.5rem auto;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.payment-box .wallet-address {
    font-family: 'JetBrains Mono', monospace;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    word-break: break-all;
    font-size: 0.85rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Sidebar */
.sidebar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 0;
    box-shadow: var(--card-shadow);
}

.sidebar .nav-link {
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0.25rem 0;
}

.sidebar .nav-link:hover {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.1), transparent);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar .nav-link.active {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.15), transparent);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.sidebar .nav-link i {
    width: 24px;
    margin-right: 0.75rem;
}

/* Category Pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-pill:hover, .category-pill.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.category-pill i {
    margin-right: 0.5rem;
}

/* Order Status */
.order-status {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.order-status.pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.order-status.processing {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.order-status.delivered {
    background: linear-gradient(135deg, #fef9c3, #fef08a);
    color: #854d0e;
}

.order-status.completed {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.order-status.cancelled {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.order-status.refunded {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #6b21a8;
}

.order-status.disputed {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #7f1d1d;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color), #1e293b, var(--primary-dark));
    color: white;
    padding: 5rem 0;
    margin-top: -2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
}

.hero-section .lead {
    opacity: 0.9;
    font-size: 1.25rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

/* Copy Button */
.copy-btn {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.copy-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Review Card */
.review-card {
    border-left: 4px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-color)) 1;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.05), transparent);
    border-radius: 0 12px 12px 0;
}

.review-card .reviewer {
    font-weight: 700;
    color: var(--dark-color);
}

.review-card .review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .wallet-card .balance {
        font-size: 2.25rem;
    }
    
    .stat-card .stat-value {
        font-size: 1.5rem;
    }
    
    .card {
        border-radius: 16px;
    }
}

/* Admin Panel Specific */
.admin-sidebar {
    min-height: calc(100vh - 56px);
    background: linear-gradient(180deg, var(--dark-color), #1e293b);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover {
    color: white;
    background: rgba(14, 165, 233, 0.2);
}

.admin-sidebar .nav-link.active {
    color: white;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.3), transparent);
    border-left-color: var(--primary-color);
}

/* Seller Dashboard */
.seller-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.product-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Delivery Data Box */
.delivery-data-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #4ade80;
    font-family: 'JetBrains Mono', monospace;
    padding: 1.5rem;
    border-radius: 16px;
    white-space: pre-wrap;
    word-break: break-all;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Timer */
.payment-timer {
    font-size: 2rem;
    font-weight: 800;
    color: var(--warning-color);
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.payment-timer.expired {
    color: var(--danger-color);
    text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--success-color));
}

/* Quick Icon Items (Services/Games section) */
.quick-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 70px;
}

.quick-icon-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.quick-icon-img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: contain;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.quick-icon-item:hover .quick-icon-img {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    transform: scale(1.1);
}

.quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.quick-icon-item:hover .quick-icon {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

.quick-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.quick-icon-item:hover .quick-icon-box {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
    transform: scale(1.1);
}

.quick-icon-item span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
    color: var(--text-muted);
}

/* Product Card V2 - Grid Style */
.product-card-v2 {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.product-card-v2:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    transform: translateY(-8px);
}

.product-img-wrap {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

.product-img-wrap img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
    margin: auto;
    transition: transform 0.4s ease;
}

.product-card-v2:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-placeholder-v2 {
    font-size: 3rem;
    color: var(--border-color);
}

.instant-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    color: var(--danger-color);
    background: white;
    transform: scale(1.1);
}

.product-title-v2 {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-title-v2 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-v2 a:hover {
    color: var(--primary-color);
}

.stock-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.price-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-info strong {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-buy {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--primary-dark), #4f46e5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Override Bootstrap primary colors */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.btn-primary:focus, .btn-primary:active {
    background: linear-gradient(135deg, var(--primary-dark), #4f46e5) !important;
    border-color: transparent !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.25) !important;
}

.btn-outline-primary:focus, .btn-outline-primary:active {
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.25) !important;
}

/* ========================================
   NEW FOOTER STYLES
   ======================================== */
.footer-new {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #94a3b8;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #14b8a6, #6366f1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #14b8a6);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #0ea5e9;
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    width: 10px;
    margin-right: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-label {
    font-size: 0.85rem;
    color: #64748b;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

/* Legacy Footer Styles (kept for compatibility) */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    position: relative;
    overflow: hidden;
}

.footer h5, .footer h6 {
    color: #fff;
    font-weight: 700;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #38bdf8 !important;
}

/* Nav Tabs */
.nav-tabs {
    border: none;
    gap: 0.5rem;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: white;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    min-width: 150px;
    overflow: visible;
}

/* Language Selector - Custom */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 1rem;
}

.lang-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.show + .lang-current .lang-arrow,
.lang-selector:has(.lang-dropdown.show) .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: fixed;
    top: auto;
    right: auto;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.lang-option.active {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-check {
    font-size: 0.75rem;
}

.dropdown-item {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(20, 184, 166, 0.1));
    color: var(--primary-color);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
}

/* ========================================
   NEW HERO SECTION STYLES
   ======================================== */
.hero-section-new {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
    top: 20%;
    left: 10%;
    background: linear-gradient(135deg, #0088cc, #00a0dc);
    animation-delay: 0s;
}

.hero-card-2 {
    top: 10%;
    right: 20%;
    background: linear-gradient(135deg, #5865F2, #7289da);
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 30%;
    left: 20%;
    background: linear-gradient(135deg, #E4405F, #f77737);
    animation-delay: 2s;
}

.hero-card-4 {
    bottom: 20%;
    right: 15%;
    background: linear-gradient(135deg, #1DA1F2, #14171a);
    animation-delay: 3s;
}

.hero-card-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    font-size: 3rem;
    border-radius: 30px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 20px 60px rgba(14, 165, 233, 0.6); }
}

/* ========================================
   TRUST BADGES SECTION
   ======================================== */
.trust-badges {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badges-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    border-radius: 12px;
    color: #0ea5e9;
    font-size: 1.25rem;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text strong {
    font-size: 0.95rem;
    color: #1e293b;
}

.trust-badge-text span {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .trust-badges-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badge-text {
        display: none;
    }
}

/* ========================================
   NEW SECTION STYLES
   ======================================== */
.section-new {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 14px;
    color: #fff;
    font-size: 1.25rem;
}

.section-icon.fire {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.section-icon.crown {
    background: linear-gradient(135deg, #f59e0b, #eab308);
}

.section-icon.clock {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.section-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 50px;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-link:hover {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.category-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.category-icon-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    border-radius: 16px;
    color: #0ea5e9;
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.category-card-new:hover .category-icon-new {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
}

.category-name-new {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

/* Services & Games Cards */
.services-games-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .services-games-wrapper {
        grid-template-columns: 1fr;
    }
}

.sg-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sg-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sg-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.sg-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.sg-icon.services {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.sg-icon.games {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.sg-link {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sg-link:hover {
    color: #0ea5e9;
}

.sg-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 70px;
}

.sg-item:hover {
    background: #f8fafc;
}

.sg-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.sg-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.sg-item:hover .sg-item-icon {
    transform: scale(1.1);
}

.sg-item-icon.telegram { background: linear-gradient(135deg, #0088cc, #00a0dc); }
.sg-item-icon.twitter { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }
.sg-item-icon.google { background: linear-gradient(135deg, #4285f4, #34a853); }
.sg-item-icon.discord { background: linear-gradient(135deg, #5865F2, #7289da); }
.sg-item-icon.instagram { background: linear-gradient(135deg, #E4405F, #f77737); }
.sg-item-icon.facebook { background: linear-gradient(135deg, #1877f2, #0d65d9); }
.sg-item-icon.tiktok { background: linear-gradient(135deg, #000, #25f4ee); }
.sg-item-icon.steam { background: linear-gradient(135deg, #1b2838, #2a475e); }
.sg-item-icon.playstation { background: linear-gradient(135deg, #003087, #0070d1); }
.sg-item-icon.xbox { background: linear-gradient(135deg, #107c10, #0e6b0e); }
.sg-item-icon.roblox { background: linear-gradient(135deg, #e2231a, #ff0000); }
.sg-item-icon.minecraft { background: linear-gradient(135deg, #3b8526, #62b44b); }
.sg-item-icon.fortnite { background: linear-gradient(135deg, #9d4dbb, #7b2cbf); }
.sg-item-icon.valorant { background: linear-gradient(135deg, #ff4655, #fd4556); }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.product-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
}

.product-image-new {
    display: block;
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    overflow: hidden;
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.05);
}

.product-placeholder-new {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #cbd5e1;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

.product-badge.instant {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.product-info-new {
    padding: 15px;
}

.product-name-new {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.product-name-new a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name-new a:hover {
    color: #0ea5e9;
}

.product-meta-new {
    margin-bottom: 12px;
}

.product-stock {
    font-size: 0.8rem;
    color: #64748b;
}

.product-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-new {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0ea5e9;
}

.product-buy-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-buy-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Sellers Grid */
.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.seller-card-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.seller-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.seller-avatar-new {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.seller-avatar-new img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.seller-avatar-new span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.seller-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    font-size: 0.6rem;
    border: 2px solid #fff;
}

.seller-info-new {
    flex: 1;
}

.seller-name-new {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.seller-rating-new {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #fef3c7;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 5px;
}

.seller-rating-new i {
    font-size: 0.7rem;
}

.seller-sales-new {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

/* Hero Banner (Legacy - kept for compatibility) */
.hero-banner-inner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color)) !important;
    border-radius: 24px !important;
    position: relative;
    overflow: hidden;
}
