/**
 * Trzoon Marketplace - Ultra Modern 2026 Theme
 * Premium Design with Advanced Animations & Glass Effects
 */

/* ========================================
   CSS Variables - 2026 Theme
======================================== */
:root {
    /* Primary Green Colors */
    --primary: #10b981;
    --primary-hover: #059669;
    --primary-light: rgba(16, 185, 129, 0.15);
    --primary-dark: #047857;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #06d6a0 50%, #059669 100%);
    --primary-gradient-hover: linear-gradient(135deg, #059669 0%, #10b981 100%);
    
    /* Dark Theme Colors */
    --bg-body: #030712;
    --bg-dark: #0a0f1e;
    --bg-darker: #020617;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-solid: #0f172a;
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --bg-glass: rgba(15, 23, 42, 0.6);
    --bg-input: rgba(15, 23, 42, 0.8);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dim: #475569;
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-yellow: #eab308;
    
    /* Borders */
    --border-color: rgba(51, 65, 85, 0.5);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(16, 185, 129, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-glow-sm: 0 0 15px var(--primary-glow);
    
    /* Glass Effect */
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Legacy */
    --primary-color: #10b981;
    --body-bg: #030712;
    --body-color: #f8fafc;
}

/* Light Theme */
[data-theme="light"] {
    --bg-body: #f8fafc;
    --bg-dark: #ffffff;
    --bg-darker: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-solid: #ffffff;
    --bg-card-hover: rgba(241, 245, 249, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-input: rgba(241, 245, 249, 0.9);
    --bg-hover: #f1f5f9;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    
    --border-color: rgba(148, 163, 184, 0.3);
    --border-light: rgba(0, 0, 0, 0.08);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Icon */
[data-theme="light"] .theme-icon-dark { display: none !important; }
[data-theme="light"] .theme-icon-light { display: block !important; }
[data-theme="dark"] .theme-icon-dark { display: block !important; }
[data-theme="dark"] .theme-icon-light { display: none !important; }

/* ========================================
   Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: auto;
    scrollbar-color: var(--primary) var(--bg-dark);
}

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container Width Override - Codefling Style */
.container,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1470px !important;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1470px !important;
    }
}

::selection {
    background: var(--primary);
    color: white;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Animations
======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--primary-glow); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.animate-fade-left { animation: fadeLeft 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

.animate-visible {
    animation: fadeUp 0.6s ease forwards;
}

.spin {
    animation: spin 1s linear infinite;
}

/* ========================================
   Particles Background
======================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 13s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 15s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 14s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 16s; }

/* ========================================
   Buttons
======================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.btn-dark:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--text-primary);
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-modern i {
    transition: var(--transition);
}

.btn-modern:hover i {
    transform: translateX(5px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ========================================
   Modern Navbar 2026
======================================== */
.navbar-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.navbar-logo {
    flex-shrink: 0;
}
.navbar-logo img {
    height: 40px;
    width: auto;
}
.navbar-logo .logo-text {
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}
.navbar-logo .logo-text .tr {
    color: var(--primary);
}
.navbar-logo .logo-text .zoon {
    color: var(--text-primary);
    font-weight: 400;
}

/* Search Box */
.navbar-search-wrapper {
    flex: 1;
    max-width: 500px;
}
.navbar-search-form {
    width: 100%;
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    transition: var(--transition);
}
.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.search-input-wrapper .search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}
.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 14px;
}
.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}
.search-btn {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.search-btn:hover {
    background: var(--primary-hover);
    transform: translateX(2px);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.nav-icon-btn:hover {
    color: var(--primary);
    background: var(--bg-hover, rgba(255,255,255,0.05));
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
}
.nav-icon-btn:hover svg {
    stroke: var(--primary);
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}
.nav-divider-v {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 8px;
}
.notif-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.cart-count-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Balance Button */
.nav-balance-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: var(--bg-input, rgba(255,255,255,0.08));
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.nav-balance-btn:hover {
    background: var(--bg-hover, rgba(255,255,255,0.12));
    color: var(--primary);
}
.nav-balance-btn svg {
    color: var(--text-muted);
}

/* User Profile Button - codefling style */
.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.user-profile-btn:hover {
    background: var(--bg-hover, rgba(255,255,255,0.08));
}
.user-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-avatar-circle span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 14px;
}
.user-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}
.user-profile-btn svg {
    color: var(--text-muted);
}

