* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Theme Variables - Light Mode (Default) - Premium Liquid Glass */
:root, :root[data-theme="light"] {
    --primary-color: #6e7afc;
    --primary-dark: #5b68f0;
    --primary-light: #a88bff;
    --secondary-color: #a78bfa;
    --accent-color: #ff72c6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --green-color: #22c55e;
    --green-dark: #16a34a;
    
    /* Light Mode Colors - Premium Liquid Glass */
    --dark-bg: #f6f8fc;
    --dark-card: rgba(255, 255, 255, 0.92);
    --dark-border: rgba(226, 232, 240, 0.5);
    --text-primary: #0c0e14;
    --text-secondary: #58607a;
    --text-muted: #9aa4bf;
    
    /* Liquid Glass - Premium Enhanced */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(110, 122, 252, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(110, 122, 252, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --glass-item-bg: rgba(255, 255, 255, 0.5);
    --glass-item-border: rgba(110, 122, 252, 0.2);
    
    --gradient: linear-gradient(135deg, #6e7afc 0%, #a88bff 50%, #ff72c6 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-nav: linear-gradient(135deg, #6e7afc 0%, #a88bff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    
    --shadow: 0 10px 30px rgba(13, 19, 33, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 19, 33, 0.16);
    --shadow-sm: 0 2px 10px rgba(13, 19, 33, 0.06);
    --shadow-hover: 0 16px 44px rgba(110, 122, 252, 0.28);
    
    --blur-amount: 20px;
    --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
    --topbar-h: 44px;
    --navbar-h: 70px;
}

/* Theme Variables - Dark Mode - Premium Liquid Glass */
:root[data-theme="dark"] {
    --primary-color: #6e7afc;
    --primary-dark: #5b68f0;
    --primary-light: #a88bff;
    --secondary-color: #a78bfa;
    --accent-color: #ff72c6;
    --success-color: #34d399;
    --warning-color: #fbbf24;
    --danger-color: #f87171;
    --green-color: #4ade80;
    --green-dark: #22c55e;
    
    /* Dark Mode Colors - Premium Liquid Glass */
    --dark-bg: #0a0b10;
    --dark-card: rgba(18, 21, 34, 0.88);
    --dark-border: rgba(255, 255, 255, 0.08);
    --text-primary: #eef1f8;
    --text-secondary: #9aa4bf;
    --text-muted: #64748b;
    
    /* Liquid Glass - Premium Enhanced */
    --glass-bg: rgba(18, 21, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --glass-item-bg: rgba(255, 255, 255, 0.08);
    --glass-item-border: rgba(255, 255, 255, 0.15);
    
    --gradient: linear-gradient(135deg, #6e7afc 0%, #a88bff 50%, #ff72c6 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-nav: linear-gradient(135deg, #6e7afc 0%, #a88bff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(15, 17, 26, 0.95) 0%, rgba(15, 17, 26, 0.8) 100%);
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 16px 44px rgba(110, 122, 252, 0.3);
    
    --blur-amount: 24px;
    --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
    --topbar-h: 44px;
    --navbar-h: 70px;
}

/* Smooth theme transition */
body.theme-transitioning,
body.theme-transitioning * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.55;
    letter-spacing: -0.01em;
    min-height: 100vh;
    background-image: 
        radial-gradient(720px 500px at 70% -10%, rgba(110, 122, 252, 0.14), transparent 60%),
        radial-gradient(680px 480px at -10% 10%, rgba(168, 139, 255, 0.10), transparent 60%),
        radial-gradient(560px 560px at 50% 50%, rgba(255, 114, 198, 0.08), transparent 60%),
        var(--dark-bg);
    background-attachment: fixed;
    transition: background-color 0.3s var(--bezier);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    box-shadow: 0 0 10px rgba(110, 122, 252, 0.5);
    transition: width 0.1s linear;
    z-index: 9999;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Theme Toggle Button */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(15deg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Theme toggle in top-bar */
.top-bar-content .theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.top-bar-content .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Fallback for when toggle is not in navbar or top-bar */
body > .theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: 3px solid var(--dark-card);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    margin-left: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Top Bar - Enhanced Professional Styling */
.top-bar {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.96) 0%, rgba(139, 92, 246, 0.96) 100%);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    color: white;
    padding: 12px 0;
    font-size: 0.875rem;
    box-shadow: 0 2px 16px rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-label {
    font-weight: 600;
    opacity: 0.95;
    margin-right: 4px;
}

.support-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.support-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.support-icon {
    font-size: 1.1em;
}

.support-text {
    font-size: 0.9em;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    font-weight: 300;
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.hours-icon {
    font-size: 1.1em;
}

.hours-text {
    font-weight: 400;
}

.hours-text strong {
    font-weight: 700;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .top-bar-content {
        padding: 0 16px;
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .business-hours {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .support-text {
        display: none;
    }
}

.arrow {
    font-size: 0.55rem;
    margin-left: 3px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-1px);
}

.nav-link:hover .arrow {
    opacity: 1;
}

/* Ensure arrow stays inline on all screen sizes */
@media (max-width: 768px) {
    .nav-link {
        padding: 12px 16px;
        gap: 3px;
    }
    
    .arrow {
        font-size: 0.5rem;
        margin-left: 2px;
    }
}

/* Navigation Bar - Premium Liquid Glass */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    padding: 0;
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.35s var(--bezier);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s var(--bezier);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.18s var(--bezier);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 10px;
    white-space: nowrap;
    gap: 6px;
    line-height: 1;
    flex-wrap: nowrap;
    opacity: 0.92;
}

.nav-link > * {
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(110, 122, 252, 0.15);
    color: var(--text-primary);
    opacity: 1;
    transform: translateY(-1px);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    z-index: 1000;
    padding: 8px;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 10px;
    margin-bottom: 4px;
    background: var(--glass-item-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--glass-item-border);
    box-shadow: 0 4px 16px rgba(110, 122, 252, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(-5px);
    animation: slideInFade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dropdown-menu a:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu a:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu a:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu a:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu a:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu a:nth-child(6) { animation-delay: 0.3s; }

.dropdown-menu a:hover {
    background: rgba(110, 122, 252, 0.2);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-color: rgba(110, 122, 252, 0.35);
    color: var(--text-primary);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 122, 252, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dropdown-menu a:active {
    transform: translateX(4px) translateY(0);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Warning Banner - Removed */

/* Hero Section - Premium Professional */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px 80px;
    margin-top: calc(var(--topbar-h, 44px) + var(--navbar-h, 70px));
    background: var(--dark-bg);
    transition: all 0.4s var(--bezier);
}

/* Hide hero section when products are shown */
.hero-section.hidden {
    display: none;
}

/* Compact hero section when products are active */
.hero-section.compact {
    min-height: 0;
    padding: 60px 20px 40px;
    margin-top: calc(var(--topbar-h, 44px) + var(--navbar-h, 70px));
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-1 {
    position: absolute;
    width: 1000px;
    height: 1000px;
    top: -300px;
    right: -300px;
    background: radial-gradient(circle, rgba(110, 122, 252, 0.35), transparent 65%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    filter: blur(60px);
}

.hero-gradient-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(168, 139, 255, 0.30), transparent 65%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    filter: blur(60px);
}

.hero-gradient-3 {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 114, 198, 0.25), transparent 65%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
    filter: blur(80px);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(3px 3px at 15% 25%, rgba(110, 122, 252, 0.4), transparent),
        radial-gradient(3px 3px at 65% 75%, rgba(168, 139, 255, 0.4), transparent),
        radial-gradient(2px 2px at 35% 55%, rgba(255, 114, 198, 0.4), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(110, 122, 252, 0.3), transparent),
        radial-gradient(2px 2px at 25% 80%, rgba(168, 139, 255, 0.3), transparent);
    background-size: 300% 300%;
    animation: particles 25s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.25; }
}

@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    isolation: isolate;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 0;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s var(--bezier) both;
    position: relative;
    overflow: hidden;
    order: 1;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 122, 252, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 0;
    letter-spacing: -0.04em;
    order: 2;
}

.hero-title-line {
    display: block;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
    margin-top: 0;
    line-height: 1.8;
    font-weight: 400;
    order: 3;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
    margin-top: 0;
    order: 4;
}

/* Ensure 2 columns on mobile phones (including S8) */
@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
        max-width: 100%;
    }
}

.hero-stat {
    padding: 24px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.35s var(--bezier);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(110, 122, 252, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    order: 5;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-decoration-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatDecoration 15s ease-in-out infinite;
    filter: blur(1px);
}

.decoration-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.decoration-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    font-size: 2rem;
}

.decoration-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 1.8rem;
}

.decoration-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
    font-size: 2.2rem;
}

.decoration-5 {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
    font-size: 1.5rem;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translate(-15px, -50px) rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg) scale(1.1);
        opacity: 0.35;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--bezier);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(110, 122, 252, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 122, 252, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s var(--bezier);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(110, 122, 252, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Reveal Animations */
.reveal-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s var(--bezier) 0.2s forwards;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s var(--bezier) 0.4s forwards;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleFade 0.8s var(--bezier) 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Trust Badges Section */
.trust-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, transparent, var(--dark-bg));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.35s var(--bezier);
    box-shadow: var(--shadow-sm);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(110, 122, 252, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(110, 122, 252, 0.2));
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s var(--bezier);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--bezier);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(110, 122, 252, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(110, 122, 252, 0.3));
    transition: transform 0.35s var(--bezier);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Main Content */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.page-header-content {
    flex: 1;
    min-width: 0;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.6;
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(110, 122, 252, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    outline: none;
    padding: 8px 0;
    min-width: 0;
}

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

.search-btn {
    background: var(--gradient);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(110, 122, 252, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .search-bar {
        min-width: 200px;
        flex: 1;
        max-width: 100%;
    }
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 4px;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s var(--bezier);
}

.view-btn:hover {
    background: rgba(110, 122, 252, 0.1);
    color: var(--text-primary);
}

.view-btn.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(110, 122, 252, 0.3);
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--gradient);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(110, 122, 252, 0.5);
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
    padding-top: 0;
    transition: all 0.4s var(--bezier);
}

/* When products are shown, reduce top spacing */
.main-content.active {
    padding-top: 20px;
    margin-top: 0;
}

/* Products Layout with Filters */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Filters overlay - hidden on desktop */
.filters-overlay {
    display: none;
}

.products-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filters-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--bezier);
}

.filters-toggle-btn:hover {
    background: rgba(110, 122, 252, 0.1);
    border-color: var(--primary-color);
}

.products-count {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: calc(var(--topbar-h, 44px) + var(--navbar-h, 70px) + 20px);
    box-shadow: var(--shadow);
    transition: all 0.3s var(--bezier);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.filters-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.filters-close {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s var(--bezier);
}

.filters-close:hover {
    background: rgba(110, 122, 252, 0.1);
    color: var(--text-primary);
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s var(--bezier);
}

.filter-option:hover {
    background: rgba(110, 122, 252, 0.05);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-option span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    user-select: none;
}

.filter-option input:checked + span {
    color: var(--text-primary);
    font-weight: 500;
}

.filter-reset-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--bezier);
    margin-top: 8px;
}

.filter-reset-btn:hover {
    background: rgba(110, 122, 252, 0.1);
    border-color: var(--primary-color);
}

/* Ensure products grid fills available space */
.main-content .content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Ensure no empty space on right side */
.main-content {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Fix any potential layout issues */
.page-header {
    width: 100%;
    box-sizing: border-box;
}

/* Product Card - Premium Liquid Glass Enhanced */
.product-card {
    background: var(--glass-bg) !important;
    backdrop-filter: saturate(180%) blur(var(--blur-amount)) !important;
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount)) !important;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border) !important;
    transition: all 0.4s var(--bezier);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}