/* Notification Dot */
.notif-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
}

/* Old User Avatar - kept for compatibility */
.user-avatar-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}
.user-avatar-btn:hover {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}
.user-avatar-btn img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.user-avatar-btn .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dropdown */
.nav-dropdown {
    position: relative;
}
.user-dropdown {
    min-width: 220px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card-solid);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.user-dropdown-header {
    padding: 16px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}
.user-dropdown-name {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
}
.user-dropdown-email {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}
.user-dropdown .dropdown-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}
.user-dropdown .dropdown-item:hover {
    background: var(--bg-hover, rgba(255,255,255,0.05));
    color: var(--text-primary);
}
.user-dropdown .dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.user-dropdown .dropdown-divider {
    margin: 4px 0;
    border-color: var(--border-color);
}

/* Guest Buttons */
.btn-login {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-login:hover {
    color: var(--text-primary);
}
.btn-register {
    padding: 10px 24px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-register:hover {
    background: var(--primary-hover);
}

/* Theme Toggle Icons */
[data-theme="light"] .theme-icon-dark { display: none !important; }
[data-theme="light"] .theme-icon-light { display: block !important; }
[data-theme="dark"] .theme-icon-dark,
:root .theme-icon-dark { display: block !important; }
[data-theme="dark"] .theme-icon-light,
:root .theme-icon-light { display: none !important; }

/* ========================================
   Forms
======================================== */
.form-control,
.form-select {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-card);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ========================================
   Header & Navigation
======================================== */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.navbar-search {
    position: relative;
    max-width: 320px;
}

.navbar-search input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0.625rem 1rem 0.625rem 2.75rem;
    color: var(--text-primary);
    width: 100%;
    transition: var(--transition);
}

.navbar-search input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
    outline: none;
}

.navbar-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.top-bar {
    background: var(--bg-darker);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-light);
}

/* New Navbar Icons Style */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    color: var(--text-muted) !important;
    transition: var(--transition);
}
.nav-icon-btn:hover {
    color: var(--text-primary) !important;
}
.nav-icon-btn svg {
    width: 22px;
    height: 22px;
}
.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 8px;
}
.notif-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.cart-count-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Avatar Style */
.user-avatar-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.user-avatar-wrapper:hover {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}
.user-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.user-avatar-wrapper .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dropdown Menu */
.user-dropdown {
    min-width: 220px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.user-dropdown-header {
    padding: 16px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}
.user-dropdown-name {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
}
.user-dropdown-email {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}
.user-dropdown .dropdown-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}
.user-dropdown .dropdown-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}
.user-dropdown .dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.user-dropdown .dropdown-divider {
    margin: 4px 0;
    border-color: var(--border-color);
}

.top-bar a {
    color: var(--text-secondary);
}

.top-bar a:hover {
    color: var(--primary);
}

/* ========================================
   Hero Fullscreen - Image Background
======================================== */
.hero-fullscreen {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Top fade */
        linear-gradient(180deg, 
            var(--bg-main) 0%, 
            transparent 20%),
        /* Bottom fade */
        linear-gradient(0deg, 
            var(--bg-main) 0%, 
            transparent 25%),
        /* Left fade */
        linear-gradient(90deg, 
            var(--bg-main) 0%, 
            transparent 30%),
        /* Right fade */
        linear-gradient(270deg, 
            var(--bg-main) 0%, 
            transparent 30%),
        /* Overall dark overlay */
        radial-gradient(ellipse at center, 
            transparent 0%, 
            rgba(10, 15, 28, 0.4) 100%);
}

.hero-character {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 2;
    pointer-events: none;
}

.character-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.3));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 4rem 0;
}

/* Hero Badge Glow */
.hero-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Hero Main Title */
.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.title-highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

/* Hero Description */
.hero-main-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Search Full */
.hero-search-full {
    margin-bottom: 2.5rem;
}