/* Out of Stock Overlay */
.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 20px;
}

.out-of-stock-overlay span {
    background: var(--danger-color);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    transform: rotate(-8deg);
}

/* Hot Badge */
.hot-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
    z-index: 5;
    animation: hotPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes hotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.7);
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--bezier);
    z-index: 1;
    border-radius: 18px 18px 0 0;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(110, 122, 252, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--bezier);
    pointer-events: none;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(110, 122, 252, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    margin-bottom: 24px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--bezier);
    box-shadow: 0 4px 16px rgba(110, 122, 252, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
}

.product-card:hover .product-image {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 24px rgba(110, 122, 252, 0.3);
}

/* Badges removed */

.product-rating-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars-mini {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text-mini {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.product-meta-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
    font-size: 1.125rem;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.no-products::before {
    content: '🔍';
    font-size: 4rem;
    display: block;
    margin-bottom: 24px;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.6;
    opacity: 0.85;
}

.product-details {
    list-style: none;
    margin-bottom: 20px;
}

.product-details li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.product-details li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 8px;
    font-weight: bold;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    gap: 15px;
    flex-wrap: nowrap;
}

.product-card:hover .product-footer {
    border-top-color: rgba(110, 122, 252, 0.3);
}

.product-price {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    min-width: 0;
    overflow: visible;
}

.product-price span {
    font-size: 0.6em;
    font-weight: 600;
    opacity: 0.75;
    vertical-align: baseline;
    line-height: inherit;
    margin-left: 1px;
}

.buy-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s var(--bezier);
    box-shadow: 0 8px 22px rgba(110, 122, 252, 0.35);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    isolation: isolate;
}

.buy-btn.disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.buy-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.buy-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 var(--bezier);
    z-index: 1;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(110, 122, 252, 0.45);
}

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

.buy-btn:active {
    transform: translateY(0);
}

.buy-btn > * {
    position: relative;
    z-index: 2;
}

/* Footer - Premium Liquid Glass */
.footer {
    margin-top: 80px;
    padding: 50px 20px 30px;
    background: linear-gradient(180deg, transparent, var(--dark-bg));
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.3;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.18s var(--bezier);
    opacity: 0.85;
}

.footer-link:hover {
    color: var(--primary-color);
    background: rgba(110, 122, 252, 0.1);
    opacity: 1;
    transform: translateY(-1px);
}

.footer-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-top: 16px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

/* Modal Body Styling */
.modal-body {
    margin-top: 20px;
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--glass-border);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.modal-body ul {
    color: var(--text-secondary);
    margin-left: 20px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.modal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s var(--bezier);
}

.modal-body a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.modal-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1300;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s var(--bezier);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border-radius: 24px;
    padding: 36px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    position: relative;
    animation: slideUp 0.4s var(--bezier);
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.2);
}

.payment-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.account-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.label {
    color: var(--text-secondary);
    font-weight: 500;
}

.value {
    color: var(--text-primary);
    font-weight: 600;
}

.value.price {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.qr-section {
    text-align: center;
    margin-bottom: 25px;
}

.qr-section h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.qr-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-container img {
    max-width: 250px;
    height: auto;
    display: block;
}

.transfer-info {
    text-align: left;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.bank-info,
.amount-info {
    margin-bottom: 15px;
}

.bank-info p,
.amount-info p {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bank-info strong,
.amount-info strong {
    color: var(--text-primary);
}

#transferAmount {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.content-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#transferContent {
    flex: 1;
    padding: 12px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.98);
}

.instructions {
    margin-top: 25px;
}

.warning-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.warning-box h4 {
    color: var(--warning-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warning-box ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
}

.warning-box ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.warning-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-size: 1.5rem;
    line-height: 1;
}

.contact-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.contact-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
    opacity: 1;
}

.contact-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.contact-btn.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.contact-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.contact-btn.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.6;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
    position: relative;
}

.theme-toggle-mobile {
    margin-left: auto;
    order: 2;
}

.logo-section .mobile-menu-toggle {
    order: 3;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-section {
        padding: 15px 0;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo-section .logo {
        order: 1;
        flex: 1;
        margin: 0;
    }
    
    .nav-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Hide theme toggle from nav-content on mobile */
    .nav-content > .theme-toggle-wrapper:not(.theme-toggle-mobile) {
        display: none !important;
    }
    
    /* Show theme toggle in logo-section on mobile */
    .logo-section .theme-toggle-mobile {
        display: flex !important;
        align-items: center;
        order: 2;
        margin-left: auto;
        margin-right: 8px;
    }
    
    .theme-toggle-wrapper {
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }
    
    .nav-menu {
        order: 4;
        width: 100%;
    }
    
    /* Ensure theme toggle in logo-section is visible and properly sized */
    .logo-section .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin: 0;
    }
    
    .logo-section .mobile-menu-toggle {
        order: 3;
        flex-shrink: 0;
    }
}