.search-box-full {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.search-box-full:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.search-box-full i.bi-search {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-right: 12px;
}

.search-box-full input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.search-box-full input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box-full button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box-full button:hover {
    background: #0d9668;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 3rem;
}

.stat-box {
    text-align: left;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stat-txt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}

/* ========================================
   Categories Bar
======================================== */
.categories-bar {
    background: var(--bg-main);
    padding: 2rem 0;
    position: relative;
}

.categories-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.cat-item:hover {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.08);
}

.cat-item:hover .cat-icon {
    color: var(--primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.cat-icon {
    color: var(--primary);
    transition: all 0.3s ease;
}

.cat-icon svg {
    display: block;
}

.cat-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-character {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-main-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        min-height: 70vh;
    }
    
    .categories-row {
        gap: 0.5rem;
    }
    
    .cat-item {
        padding: 0.75rem 1rem;
    }
    
    .cat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .cat-item span {
        font-size: 0.75rem;
    }
}

/* ========================================
   Hero Section Premium 2026
======================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-main) 0%, #0a1628 50%, var(--bg-main) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: 10%;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation-delay: -14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.min-vh-80 {
    min-height: 80vh;
}

/* Hero Badge Premium */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-premium i {
    font-size: 1rem;
}

/* Hero Title Premium */
.hero-title-premium {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #34d399 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description Premium */
.hero-desc-premium {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Hero Search Premium */
.hero-search-premium {
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.search-wrapper-premium {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 6px;
    transition: all 0.3s ease;
}

.search-wrapper-premium:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.search-input-premium {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input-premium::placeholder {
    color: var(--text-muted);
}

.search-btn-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.search-btn-premium:hover {
    background: #0d9668;
    transform: translateX(3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Search Tags Premium */
.search-tags-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: lowercase;
}

.tag-item {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
}

/* Hero Stats Premium */
.hero-stats-premium {
    display: flex;
    align-items: center;
    gap: 0;
}

.stat-item-premium {
    text-align: center;
    padding: 0 2rem;
}

.stat-item-premium:first-child {
    padding-left: 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: lowercase;
}

.stat-divider-premium {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

/* Hero Visual Premium */
.hero-visual-premium {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-card {
    position: relative;
    width: 280px;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-product-card:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-10px);
}

.product-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.product-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.product-card-placeholder i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.product-card-price {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Scroll Indicator Premium */
.scroll-indicator-premium {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Hero Section 2026 (Legacy)
======================================== */
.hero-2026 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title-2026 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-desc-2026 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Search Box */
.hero-search-box {
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-sm);
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.search-tag-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search-tag {
    padding: 0.375rem 0.875rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    transition: var(--transition);
}

.search-tag:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Stats */
.hero-stats-2026 {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 150px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.floating-card-info .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.floating-card-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-card-2 {
    top: 30%;
    right: 5%;
    animation: floatSlow 8s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 2;
}

.floating-card-3 {
    bottom: 15%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.3;
    top: 20%;
    left: 30%;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-purple);
    opacity: 0.2;
    bottom: 30%;
    right: 20%;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-cyan);
    opacity: 0.25;
    top: 50%;
    right: 40%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 1.5s ease-in-out infinite;
}

/* ========================================
   Trust Section
======================================== */
.trust-section {
    padding: 2rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.trust-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.trust-text span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ========================================
   Section Headers 2026
======================================== */
.section-header-2026 {
    margin-bottom: 3rem;
}

.section-header-2026.text-center {
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title-2026 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 600px;
}

.section-header-2026.text-center .section-desc {
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   Categories 2026
======================================== */
.categories-2026 {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card-2026 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
}

.category-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--cat-color);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: var(--transition);
}

.category-card-2026:hover {
    transform: translateY(-8px);
    border-color: var(--cat-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card-2026:hover .category-glow {
    opacity: 0.3;
}

.category-icon-2026 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cat-color), transparent);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
}

.category-card-2026:hover .category-icon-2026 {
    transform: scale(1.1);
}

.category-name-2026 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    text-align: center;
}

.category-count-2026 {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.category-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-card-2026:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--cat-color);
    color: white;
}

/* ========================================
   Products Section 2026
======================================== */
.products-section-2026 {
    padding: 5rem 0;
}

.featured-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.trending-section {
    background: var(--bg-dark);
}

.latest-section {
    background: var(--bg-body);
}

/* Products Grid */
.products-grid-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.products-grid-2026.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-carousel .product-card-2026 {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.carousel-btn.prev-btn {
    left: 0;
}

.carousel-btn.next-btn {
    right: 0;
}

/* Product Card 2026 */
.product-card-2026 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-2026:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
}

.product-card-2026.featured-product {
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.product-image-2026 {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-darker);
}

.product-image-2026 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card-2026:hover .product-image-2026 img {
    transform: scale(1.08);
}

/* Product Badges */
.product-badges-2026 {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 5;
}

.product-badges-2026 span {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
}

.badge-free {
    background: var(--primary-gradient);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.badge-new.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.badge-sale {
    background: var(--accent-red);
    color: white;
}

/* Product Actions */
.product-actions-2026 {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 5;
}

.product-card-2026:hover .product-actions-2026 {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.action-btn.wishlist-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Sales Badge */
.sales-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.time-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Product Info */
.product-info-2026 {
    padding: 1.25rem;
}

.product-category-2026 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.product-category-2026:hover {
    color: var(--primary-hover);
}

.product-title-2026 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-title-2026 a {
    color: var(--text-primary);
    transition: var(--transition);
}

.product-title-2026 a:hover {
    color: var(--primary);
}

.product-meta-2026 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seller-avatar-mini {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
    overflow: hidden;
}

.seller-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-info span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.product-rating-2026 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-yellow);
    font-size: 0.8125rem;
}

.product-rating-2026 span {
    color: var(--text-secondary);
    font-weight: 600;
}

.rating-count {
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}

.product-footer-2026 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.product-price-2026 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.price-free {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.price-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.view-details-btn:hover {
    background: var(--primary);
    color: white;
}

.view-details-btn i {
    transition: var(--transition);
}

.view-details-btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   Stats Showcase 2026
======================================== */
.stats-showcase-2026 {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    opacity: 0.5;
}

.stats-grid-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-2026 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
}

.stat-card-2026:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
}

.stat-icon-2026 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: white;
}

.stat-value-2026 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label-2026 {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ========================================
   Sellers Section 2026
======================================== */
.sellers-section-2026 {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.seller-card-2026 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.seller-card-2026:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.seller-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.seller-avatar-2026 {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.seller-avatar-2026 img,
.seller-avatar-2026 .avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

.seller-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 1rem;
}

.seller-name-2026 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.seller-stats-2026 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.seller-stat {
    text-align: center;
}

.seller-stat .stat-val {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.seller-stat .stat-lbl {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.seller-view-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.seller-view-btn:hover {
    background: var(--primary);
    color: white;
}

/* ========================================
   Reviews Section 2026
======================================== */
.reviews-section-2026 {
    padding: 5rem 0;
    background: var(--bg-body);
}

.reviews-carousel-wrapper {
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1rem;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card-2026 {
    flex: 0 0 400px;
    scroll-snap-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.review-card-2026:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.review-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

.review-rating-2026 {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.review-text-2026 {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-product-2026 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.review-product-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-product-2026 a {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.review-product-2026 a:hover {
    color: var(--primary);
}

.review-author-2026 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar-2026 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    overflow: hidden;
}

.review-avatar-2026 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.review-author-info span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ========================================
   Newsletter 2026
======================================== */
.newsletter-2026 {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.newsletter-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.newsletter-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.15;
    top: -200px;
    left: -100px;
}

.newsletter-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    opacity: 0.1;
    bottom: -150px;
    right: -50px;
}

.newsletter-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newsletter-content-2026 {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    font-size: 2rem;
    color: white;
    animation: float 4s ease-in-out infinite;
}

.newsletter-title-2026 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-desc-2026 {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.newsletter-form-2026 {
    margin-bottom: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input-group input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
    outline: none;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ========================================
   CTA Section 2026
======================================== */
.cta-section-2026 {
    padding: 5rem 0;
}

.cta-card-2026 {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--bg-card-solid) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
}

.cta-card-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.1;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.cta-title-2026 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc-2026 {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.cta-features li i {
    color: var(--primary);
    font-size: 1.125rem;
}

.cta-btn-2026 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-decoration: none;
}

.cta-btn-2026:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    color: white;
}

.cta-btn-2026 i {
    transition: var(--transition);
}

.cta-btn-2026:hover i {
    transform: translateX(5px);
}

.cta-visual {
    flex: 0 0 300px;
    position: relative;
    z-index: 1;
}

.cta-illustration {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.cta-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    font-size: 3.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.floating-money {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-money.money-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-money.money-2 {
    top: 20%;
    right: 10%;
    animation-delay: -1s;
}

.floating-money.money-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: -2s;
}

/* ========================================
   Footer 2026
======================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand a {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-brand a span {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payments img {
    height: 24px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

/* Scroll to top - Hidden */
.scroll-top-btn,
.scroll-to-top {
    display: none !important;
}

/* ========================================
   Cards & Utilities
======================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.card-body {
    padding: 1.5rem;
}

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--primary) !important; }
.text-danger { color: var(--accent-red) !important; }
.text-warning { color: var(--accent-orange) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-success { background: var(--primary) !important; }
.bg-danger { background: var(--accent-red) !important; }
.bg-warning { background: var(--accent-orange) !important; }
.bg-dark { background: var(--bg-dark) !important; }

.badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-primary,
.badge-success {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-success {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Modals */
.modal-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.modal-title {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* Dropdowns */
.dropdown-menu {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* Tables */
.table {
    color: var(--text-primary);
}

.table th {
    background: var(--bg-dark);
    border-color: var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.table td {
    border-color: var(--border-color);
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background: var(--bg-card-hover);
}

/* Pagination */
.pagination {
    gap: 0.5rem;
}

.page-item .page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.page-item .page-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-item.disabled .page-link {
    background: var(--bg-darker);
    color: var(--text-dim);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid-2026 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sellers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-2026 {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
    
    .hero-title-2026 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sellers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-card-2026 {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-visual {
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats-2026 {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-search-box {
        max-width: 100%;
    }
    
    .search-btn span {
        display: none;
    }
    
    .trust-wrapper {
        justify-content: center;
    }
    
    .trust-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card-2026 {
        padding: 1.5rem 1rem;
    }
    
    .products-section-2026 {
        padding: 3rem 0;
    }
    
    .section-header-2026 {
        margin-bottom: 2rem;
    }
    
    .products-carousel-wrapper {
        padding: 0;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .stats-grid-2026 {
        grid-template-columns: 1fr;
    }
    
    .stat-card-2026 {
        padding: 1.5rem;
    }
    
    .sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card-2026 {
        flex: 0 0 320px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title-2026 {
        font-size: 1.875rem;
    }
    
    .hero-desc-2026 {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-2026 {
        grid-template-columns: 1fr;
    }
    
    .products-carousel .product-card-2026 {
        flex: 0 0 260px;
    }
    
    .sellers-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .cta-card-2026 {
        padding: 2rem 1.5rem;
    }
    
    .particles-container {
        display: none;
    }
}

/* ========================================
   RTL Support
======================================== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-search-box .search-icon {
    left: auto;
    right: 1.5rem;
}

[dir="rtl"] .search-input {
    padding: 1rem 3rem 1rem 1rem;
}

[dir="rtl"] .category-arrow {
    right: auto;
    left: 1rem;
}

[dir="rtl"] .product-badges-2026 {
    left: auto;
    right: 0.75rem;
}

[dir="rtl"] .product-actions-2026 {
    right: auto;
    left: 0.75rem;
    transform: translateX(-10px);
}

[dir="rtl"] .product-card-2026:hover .product-actions-2026 {
    transform: translateX(0);
}

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .view-details-btn:hover i,
[dir="rtl"] .btn-modern:hover i,
[dir="rtl"] .cta-btn-2026:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .seller-rank {
    right: auto;
    left: -10px;
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .particles-container,
    .scroll-top-btn,
    .hero-glow,
    .hero-grid,
    .glow-orb {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