/* Responsive */
/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur-amount));
        -webkit-backdrop-filter: blur(var(--blur-amount));
        border-top: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        position: relative;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: clamp(14px, 3.5vw, 18px) clamp(16px, 4vw, 20px);
        font-size: clamp(0.95rem, 2.8vw, 1.05rem);
        font-weight: 600;
        border-radius: 0;
    }
    
    .nav-link .arrow {
        margin-left: auto;
        font-size: clamp(0.6rem, 1.8vw, 0.7rem);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .nav-item.dropdown.active .nav-link .arrow,
    .nav-link.active .arrow {
        transform: rotate(180deg);
    }
    
    .nav-link.active {
        background: rgba(110, 122, 252, 0.15);
        color: var(--primary-color);
    }
    
    /* Dropdown menu on mobile - hiển thị đầy đủ */
    .nav-item.dropdown .nav-link.active + .dropdown-menu,
    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile dropdown - hiển thị đầy đủ */
    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        min-width: 100%;
        margin: 0;
        padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px);
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--glass-border);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 1;
        transform: none;
        animation: slideDown 0.3s ease;
        max-height: none;
        overflow: visible;
        visibility: visible;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }
        to {
            opacity: 1;
            max-height: 1000px;
            padding-top: clamp(8px, 2vw, 12px);
            padding-bottom: clamp(8px, 2vw, 12px);
        }
    }
    
    .dropdown-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-item.dropdown.active .dropdown-menu,
    .nav-item.dropdown .nav-link.active + .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .dropdown-menu a {
        width: 100%;
        padding: clamp(14px, 3.5vw, 18px) clamp(20px, 5vw, 28px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(8px, 2vw, 10px);
        margin-bottom: clamp(8px, 2vw, 10px);
        display: flex;
        align-items: center;
        gap: clamp(12px, 3vw, 16px);
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--glass-item-bg);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border: 1px solid var(--glass-item-border);
        box-shadow: 0 4px 16px rgba(110, 122, 252, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow: visible;
        min-height: clamp(44px, 11vw, 52px);
        opacity: 0;
        transform: translateY(-5px);
        animation: slideInFade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .dropdown-menu a:nth-child(1) { animation-delay: 0.05s; }
    .dropdown-menu a:nth-child(2) { animation-delay: 0.1s; }
    .dropdown-menu a:nth-child(3) { animation-delay: 0.15s; }
    .dropdown-menu a:nth-child(4) { animation-delay: 0.2s; }
    .dropdown-menu a:nth-child(5) { animation-delay: 0.25s; }
    .dropdown-menu a:nth-child(6) { animation-delay: 0.3s; }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        transform: translateX(6px) translateY(-2px);
        background: rgba(110, 122, 252, 0.25);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        border-color: rgba(110, 122, 252, 0.35);
        color: var(--text-primary);
        box-shadow: 0 8px 24px rgba(110, 122, 252, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    
    .dropdown-menu a:active {
        transform: translateX(4px) translateY(0);
        transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu a:last-child {
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(10px, 2.5vw, 16px);
    }
    
    .product-card {
        padding: 20px;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
        max-width: 95%;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }

    .content-box {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }
    
    .top-bar-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .theme-toggle-wrapper {
        margin-left: 0;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .support-info {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    /* Fallback for body toggle on mobile */
    body > .theme-toggle {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .product-price {
        font-size: 1.5rem;
        width: 100%;
        justify-content: flex-start;
        white-space: nowrap;
    }
    
    .buy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 15px;
    }
}

/* Scrollbar Styling */
/* Hide scrollbar on mobile devices */
@media (max-width: 768px) {
    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
        display: none;
    }
    
    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Desktop scrollbar styling */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

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

    ::-webkit-scrollbar-thumb {
        background: var(--dark-border);
        border-radius: 4px;
    }

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

/* Product Detail Page */
.product-detail-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.product-image-section {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(var(--blur-amount));
    -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
}

.product-image-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.product-image-main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    max-height: 600px;
    overflow: hidden;
}

/* Product badges removed */

.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: visible;
}

.product-header {
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 15px;
}

.product-category {
    color: var(--green-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
    color: var(--text-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text,
.sold-text,
.complaints-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.separator {
    color: var(--text-secondary);
    margin: 0 5px;
}

.product-short-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 10px 0;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.seller-label {
    color: var(--text-secondary);
}

.seller-name {
    color: var(--text-primary);
    font-weight: 600;
}

.seller-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.seller-status.online {
    background: var(--success-color);
    color: white;
}

.seller-status.offline {
    background: var(--text-secondary);
    color: white;
}

.seller-verified {
    color: var(--success-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    gap: 10px;
}

.meta-label {
    color: var(--text-secondary);
}

.meta-value {
    color: var(--text-primary);
    font-weight: 600;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.price-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-variants {
    margin-top: 20px;
    width: 100%;
    overflow: visible;
}

.variants-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-height: none;
    overflow: visible;
}

.variant-item {
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.variant-item:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.variant-item.active {
    border-color: var(--green-color);
    background: rgba(34, 197, 94, 0.1);
}

.variant-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variant-name {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
}

.variant-price {
    color: var(--green-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-section {
    margin-top: 20px;
}

.quantity-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}

.quantity-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(110, 122, 252, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    flex: 1;
    padding: 10px 12px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    min-width: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 122, 252, 0.1);
}

.discount-section {
    margin-top: 20px;
}

.discount-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.discount-input-wrapper {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.discount-input {
    flex: 1;
    padding: 12px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.discount-btn {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.discount-btn:hover {
    background: var(--primary-dark);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-btn {
    background: var(--green-color);
    color: white;
}

.buy-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.preorder-btn {
    background: var(--primary-color);
    color: white;
}

.preorder-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.message-btn {
    background: var(--secondary-color);
    color: white;
}

.message-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.total-price-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-color);
}

/* Tools Page */
.tools-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.tools-container {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--dark-border);
}

.tools-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.tools-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tool-card {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s;
}

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

.tool-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tool-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.tool-content {
    margin-top: 30px;
}

.fa-tool-container {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.tool-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

.fa-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-hint {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tool-btn.primary {
    background: var(--gradient);
    color: white;
    padding: 14px 28px;
    font-size: 1.1rem;
    width: 100%;
}

.tool-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.fa-code-display {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 2px solid var(--dark-border);
    text-align: center;
}

.fa-code {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-color);
    font-family: 'Courier New', monospace;
    letter-spacing: 8px;
    margin-bottom: 15px;
    display: block;
}

.fa-timer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.fa-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.refresh-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.refresh-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.fa-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: var(--warning-color);
    font-size: 0.9rem;
}

.fa-info {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.fa-info h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.fa-info ul {
    list-style: none;
    padding-left: 0;
}

.fa-info li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.fa-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive for product detail */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

/* ===== Product Detail Page - Mobile Scaling ===== */
@media (max-width: 768px) {
    .product-detail-page {
        padding: clamp(20px, 5vw, 30px) clamp(12px, 3vw, 20px);
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: clamp(20px, 5vw, 30px);
        padding: clamp(16px, 4vw, 30px);
        border-radius: clamp(16px, 4vw, 20px);
        overflow: visible;
        min-height: auto;
        height: auto;
    }
    
    .product-detail-page {
        overflow: visible;
        min-height: auto;
    }
    
    .product-image-section {
        width: 100%;
        overflow: visible;
    }
    
    .product-image-wrapper {
        padding: clamp(12px, 3vw, 16px);
        min-height: auto;
        border-radius: clamp(10px, 2.5vw, 12px);
        width: 100%;
        box-sizing: border-box;
        background: var(--glass-bg);
        backdrop-filter: saturate(180%) blur(var(--blur-amount));
        -webkit-backdrop-filter: saturate(180%) blur(var(--blur-amount));
        border: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image-main {
        font-size: clamp(4rem, 12vw, 6rem);
        width: 100%;
        display: block;
        border-radius: clamp(10px, 2.5vw, 12px);
        overflow: hidden;
    }
    
    .product-image-main img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: clamp(10px, 2.5vw, 12px);
        object-fit: cover;
        object-position: center center;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    
    .favorite-btn {
        width: clamp(36px, 9vw, 40px);
        height: clamp(36px, 9vw, 40px);
        top: clamp(12px, 3vw, 20px);
        right: clamp(12px, 3vw, 20px);
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    
    .product-info-section {
        gap: clamp(16px, 4vw, 20px);
        width: 100%;
        overflow: visible;
        min-height: auto;
    }
    
    .product-header {
        padding-bottom: clamp(12px, 3vw, 15px);
    }
    
    .product-category {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    
    .product-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: clamp(8px, 2vw, 10px);
        line-height: 1.3;
        word-break: break-word;
    }
    
    .product-rating {
        gap: clamp(8px, 2vw, 10px);
        flex-wrap: wrap;
        width: 100%;
    }
    
    .product-rating > * {
        flex-shrink: 0;
    }
    
    .stars {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .rating-text,
    .sold-text,
    .complaints-text {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    
    .separator {
        margin: 0 clamp(4px, 1vw, 5px);
    }
    
    .product-short-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin: clamp(8px, 2vw, 10px) 0;
    }
    
    .seller-info {
        padding: clamp(12px, 3vw, 15px);
        gap: clamp(8px, 2vw, 10px);
        border-radius: clamp(6px, 1.5vw, 8px);
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .seller-info > * {
        flex-shrink: 0;
    }
    
    .seller-label {
        font-size: clamp(0.85rem, 2.3vw, 0.9rem);
    }
    
    .seller-name {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .seller-status {
        padding: clamp(3px, 0.8vw, 4px) clamp(6px, 1.5vw, 8px);
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        border-radius: clamp(3px, 0.8vw, 4px);
    }
    
    .seller-verified {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    
    .product-meta {
        gap: clamp(16px, 4vw, 20px);
        flex-wrap: wrap;
        width: 100%;
    }
    
    .meta-item {
        flex-shrink: 0;
        min-width: 0;
    }
    
    .meta-item {
        gap: clamp(8px, 2vw, 10px);
    }
    
    .meta-label,
    .meta-value {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
    }
    
    .product-price-section {
        padding: clamp(16px, 4vw, 20px);
        gap: clamp(12px, 3vw, 15px);
        border-radius: clamp(6px, 1.5vw, 8px);
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-price-section > * {
        flex-shrink: 0;
    }
    
    .price-label {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
    }
    
    .product-price-large {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .variants-title {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        margin-bottom: clamp(12px, 3vw, 15px);
    }
    
    .variants-list {
        gap: clamp(8px, 2vw, 10px);
        width: 100%;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    
    .product-variants {
        width: 100%;
        overflow: visible;
        margin-top: clamp(16px, 4vw, 20px);
    }
    
    .variant-item {
        padding: clamp(12px, 3vw, 15px);
        border-radius: clamp(6px, 1.5vw, 8px);
        width: 100%;
        box-sizing: border-box;
        min-height: auto;
    }
    
    .variant-content {
        width: 100%;
        flex-wrap: wrap;
        gap: clamp(8px, 2vw, 10px);
    }
    
    .variant-name {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        word-break: break-word;
        flex: 1;
        min-width: 0;
    }
    
    .variant-price {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .quantity-section {
        margin-top: clamp(16px, 4vw, 20px);
        width: 100%;
    }
    
    .discount-section {
        width: 100%;
        margin-top: clamp(16px, 4vw, 20px);
    }
    
    .quantity-label,
    .discount-label {
        font-size: clamp(0.85rem, 2.3vw, 0.9rem);
        margin-bottom: clamp(8px, 2vw, 10px);
    }
    
    .quantity-selector {
        max-width: 100%;
        gap: clamp(8px, 2vw, 10px);
    }
    
    .quantity-btn {
        width: clamp(40px, 10vw, 44px);
        height: clamp(40px, 10vw, 44px);
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        border-radius: clamp(8px, 2vw, 10px);
    }
    
    .quantity-input {
        padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        border-radius: clamp(8px, 2vw, 10px);
        min-width: clamp(50px, 12vw, 60px);
    }
    
    .discount-input-wrapper {
        max-width: 100%;
        gap: clamp(8px, 2vw, 10px);
    }
    
    .discount-input {
        padding: clamp(10px, 2.5vw, 12px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .discount-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
        font-size: clamp(1rem, 2.8vw, 1.2rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .action-buttons {
        gap: clamp(12px, 3vw, 15px);
        margin-top: clamp(24px, 6vw, 30px);
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
        padding: clamp(12px, 3vw, 15px) clamp(24px, 6vw, 30px);
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
        box-sizing: border-box;
    }
    
    .total-price-section {
        margin-top: clamp(16px, 4vw, 20px);
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(6px, 1.5vw, 8px);
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .total-price-section > * {
        flex-shrink: 0;
    }
    
    .total-label {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
    }
    
    .total-price {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
}

/* Extra small phones - Product Detail */
@media (max-width: 374px) {
    .product-detail-page {
        padding: 16px 10px;
    }
    
    .product-detail-container {
        padding: 14px;
        gap: 16px;
    }
    
    .product-image-wrapper {
        min-height: 220px;
        padding: 12px;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-price-large {
        font-size: 1.5rem;
    }
    
    .total-price {
        font-size: 1.5rem;
    }
}

/* Small phones - Product Detail */
@media (min-width: 375px) and (max-width: 413px) {
    .product-detail-container {
        padding: 18px;
    }
    
    .product-image-wrapper {
        min-height: 280px;
    }
}

/* Medium phones - Product Detail */
@media (min-width: 414px) and (max-width: 479px) {
    .product-detail-container {
        padding: 22px;
    }
    
    .product-image-wrapper {
        min-height: 320px;
    }
}

/* Large phones - Product Detail */
@media (min-width: 480px) and (max-width: 639px) {
    .product-detail-container {
        padding: 24px;
    }
    
    .product-image-wrapper {
        min-height: 350px;
    }
}

/* Responsive updates */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
    }
    
    .product-detail-container {
        padding: 20px;
    }
    
    .quantity-selector {
        max-width: 100%;
    }
    
    .discount-input-wrapper {
        max-width: 100%;
    }
    
    /* Footer responsive */
    .footer {
        margin-top: 60px;
        padding: 40px 20px 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-link {
        padding: 8px 16px;
    }
    
    .modal-content {
        padding: 24px;
        margin: 12px;
        max-width: calc(100% - 24px);
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1rem;
    }
    
    /* Hero Section responsive */
    .hero-section {
        min-height: 80vh;
        padding: 60px 20px 80px;
        margin-top: calc(var(--topbar-h, 44px) + var(--navbar-h, 70px));
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: clamp(1rem, 2vw, 1.125rem);
        margin-bottom: 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
        margin-bottom: clamp(24px, 6vw, 48px);
        max-width: 100%;
    }
    
    .hero-stat {
        padding: clamp(16px, 4vw, 20px);
        min-height: clamp(100px, 25vw, 130px);
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    
    /* Trust Section responsive - 2 columns on mobile */
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
    
    .trust-item {
        padding: clamp(14px, 3.5vw, 20px);
        flex-direction: column;
        text-align: center;
        gap: clamp(10px, 2.5vw, 14px);
    }
    
    .trust-icon {
        margin: 0 auto;
    }
    
    /* Features Section responsive - 2 columns on larger phones */
    .features-section {
        padding: clamp(50px, 10vw, 100px) clamp(16px, 4vw, 20px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 4vw, 24px);
    }
    
    .feature-card {
        padding: clamp(20px, 5vw, 32px);
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Page header responsive */
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .page-actions {
        justify-content: flex-start;
    }
    
    /* Products layout responsive */
    .products-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        z-index: 2000;
        border-radius: 0;
        border-left: none;
        border-top: none;
        border-bottom: none;
        overflow-y: auto;
        transition: left 0.3s var(--bezier);
        box-shadow: var(--shadow-lg);
    }
    
    .filters-sidebar.active {
        left: 0;
    }
    
    .filters-close {
        display: block;
    }
    
    .filters-toggle-btn {
        display: flex;
    }
    
    .filters-overlay {
        display: none;
    }
    
    .filters-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1999;
        opacity: 1;
        animation: fadeIn 0.3s var(--bezier);
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
}

/* ===== Mobile Scaling - Smooth & Uniform for All Phone Models ===== */
/* Base mobile styles - applies to all phones */
@media (max-width: 768px) {
    /* Use viewport units for smooth scaling */
    html {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    body {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.6;
    }
    
    /* Hero Section - Smooth scaling */
    .hero-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 20px) clamp(60px, 12vw, 80px);
        min-height: auto;
    }
    
    .hero-badge {
        font-size: clamp(0.75rem, 3vw, 0.9375rem);
        padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
        margin-bottom: clamp(16px, 4vw, 24px);
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: clamp(16px, 4vw, 24px);
    }
    
    .hero-description {
        font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
        line-height: 1.7;
        margin-bottom: clamp(24px, 6vw, 48px);
        padding: 0 clamp(8px, 2vw, 0);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
        margin-bottom: clamp(24px, 6vw, 48px);
        max-width: 100%;
    }
    
    .hero-stat {
        padding: clamp(16px, 4vw, 24px);
        min-height: clamp(100px, 25vw, 140px);
        border-radius: clamp(12px, 3vw, 16px);
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: clamp(4px, 1vw, 8px);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    }
    
    .hero-actions {
        gap: clamp(10px, 2.5vw, 16px);
        width: 100%;
        padding: 0 clamp(8px, 2vw, 0);
    }
    
    .btn {
        padding: clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
        font-size: clamp(0.9375rem, 3vw, 1rem);
        border-radius: clamp(10px, 2.5vw, 12px);
    }
    
    /* Trust Section */
    .trust-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 20px);
    }
    
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
    
    .trust-item {
        padding: clamp(14px, 3.5vw, 20px);
        flex-direction: column;
        text-align: center;
        gap: clamp(10px, 2.5vw, 14px);
    }
    
    .trust-icon {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin: 0 auto;
    }
    
    .trust-text {
        align-items: center;
    }
    
    .trust-text strong {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
    }
    
    .trust-text span {
        font-size: clamp(0.8125rem, 2vw, 0.875rem);
    }
    
    /* Features Section */
    .features-section {
        padding: clamp(50px, 10vw, 100px) clamp(16px, 4vw, 20px);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: clamp(12px, 3vw, 16px);
    }
    
    .section-description {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
        padding: 0 clamp(8px, 2vw, 0);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 4vw, 24px);
    }
    
    .feature-card {
        padding: clamp(20px, 5vw, 32px);
    }
    
    .feature-icon {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    .feature-card h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: clamp(10px, 2.5vw, 12px);
    }
    
    .feature-card p {
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
    }
    
    /* Products Section */
    .content-wrapper {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 20px);
    }
    
    .page-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-left: clamp(16px, 4vw, 24px);
    }
    
    .page-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
        margin-top: clamp(6px, 1.5vw, 8px);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
    
    .product-card {
        padding: clamp(18px, 4.5vw, 28px);
        border-radius: clamp(16px, 4vw, 20px);
    }
    
    .product-image {
        height: auto;
        aspect-ratio: 4 / 3;
        min-height: clamp(160px, 40vw, 200px);
        margin-bottom: clamp(18px, 4.5vw, 24px);
        border-radius: clamp(12px, 3vw, 16px);
        font-size: clamp(3.5rem, 9vw, 4.5rem);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: clamp(12px, 3vw, 16px);
    }
    
    .product-title {
        font-size: clamp(1.125rem, 3.5vw, 1.35rem);
        margin-bottom: clamp(10px, 2.5vw, 12px);
        min-height: auto;
    }
    
    .product-description {
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
        margin-bottom: clamp(12px, 3vw, 16px);
    }
    
    .product-price {
        font-size: clamp(1.25rem, 4vw, 1.9rem);
    }
    
    .buy-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(20px, 5vw, 24px);
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
        border-radius: clamp(10px, 2.5vw, 12px);
    }
    
    /* Navbar */
    .navbar {
        padding: 0;
    }
    
    .logo {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .nav-link {
        font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
        padding: clamp(10px, 2.5vw, 12px) clamp(14px, 3.5vw, 18px);
    }
    
    /* Footer */
    .footer {
        padding: clamp(30px, 7vw, 50px) clamp(16px, 4vw, 20px) clamp(20px, 5vw, 30px);
    }
    
    .footer-link {
        font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
        padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    }
    
    /* Modal */
    .modal-content {
        padding: clamp(20px, 5vw, 36px);
        margin: clamp(10px, 2.5vw, 20px);
        border-radius: clamp(18px, 4.5vw, 24px);
        max-width: calc(100% - clamp(20px, 5vw, 40px));
    }
    
    .modal-content h2 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }
    
    /* Payment Modal specific */
    .payment-modal {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .account-info {
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(12px, 3vw, 16px);
        margin-bottom: clamp(20px, 5vw, 25px);
    }
    
    .info-item {
        margin-bottom: clamp(8px, 2vw, 10px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .qr-section h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    .qr-container {
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(10px, 2.5vw, 12px);
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    .qr-container img {
        max-width: clamp(200px, 50vw, 250px);
    }
    
    .transfer-info {
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(12px, 3vw, 16px);
        margin-top: clamp(16px, 4vw, 20px);
    }
    
    .bank-info p,
    .amount-info p {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        margin-bottom: clamp(6px, 1.5vw, 8px);
    }
    
    #transferAmount {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
    }
    
    .content-box {
        gap: clamp(8px, 2vw, 10px);
        margin-top: clamp(8px, 2vw, 10px);
    }
    
    #transferContent {
        padding: clamp(10px, 2.5vw, 12px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .copy-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .warning-box {
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(12px, 3vw, 16px);
    }
    
    .warning-box h4 {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        margin-bottom: clamp(12px, 3vw, 15px);
    }
    
    .warning-box ul li {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        margin-bottom: clamp(6px, 1.5vw, 8px);
        padding-left: clamp(20px, 5vw, 25px);
    }
    
    .contact-info {
        gap: clamp(10px, 2.5vw, 15px);
        margin: clamp(12px, 3vw, 15px) 0;
    }
    
    .contact-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(10px, 2.5vw, 12px);
        min-width: auto;
    }
    
    .note {
        font-size: clamp(0.85rem, 2.3vw, 0.9rem);
        margin-top: clamp(12px, 3vw, 15px);
    }
    
    /* Tools Page */
    .tools-page {
        padding: clamp(20px, 5vw, 30px) clamp(12px, 3vw, 20px);
    }
    
    .tools-container {
        padding: clamp(20px, 5vw, 30px);
        border-radius: clamp(12px, 3vw, 16px);
    }
    
    .tools-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: clamp(20px, 5vw, 30px);
    }
    
    .tools-section {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
    
    /* Extra small phones - Tools */
    @media (max-width: 374px) {
        .tools-section {
            grid-template-columns: 1fr;
        }
    }
    
    .tool-card {
        padding: clamp(18px, 4.5vw, 25px);
        border-radius: clamp(10px, 2.5vw, 12px);
    }
    
    .tool-title {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        margin-bottom: clamp(8px, 2vw, 10px);
    }
    
    .tool-description {
        font-size: clamp(0.875rem, 2.5vw, 0.95rem);
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    .tool-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(20px, 5vw, 24px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .fa-tool-container {
        padding: clamp(24px, 6vw, 40px);
        border-radius: clamp(12px, 3vw, 16px);
    }
    
    .tool-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: clamp(20px, 5vw, 30px);
    }
    
    .form-group {
        margin-bottom: clamp(20px, 5vw, 25px);
    }
    
    .form-group label {
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
        margin-bottom: clamp(8px, 2vw, 10px);
    }
    
    .form-hint {
        font-size: clamp(0.8rem, 2.2vw, 0.85rem);
        margin-top: clamp(4px, 1vw, 5px);
    }
    
    .form-input,
    .form-select {
        padding: clamp(12px, 3vw, 14px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(8px, 2vw, 10px);
    }
    
    .form-row {
        gap: clamp(16px, 4vw, 20px);
    }
    
    .tool-btn.primary {
        padding: clamp(12px, 3vw, 14px) clamp(24px, 6vw, 28px);
        font-size: clamp(1rem, 2.8vw, 1.1rem);
    }
    
    .fa-code {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: clamp(4px, 1vw, 8px);
        margin-bottom: clamp(12px, 3vw, 15px);
    }
    
    .fa-timer {
        font-size: clamp(0.85rem, 2.3vw, 0.9rem);
        margin-top: clamp(8px, 2vw, 10px);
    }
    
    .fa-actions {
        gap: clamp(12px, 3vw, 15px);
        margin-top: clamp(16px, 4vw, 20px);
    }
    
    .refresh-btn {
        padding: clamp(10px, 2.5vw, 12px) clamp(20px, 5vw, 24px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .fa-warning {
        padding: clamp(12px, 3vw, 15px);
        margin-top: clamp(16px, 4vw, 20px);
        font-size: clamp(0.85rem, 2.3vw, 0.9rem);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .fa-info {
        padding: clamp(16px, 4vw, 20px);
        border-radius: clamp(10px, 2.5vw, 12px);
    }
    
    .fa-info h4 {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
        margin-bottom: clamp(12px, 3vw, 15px);
    }
    
    .fa-info li {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        margin-bottom: clamp(8px, 2vw, 10px);
        padding-left: clamp(20px, 5vw, 25px);
    }
    
    /* Search Bar */
    .search-bar {
        min-width: auto;
        width: 100%;
        padding: clamp(4px, 1vw, 4px) clamp(4px, 1vw, 4px) clamp(4px, 1vw, 4px) clamp(12px, 3vw, 16px);
    }
    
    .search-input {
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
        padding: clamp(6px, 1.5vw, 8px) 0;
    }
    
    .search-btn {
        width: clamp(36px, 9vw, 40px);
        height: clamp(36px, 9vw, 40px);
    }
}

/* Extra small phones (320px - 374px) */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 32px 12px 50px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(8px, 2vw, 12px);
    }
    
    .hero-stat {
        padding: clamp(12px, 3vw, 16px);
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .product-card {
        padding: clamp(14px, 3.5vw, 18px);
    }
    
    .product-image {
        aspect-ratio: 4 / 3;
        min-height: clamp(140px, 35vw, 180px);
    }
    
    .product-image img {
        object-fit: cover;
        object-position: center top;
    }
    
    .content-wrapper {
        padding: 32px 12px;
    }
    
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(8px, 2vw, 12px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 16px);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(10px, 2.5vw, 14px);
    }
}

/* Small phones (375px - 413px) - iPhone SE, iPhone 8, etc. */
@media (min-width: 375px) and (max-width: 413px) {
    .hero-section {
        padding: 40px 16px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(12px, 3vw, 18px);
    }
}

/* Medium phones (414px - 479px) - iPhone 11 Pro, iPhone 12, etc. */
@media (min-width: 414px) and (max-width: 479px) {
    .hero-section {
        padding: 50px 18px 70px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 4vw, 22px);
    }
}

/* Large phones (480px - 639px) - iPhone 14 Pro Max, Samsung Galaxy, etc. */
@media (min-width: 480px) and (max-width: 639px) {
    .hero-section {
        padding: 55px 20px 75px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(18px, 4.5vw, 24px);
    }
    
    .hero-stat {
        padding: clamp(18px, 4.5vw, 22px);
        min-height: clamp(110px, 27vw, 135px);
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .products-grid {
        gap: 20px;
    }
}

/* Very large phones (640px - 767px) - Large Android phones */
@media (min-width: 640px) and (max-width: 767px) {
    .hero-section {
        padding: 60px 20px 80px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 5vw, 26px);
    }
    
    .hero-stat {
        padding: clamp(20px, 5vw, 24px);
        min-height: clamp(115px, 28vw, 140px);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .products-grid {
        gap: 24px;
    }
    
    .product-card {
        padding: 24px;
    }
}

/* Landscape orientation on phones */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 30px 20px 50px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .hero-stat {
        padding: clamp(12px, 3vw, 16px);
        min-height: clamp(90px, 22vw, 120px);
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
}

/* Prevent horizontal overflow on all mobile devices */
@media (max-width: 768px) {
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure text doesn't overflow */
    p, span, h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix for long words */
    .product-title,
    .hero-title,
    .page-title {
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Ensure buttons and inputs fit */
    .btn,
    .buy-btn,
    .search-input,
    input[type="text"],
    input[type="email"],
    input[type="number"],
    button {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Container max-width - allow vertical scroll */
    .container,
    .content-wrapper,
    .hero-content {
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    /* Product detail specific - ensure all content visible */
    .product-detail-page,
    .product-detail-container,
    .product-info-section,
    .product-variants,
    .variants-list {
        overflow-x: hidden;
        overflow-y: visible;
        max-height: none;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
    }
    
    /* Ensure grid items don't overflow */
    .products-grid,
    .features-grid,
    .trust-content {
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }
}

/* Admin/Product Manager Styles */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dark-border);
    padding-bottom: 10px;
}

.admin-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.admin-tab:hover {
    color: var(--primary-color);
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-form {
    padding: 20px 0;
}

.admin-form h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 122, 252, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
}

/* ===== Mobile color harmony overrides (appended) ===== */
@media (max-width: 768px) {
    .product-card {
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: var(--shadow-md) !important;
    }
    .product-image {
        background: var(--bg-tertiary) !important;
    }
    .nav-item .dropdown-menu {
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 12px 28px rgba(0,0,0,.35) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .dropdown-menu a {
        background: rgba(255,255,255,0.03) !important;
        border-color: var(--border-color) !important;
        color: var(--text-primary) !important;
        transform: none !important;
    }
    .dropdown-menu a:hover {
        background: rgba(99,102,241,0.15) !important;
        border-color: rgba(99,102,241,0.35) !important;
        transform: none !important;
    }
    .action-buttons .action-btn,
    .product-actions .buy-btn,
    .product-actions .btn-outline {
        min-width: 42%;
    }
}

