/* ============================================
   GOOGLE FONTS - Loaded via <link> in HTML <head> for better performance
   (removed @import which is render-blocking)
   ============================================ */

/* ============================================
   CSS VARIABLES - INTIME ASSIST DESIGN SYSTEM
   Based on Zuma Marketplace Style
   ============================================ */
:root {
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Minimal Color Palette - Black, White, Gray */
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-disabled: #999999;

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --bg-card: #FFFFFF;
    --bg-hover: #F9F9F9;

    /* Border Colors */
    --border-default: #E0E0E0;
    --border-light: #F0F0F0;
    --border-dark: #CCCCCC;

    /* Primary - Apple Blue */
    --primary: #0071e3;
    --primary-hover: #0077ED;
    --primary-light: #E8F4FD;
    --primary-dark: #005bb5;

    /* Secondary - Dark */
    --secondary: #1d1d1f;
    --secondary-hover: #000000;
    --secondary-light: #F5F5F7;

    /* Accent Colors */
    --accent-primary: #0071e3;
    --accent-hover: #0077ED;
    --accent-secondary: #1d1d1f;

    /* Semantic Colors */
    --color-success: #2D5A3D;
    --color-success-light: #E8F5E9;
    --color-warning: #8B6914;
    --color-warning-light: #FFF8E1;
    --color-error: #8B1A1A;
    --color-error-light: #FFEBEE;
    --color-info: #1A5276;
    --color-info-light: #E3F2FD;

    /* Shadows */
    --shadow-none: none;
    --shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --radius-2xl: 12px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.25s ease;
    --transition-slow: all 0.4s ease;

    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-toast: 9999;

    /* Clean Gradients - Apple Style */
    --gradient-blue: linear-gradient(135deg, #0071e3 0%, #00a1ff 100%);
    --gradient-dark: linear-gradient(180deg, #1d1d1f 0%, #000000 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    --gradient-hero: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    letter-spacing: var(--letter-spacing-normal);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

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

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

/* Text Selection */
::selection {
    background: var(--text-primary);
    color: var(--color-white);
}

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

/* Page Entrance */
@keyframes pageEntrance {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: pageEntrance 0.4s ease-out;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.text-accent {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a56 35%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Text Utilities */
.text-gradient-warm {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a56 35%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cool {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Logo Image Styles */
.logo-img {
    height: 150px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
    margin: -53px 0;
}

.logo-img-mobile {
    height: 130px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
    margin: -45px 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.logo-img-checkout {
    height: 140px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    margin: -48px 0;
}

/* Footer logo */
.footer-brand .logo-img {
    height: 160px;
    width: auto;
    max-width: 370px;
    display: block;
    margin: -55px 0;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        gap: 16px;
    }

    .logo-img {
        height: 135px;
        max-width: 300px;
        margin: -47px 0;
    }

    .logo-img-mobile {
        height: 120px;
        max-width: 280px;
        margin: -42px 0;
    }

    .footer-brand .logo-img {
        height: 130px;
        max-width: 300px;
        margin: -45px 0;
    }
}

.nav-links {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-wide);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--text-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* Activities Link - Special styling for logged-in users */
.nav-links a.activities-link {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-links a.activities-link:hover {
    color: #1e40af;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.user-menu-trigger:hover {
    background: var(--bg-tertiary);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
}

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

.user-name-desktop {
    font-size: 14px;
    font-weight: 500;
}

.user-menu-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.user-menu.active .user-menu-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - MUST be hidden by default */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    display: none !important;
    z-index: 1000;
    overflow: hidden;
}

.user-menu.active .user-dropdown {
    display: block !important;
}

/* Dropdown Header - User Info */
.dropdown-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.dropdown-header .user-email {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: var(--bg-tertiary);
}

.dropdown-item i {
    width: 18px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.dropdown-item:hover i {
    color: var(--text-primary);
}

/* Profile Link */
.dropdown-item.profile-link i {
    color: var(--color-primary);
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 4px 0;
}

/* Admin Link - Special Style */
.dropdown-item.admin-link {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item.admin-link i {
    color: #166534;
}

.dropdown-item.admin-link:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

/* Logout - Danger Style */
.dropdown-item.logout-btn {
    color: var(--color-error);
    border-top: 1px solid var(--border-light);
    margin-top: 4px;
}

.dropdown-item.logout-btn i {
    color: var(--color-error);
}

.dropdown-item.logout-btn:hover {
    background: #fef2f2;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.notification-btn {
    position: relative;
    padding: 8px 12px;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.notification-btn:hover {
    color: var(--primary);
    background: var(--bg-hover);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--color-error);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 480px;
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    overflow: hidden;
    z-index: 1000;
}

.notification-wrapper.active .notification-dropdown {
    display: block;
}

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

.notification-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.mark-all-read {
    font-size: 13px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mark-all-read:hover {
    background: var(--bg-tertiary);
}

.notification-list {
    max-height: 380px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.notification-item:hover {
    background: var(--bg-hover);
}

.notification-item.unread {
    background: var(--bg-secondary);
}

.notification-item.unread:hover {
    background: var(--bg-tertiary);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.notification-icon.order {
    background: #e3f2fd;
    color: #1976d2;
}

.notification-icon.service {
    background: #e8f5e9;
    color: #388e3c;
}

.notification-icon.promo {
    background: #fff3e0;
    color: #f57c00;
}

.notification-icon.alert {
    background: #ffebee;
    color: #d32f2f;
}

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

.notification-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 12px;
    color: var(--text-disabled);
    margin-top: 6px;
}

.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.notification-empty p {
    margin: 0;
    font-size: 14px;
}

/* Mobile notification styles */
@media (max-width: 768px) {
    .notification-dropdown {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        width: auto;
        max-height: calc(100vh - 100px);
    }
}

/* ============================================
   NOTIFICATION PANEL (floating, works on all screens)
   ============================================ */
.notif-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.notif-panel.open {
    display: block;
}

.notif-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.notif-panel-content {
    position: absolute;
    top: 60px;
    right: 16px;
    width: 380px;
    max-height: calc(100vh - 100px);
    background: var(--bg-primary, #fff);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: notifSlideIn 0.2s ease-out;
}

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

.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light, #eee);
}

.notif-panel-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #111);
}

.notif-panel-actions {
    display: flex;
    gap: 4px;
}

.notif-panel-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #888);
    transition: all 0.15s;
}

.notif-panel-action-btn:hover {
    background: var(--bg-hover, #f5f5f5);
    color: var(--text-primary, #111);
}

.notif-panel-list {
    flex: 1;
    overflow-y: auto;
    max-height: 420px;
}

.notif-panel-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--text-muted, #888);
}

.notif-panel-empty i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.notif-panel-empty p {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary, #555);
}

.notif-panel-empty span {
    font-size: 13px;
}

.notif-panel-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border-light, #f0f0f0);
}

.notif-panel-item:hover {
    background: var(--bg-hover, #f8f8f8);
}

.notif-panel-item.unread {
    background: #f0f7ff;
}

.notif-panel-item.unread:hover {
    background: #e5f0fa;
}

.notif-panel-unread-dot {
    position: absolute;
    top: 18px;
    left: 8px;
    width: 6px;
    height: 6px;
    background: #1976d2;
    border-radius: 50%;
}

.notif-panel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.notif-panel-icon.order {
    background: #e3f2fd;
    color: #1976d2;
}

.notif-panel-icon.service {
    background: #e8f5e9;
    color: #388e3c;
}

.notif-panel-icon.promo {
    background: #fff3e0;
    color: #f57c00;
}

.notif-panel-icon.alert {
    background: #ffebee;
    color: #d32f2f;
}

.notif-panel-icon.payment {
    background: #e8f5e9;
    color: #2e7d32;
}

.notif-panel-icon.account {
    background: #f3e5f5;
    color: #7b1fa2;
}

.notif-panel-item-content {
    flex: 1;
    min-width: 0;
}

.notif-panel-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #111);
    margin-bottom: 2px;
}

.notif-panel-item-text {
    font-size: 13px;
    color: var(--text-muted, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-panel-item-time {
    font-size: 12px;
    color: var(--text-disabled, #aaa);
    margin-top: 4px;
}

/* Mobile: full-width panel */
@media (max-width: 768px) {
    .notif-panel-content {
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        animation: notifSlideDown 0.25s ease-out;
    }

    @keyframes notifSlideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }

    .notif-panel-list {
        max-height: calc(100vh - 60px);
    }
}

.cart-btn-header {
    position: relative;
}

.track-btn-header {
    position: relative;
    padding: 8px 12px;
    color: var(--text-secondary);
}

.track-btn-header:hover {
    color: var(--primary);
    background: var(--bg-hover);
}

.track-btn-header i {
    font-size: 16px;
}

/* Mobile Auth */
.mobile-auth {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.mobile-auth .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    border-radius: var(--radius-md);
    transition: background 0.15s ease;
}

.mobile-auth .mobile-nav-link:hover {
    background: var(--bg-tertiary);
}

.mobile-auth .mobile-nav-link i {
    width: 20px;
    color: var(--text-muted);
}

.mobile-auth .mobile-admin-link {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    margin: var(--space-sm) 0;
}

.mobile-auth .mobile-admin-link i {
    color: #166534;
}

.mobile-auth .mobile-logout-btn {
    color: var(--color-error);
    margin-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-md);
    border-radius: 0;
}

.mobile-auth .mobile-logout-btn i {
    color: var(--color-error);
}

/* Mobile Cart Link & Badge */
.mobile-cart-link {
    position: relative;
}

.mobile-cart-badge {
    background: var(--text-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.mobile-menu-spacer {
    flex: 1;
}

/* Mobile Menu AI CTA */
.mobile-menu-ai-cta {
    padding: 4px 16px 8px;
}

.mobile-ai-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mobile-ai-card:hover {
    background: var(--bg-secondary);
}

.mobile-ai-card-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 10px;
    font-size: 16px;
    color: var(--color-white);
}

.mobile-ai-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-ai-card-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-ai-card-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.mobile-ai-card-arrow {
    font-size: 12px;
    color: var(--text-disabled);
}

/* Mobile User Section */
.mobile-user-section {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border-light);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 14px;
}

.mobile-user-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-user-avatar i {
    font-size: 15px;
    color: var(--text-muted);
}

.mobile-user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-user-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-user-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.mobile-user-links a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mobile-user-links a i {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
}

.mobile-logout-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    background: transparent;
    border: none;
    margin-top: 8px;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.mobile-logout-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mobile-logout-btn i {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
}

.cart-count {
    background: var(--text-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
}

/* Mobile Cart Button - Hidden on desktop */
.mobile-cart-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.mobile-cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: #FF3B30;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-cart-count:empty,
.mobile-cart-count[data-count="0"] {
    display: none;
}

/* Cart count animation */
@keyframes cartCountBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.cart-count-bump {
    animation: cartCountBump 0.3s ease-out;
}

.cart-count.has-items,
.mobile-cart-count.has-items {
    display: flex !important;
}

/* Mobile Profile Button - Hidden on desktop */
.mobile-profile-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.mobile-profile-avatar i {
    font-size: 14px;
    color: #666;
}

.mobile-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-profile-avatar.logged-in {
    border-color: #000;
}

/* Mobile Menu - Drawer Style */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--bg-primary);
    z-index: var(--z-modal);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

/* Overlay behind drawer */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 16px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: white;
    border-radius: 10px;
    font-size: 18px;
}

.mobile-menu-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu-logo .text-accent {
    color: var(--text-muted);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    border-radius: 8px;
    transition: background 0.15s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mobile-nav {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav a {
    font-size: 15px;
    font-weight: 400;
    padding: 14px 16px;
    border-radius: 10px;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-nav a i {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
}

.mobile-nav a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.mobile-nav a:hover i {
    color: var(--text-primary);
}

.mobile-nav a.active {
    background: var(--bg-secondary);
    font-weight: 500;
    color: var(--text-primary);
}

.mobile-nav a.active i {
    color: var(--text-primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-wide);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

a:focus-visible,
.header-icon-btn:focus-visible,
.account-link:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.btn:active:not(:disabled) {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

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

.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-default);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: var(--border-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover:not(:disabled) {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-sm {
    padding: 10px 20px;
    min-height: 44px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* Gradient Button Variant */
.btn-gradient {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a56 50%, #ffb347 100%);
    color: var(--color-white);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.btn-gradient:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 179, 71, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 90% 70%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Staggered animation for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.25s; }
.service-card:nth-child(5) { animation-delay: 0.3s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }
.service-card:nth-child(7) { animation-delay: 0.4s; }
.service-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean minimal design - no colored borders */
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Clean blue icons - Apple style */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: var(--space-lg);
    font-size: 24px;
    color: #0071e3;
    background: #e8f4fd;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: #0071e3;
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

.service-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.service-card-actions .service-link {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.service-card:hover .service-card-actions .service-link {
    color: var(--text-primary);
}

/* Blue buttons for service cards - Apple style */
.service-card-actions .btn-primary {
    background: #0071e3;
    color: #fff;
    border: none;
    border-radius: 980px;
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card-actions .btn-primary:hover {
    background: #0077ED;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: var(--radius-md);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 30%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.how-card {
    padding: var(--space-xl);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.how-card:hover {
    border-color: var(--border-dark);
}

.how-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    opacity: 0.1;
    display: block;
    margin-bottom: var(--space-md);
}

.how-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.how-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Animated entry */
    animation: productFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

/* Staggered animation delays for product cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes productFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gradient border effect on top */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ff8a56, #ffb347);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

/* Different gradient colors for each product card */
.product-card:nth-child(1)::before { background: linear-gradient(90deg, #ff6b9d, #ff8a56); }
.product-card:nth-child(2)::before { background: linear-gradient(90deg, #667eea, #764ba2); }
.product-card:nth-child(3)::before { background: linear-gradient(90deg, #f093fb, #f5576c); }
.product-card:nth-child(4)::before { background: linear-gradient(90deg, #4facfe, #00f2fe); }
.product-card:nth-child(5)::before { background: linear-gradient(90deg, #43e97b, #38f9d7); }
.product-card:nth-child(6)::before { background: linear-gradient(90deg, #fa709a, #fee140); }
.product-card:nth-child(7)::before { background: linear-gradient(90deg, #a18cd1, #fbc2eb); }
.product-card:nth-child(8)::before { background: linear-gradient(90deg, #ff9a9e, #fecfef); }

.product-card:hover {
    border-color: transparent;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Different hover shadow colors */
.product-card:nth-child(1):hover { box-shadow: 0 20px 40px rgba(255, 107, 157, 0.25); }
.product-card:nth-child(2):hover { box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25); }
.product-card:nth-child(3):hover { box-shadow: 0 20px 40px rgba(240, 147, 251, 0.25); }
.product-card:nth-child(4):hover { box-shadow: 0 20px 40px rgba(79, 172, 254, 0.25); }
.product-card:nth-child(5):hover { box-shadow: 0 20px 40px rgba(67, 233, 123, 0.25); }
.product-card:nth-child(6):hover { box-shadow: 0 20px 40px rgba(250, 112, 154, 0.25); }
.product-card:nth-child(7):hover { box-shadow: 0 20px 40px rgba(161, 140, 209, 0.25); }
.product-card:nth-child(8):hover { box-shadow: 0 20px 40px rgba(255, 154, 158, 0.25); }

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    overflow: hidden;
}

/* Gradient overlay on image */
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

/* Quick view button on hover */
.product-image::before {
    content: 'Ver Detalhes';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 10px 20px;
    background: var(--color-white);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    white-space: nowrap;
}

.product-card:hover .product-image::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Colorful animated badges */
.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 6px 14px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 5;
    animation: badgePulse 2s ease-in-out infinite;
    /* Default gradient */
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a56 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

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

/* Badge variations based on content */
.product-badge.badge-novo,
.product-badge:contains('Novo') {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.product-badge.badge-destaque {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.product-badge.badge-promocao {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.product-badge.badge-limitado {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.product-info {
    padding: var(--space-lg);
    position: relative;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    /* Gradient text for category */
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    background: linear-gradient(135deg, #ff6b9d, #ff8a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ff8a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.product-actions {
    display: flex;
    gap: var(--space-sm);
}

.product-actions .btn {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Gradient effect on product buttons */
.product-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8a56 100%);
    border: none;
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Wishlist/favorite button */
.product-wishlist {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
    transform: scale(0.8);
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: scale(1);
}

.product-wishlist i {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-wishlist:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff8a56);
    transform: scale(1.1);
}

.product-wishlist:hover i {
    color: var(--color-white);
}

.product-wishlist.active {
    background: linear-gradient(135deg, #ff6b9d, #ff8a56);
}

.product-wishlist.active i {
    color: var(--color-white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-info .section-tag {
    margin-bottom: var(--space-md);
}

.about-info h2 {
    font-size: 36px;
    margin-bottom: var(--space-lg);
}

.about-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 15px;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--color-success);
}

.about-card {
    padding: var(--space-2xl);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    font-size: 32px;
    color: var(--text-primary);
}

.about-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.about-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--bg-tertiary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 20px;
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   AI PROMO CARD — Assistente Virtual
   ============================================ */
.ai-promo-card {
    position: relative;
    background: var(--color-black);
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.ai-promo-content {
    position: relative;
    z-index: 1;
}

.ai-promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--color-white);
    border-radius: 50%;
    font-size: 30px;
    color: var(--color-black);
    margin-bottom: 28px;
}

.ai-promo-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.ai-promo-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 32px;
}

.ai-promo-features {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ai-promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.ai-promo-feature i {
    color: var(--color-white);
    font-size: 12px;
}

.ai-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ai-promo-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.ai-promo-cta-arrow {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.ai-promo-cta:hover .ai-promo-cta-arrow {
    transform: translateX(4px);
}

.contact-direct-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-lg);
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.contact-form {
    background: var(--bg-secondary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.form-label.required::after {
    content: '*';
    color: var(--color-error);
    margin-left: 4px;
}

.input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

.input:hover {
    border-color: var(--border-dark);
}

.input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--text-primary);
}

textarea.input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

select.input {
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: var(--space-lg);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.radio-label input {
    accent-color: var(--text-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg,
        rgba(0, 113, 227, 0.06) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 1) 60%,
        rgba(29, 29, 31, 0.04) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 113, 227, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(29, 29, 31, 0.06) 0%, transparent 30%);
    animation: ctaGradientRotate 20s linear infinite;
    pointer-events: none;
}

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

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-card > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA ASSISTANT - Clean Light Style
   ============================================ */
.cta-assistant {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 50px 40px;
}

.cta-assistant-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cta-assistant-icon i {
    font-size: 28px;
    color: #333333;
}

.cta-assistant h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cta-assistant > p {
    color: #666666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Chat Input Box */
.cta-chat-input {
    max-width: 550px;
    margin: 0 auto 28px;
}

.cta-input-box {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 6px;
    transition: all 0.3s ease;
}

.cta-input-box:focus-within {
    border-color: #000000;
    background: #ffffff;
}

.cta-input-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
}

.cta-input-box input::placeholder {
    color: #999999;
}

.cta-ask-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-ask-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

.cta-ask-btn i {
    font-size: 14px;
}

/* Quick Questions */
.cta-quick-questions {
    margin-bottom: 28px;
}

.cta-quick-questions > span {
    display: block;
    font-size: 13px;
    color: #888888;
    margin-bottom: 12px;
}

.quick-question-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.quick-question-tags button {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #555555;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-question-tags button:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Contact Options Row */
.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.cta-contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-contact-option:hover {
    background: #f5f5f5;
}

.cta-contact-option i {
    font-size: 18px;
}

.cta-contact-option:first-child i {
    color: #25D366;
}

.cta-contact-option:nth-child(2) i {
    color: #333333;
}

.cta-contact-option:nth-child(3) i {
    color: #666666;
}

/* CTA Assistant Responsive */
@media (max-width: 768px) {
    .cta-assistant {
        padding: 36px 20px;
    }

    .cta-assistant-icon {
        width: 60px;
        height: 60px;
    }

    .cta-assistant-icon i {
        font-size: 24px;
    }

    .cta-assistant h2 {
        font-size: 22px;
    }

    .cta-assistant > p {
        font-size: 14px;
    }

    .cta-input-box {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .cta-input-box input {
        width: 100%;
        text-align: center;
    }

    .cta-ask-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .quick-question-tags {
        gap: 6px;
    }

    .quick-question-tags button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .cta-contact-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cta-contact-option {
        flex: 1;
        min-width: calc(50% - 10px);
        justify-content: center;
        padding: 10px;
        background: #f8f8f8;
        border-radius: 10px;
    }

    .cta-contact-option span {
        display: none;
    }

    .cta-contact-option i {
        font-size: 20px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--text-primary);
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.footer-column a {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    transition: var(--transition);
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-column a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Image Lazy-Load Fade-In (opt-in via .img-fade class) */
.img-fade {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img-fade.loaded {
    opacity: 1;
}

/* ============================================
   LOADING & ANIMATIONS
   ============================================ */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

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

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

.animate-fade-in { animation: fadeIn 0.4s ease; }
.animate-slide-up { animation: slideUp 0.5s ease; }

/* ============================================
   OVERLAY & MODAL
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    z-index: calc(var(--z-modal) + 1);
    max-width: 500px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--text-primary);
    color: var(--color-white);
}

/* Modal body scroll */
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    max-height: 80vh;
    pointer-events: none;
}

/* Toast Notification */
.toast {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    min-width: 280px;
    max-width: 420px;
    background: var(--text-primary, #1a1a2e);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    pointer-events: auto;
    font-size: 14px;
    line-height: 1.4;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.toast .toast-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.toast .toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    padding: 0 0 0 8px;
    line-height: 1;
    flex-shrink: 0;
}

.toast .toast-close:hover {
    color: #fff;
}

.toast .toast-action {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.toast .toast-action:hover {
    background: rgba(255,255,255,0.3);
}

.toast.success {
    background: var(--color-success, #10b981);
}

.toast.error {
    background: var(--color-error, #ef4444);
}

.toast.warning {
    background: #f59e0b;
    color: #1a1a2e;
}

.toast.loading {
    background: #3b82f6;
}

.toast.info {
    background: #6366f1;
}

/* Validation Error Styles */
.input-error {
    border-color: var(--color-error, #ef4444) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important;
}

.field-error {
    display: block;
    color: var(--color-error, #ef4444);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}

.badge-default {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-color: var(--border-default);
}

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

.badge-warning {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

.badge-error {
    background: var(--color-error-light);
    color: var(--color-error);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-cart-btn,
    .mobile-profile-btn {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .services-grid,
    .products-grid,
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        order: -1;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   Design inspirado em Starlink - Clean & Modern
   ============================================ */
@media (max-width: 768px) {
    /* === BASE MOBILE === */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    html {
        font-size: 16px;
    }

    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Typography - Clean & Bold */
    h1 {
        font-size: 2rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    /* === HEADER - STARLINK STYLE (ULTRA MINIMAL) === */
    .header {
        padding: 16px 0;
        background: var(--bg-primary);
    }

    .header-content {
        height: 44px;
        justify-content: space-between;
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    /* Hide desktop nav */
    .nav-links {
        display: none !important;
    }

    /* HIDE ALL HEADER ACTIONS ON MOBILE - Only show hamburger */
    .header-actions {
        display: none !important;
    }

    /* Hamburger button - THE ONLY BUTTON */
    .mobile-menu-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 24px;
        background: transparent;
        border: none;
    }

    /* === MOBILE MENU - FULL SCREEN === */
    .mobile-menu {
        padding-top: env(safe-area-inset-top, 0);
        background: var(--bg-primary);
    }

    .mobile-menu-header {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-menu-close {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
    }

    .mobile-nav {
        padding: 24px 20px;
    }

    .mobile-nav a {
        padding: 18px 0;
        font-size: 18px;
        font-weight: 500;
        min-height: 60px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    /* === HERO - STARLINK STYLE (SPACIOUS) === */
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 24px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 40px;
        color: var(--text-secondary);
        max-width: 100%;
    }

    /* ONLY ONE BUTTON ON MOBILE */
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
    }

    /* Hide secondary button on mobile */
    .hero-buttons .btn-secondary,
    .hero-buttons .btn:nth-child(2) {
        display: none;
    }

    /* STATS - VERTICAL COLUMN (like Starlink steps) */
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-top: 64px;
        padding-top: 48px;
        border-top: 1px solid var(--border-light);
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        text-align: center;
        width: 100%;
        padding: 16px 0;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        display: block;
    }

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

    /* === SECTIONS - SPACIOUS === */
    .section {
        padding: 64px 0;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
    }

    /* === GRIDS - SINGLE COLUMN === */
    .services-grid,
    .products-grid,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* === SERVICE CARDS === */
    .service-card {
        padding: 32px 24px;
        border-radius: 16px;
        text-align: center;
    }

    .service-card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin: 0 auto 20px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        font-weight: 600;
    }

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

    /* === PRODUCT CARDS - FULL WIDTH === */
    .product-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .product-image {
        aspect-ratio: 16/10;
    }

    .product-info {
        padding: 20px;
    }

    .product-category {
        font-size: 0.75rem;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .product-name {
        font-size: 1.125rem;
        margin-bottom: 12px;
        line-height: 1.3;
        font-weight: 600;
    }

    .product-price {
        gap: 12px;
        align-items: baseline;
    }

    .price-current {
        font-size: 1.25rem;
        font-weight: 700;
    }

    .price-old {
        font-size: 0.875rem;
    }

    /* === HOW IT WORKS === */
    .how-card {
        padding: 32px 24px;
        text-align: center;
        border-radius: 16px;
    }

    .how-card .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin: 0 auto 20px;
    }

    .how-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
    }

    .how-card p {
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

    /* === ABOUT SECTION === */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        border-radius: 16px;
        overflow: hidden;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* === CTA SECTION === */
    .cta-card {
        padding: 48px 24px;
        border-radius: 20px;
        text-align: center;
    }

    .cta-card h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .cta-card p {
        font-size: 1rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        border-radius: 12px;
    }

    /* === CONTACT SECTION === */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
        text-align: center;
    }

    .contact-form {
        padding: 32px 24px;
        border-radius: 16px;
    }

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

    .form-group label {
        font-size: 0.875rem;
        font-weight: 500;
    }

    /* === AI PROMO CARD MOBILE === */
    .ai-promo-card {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .ai-promo-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .ai-promo-title {
        font-size: 22px;
    }

    .ai-promo-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ai-promo-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 32px;
    }

    .ai-promo-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 12px;
    }

    .contact-cards-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .contact-cards-row .contact-card {
        padding: 12px;
        gap: 10px;
        overflow: hidden;
    }

    .contact-cards-row .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
        border-radius: 8px;
    }

    .contact-cards-row .contact-card h4 {
        font-size: 12px;
    }

    .contact-cards-row .contact-card p {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 56px;
        border-radius: 12px;
    }

    .form-group textarea {
        min-height: 140px;
    }

    /* === FOOTER - STACKED === */
    .footer {
        padding: 48px 0 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 16px;
    }

    .footer-brand p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        width: 100%;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.875rem;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .footer-column a {
        font-size: 1rem;
        padding: 10px 0;
        display: block;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 24px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    /* === BUTTONS - TOUCH FRIENDLY === */
    .btn {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
    }

    .btn-sm {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9375rem;
    }

    .btn-lg {
        min-height: 56px;
        padding: 16px 32px;
        font-size: 1.0625rem;
    }

    .btn-full {
        width: 100%;
    }

    /* === MODAL - FULL SCREEN === */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        max-width: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .modal.active {
        transform: none;
    }

    .modal-header {
        flex-shrink: 0;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 0;
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .modal-header h3 {
        font-size: 1.125rem;
        font-weight: 600;
    }

    .modal-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .modal-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: none;
        padding: 0;
    }

    /* === TOAST === */
    .toast {
        left: 20px;
        right: 20px;
        bottom: env(safe-area-inset-bottom, 24px);
        transform: translateY(120%);
        max-width: none;
        padding: 16px 20px;
        font-size: 0.9375rem;
        border-radius: 12px;
    }

    .toast.active {
        transform: translateY(0);
    }

    /* === LOADING SPINNER === */
    .loading-spinner {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }

    /* Header small */
    .logo-text {
        font-size: 16px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    /* Hero small */
    .hero {
        padding: 90px 0 48px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Sections small */
    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Cards small */
    .service-card {
        padding: 24px 20px;
    }

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-current {
        font-size: 1.125rem;
    }

    /* CTA small */
    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 1.375rem;
    }

    /* Buttons small - still touch friendly */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .btn-lg {
        min-height: 52px;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE (320px)
   Para dispositivos muito pequenos (iPhone SE, etc.)
   ============================================ */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    /* Typography - Extra Small */
    h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Header - Extra Compact */
    .header {
        padding: 12px 0;
    }

    .header-content {
        height: 40px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 14px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    /* Hero - Extra Compact */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hero-buttons .btn {
        min-height: 52px;
        font-size: 15px;
        padding: 14px 20px;
    }

    /* Stats - Vertical Compact */
    .hero-stats {
        gap: 20px;
        margin-top: 48px;
        padding-top: 32px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Sections - Compact */
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    /* Cards - Full Width Compact */
    .service-card,
    .product-card,
    .how-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .service-card-icon,
    .how-card .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .service-card h3,
    .how-card h3 {
        font-size: 1rem;
    }

    .service-card p,
    .how-card p {
        font-size: 0.8125rem;
    }

    /* Products - Compact */
    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 0.9375rem;
    }

    .price-current {
        font-size: 1rem;
    }

    /* Forms - Touch Friendly */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 52px;
        border-radius: 10px;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    /* CTA - Compact */
    .cta-card {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .cta-card h2 {
        font-size: 1.25rem;
    }

    .cta-card p {
        font-size: 0.875rem;
    }

    /* Footer - Stacked */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-brand p {
        font-size: 0.8125rem;
    }

    .footer-column h4 {
        font-size: 0.75rem;
    }

    .footer-column a {
        font-size: 0.875rem;
        padding: 8px 0;
    }

    /* Buttons - Touch Friendly (min 48px) */
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 12px 20px;
        font-size: 0.875rem;
        border-radius: 10px;
    }

    .btn-sm {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 16px;
        font-size: 0.8125rem;
    }

    .btn-lg {
        min-height: 52px;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    /* Mobile Menu - Compact */
    .mobile-nav a {
        padding: 14px 0;
        font-size: 16px;
        min-height: 52px;
    }

    .mobile-auth .btn {
        min-height: 52px;
    }

    /* Toast - Full Width */
    .toast {
        left: 12px;
        right: 12px;
        padding: 14px 16px;
        font-size: 0.875rem;
    }

    /* Modal - Full Screen Compact */
    .modal-header {
        padding: 14px 16px;
        min-height: 56px;
    }

    .modal-header h3 {
        font-size: 1rem;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* ============================================
   GLOBAL MOBILE OPTIMIZATIONS
   ============================================ */

/* Touch Action - Remove 300ms delay */
@media (max-width: 768px) {
    a, button, input, select, textarea, .btn {
        touch-action: manipulation;
    }
}

/* Ensure all interactive elements are touch-friendly */
@media (max-width: 768px) {
    /* Links in navigation must be tappable */
    .nav-links a,
    .mobile-nav a,
    .footer-column a,
    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Icon buttons must be at least 44x44 */
    .btn-icon,
    .mobile-menu-btn,
    .mobile-menu-close,
    .modal-close,
    [class*="-btn"]:not(.btn) {
        min-width: 44px;
        min-height: 44px;
    }

    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Improve scroll on mobile */
    .modal-body,
    .mobile-menu,
    [class*="scroll"] {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Landscape Mode Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: row;
        gap: 24px;
    }

    .stat-divider {
        display: block;
    }

    .section {
        padding: 40px 0;
    }
}

/* Safe Area Insets for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .header {
            padding-top: env(safe-area-inset-top, 0);
        }

        .mobile-menu {
            padding-top: env(safe-area-inset-top, 0);
            padding-bottom: env(safe-area-inset-bottom, 0);
        }

        .footer {
            padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
        }

        /* Fixed bottom elements */
        .toast,
        .fixed-bottom-btn {
            bottom: calc(24px + env(safe-area-inset-bottom, 0));
        }
    }
}

/* High Contrast Mode for Accessibility */
@media (prefers-contrast: high) {
    :root {
        --border-default: #000000;
        --border-light: #333333;
        --text-muted: #444444;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   APPLE STYLE HOMEPAGE - 2025
   ============================================ */

/* ============================================
   HERO SLIDER - Apple TV+ Style
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background: #000;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 113, 227, 0.4) 0%,
        rgba(0, 91, 181, 0.6) 50%,
        rgba(0, 71, 140, 0.85) 100%
    );
}

/* Alternating overlay colors for different slides */
.hero-slide:nth-child(2) .hero-slide-overlay {
    background: linear-gradient(
        to bottom,
        rgba(220, 38, 38, 0.4) 0%,
        rgba(185, 28, 28, 0.6) 50%,
        rgba(153, 27, 27, 0.85) 100%
    );
}

.hero-slide:nth-child(3) .hero-slide-overlay {
    background: linear-gradient(
        to bottom,
        rgba(45, 90, 61, 0.4) 0%,
        rgba(35, 70, 47, 0.6) 50%,
        rgba(26, 58, 38, 0.85) 100%
    );
}

.hero-slide-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 10;
}

.hero-slide-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-slide-title span {
    background: linear-gradient(135deg, var(--primary, #0071e3) 0%, #00b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide-btn:hover {
    background: var(--primary, #0071e3);
    color: #fff;
    transform: scale(1.05);
}

.hero-slide-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.hero-slide-btn:hover i {
    transform: translateX(4px);
}

/* Slider Dots/Indicators */
.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

/* Features Bar */
.hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.hero-feature-item i {
    font-size: 16px;
    color: var(--primary, #0071e3);
}

/* Hero Slider Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .hero-slide-content {
        bottom: 100px;
        width: 92%;
    }

    .hero-slide-title {
        font-size: 1.8rem;
    }

    .hero-slide-desc {
        font-size: 0.9rem;
    }

    .hero-slider-dots {
        bottom: 65px;
    }

    .hero-features-bar {
        gap: 20px;
        padding: 12px 16px;
    }

    .hero-feature-item {
        font-size: 11px;
    }

    .hero-feature-item i {
        font-size: 14px;
    }
}

/* ============================================
   HERO VISUAL - With Background Image (Legacy)
   ============================================ */
.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 113, 227, 0.4) 100%);
    z-index: 1;
}

.hero-visual .container {
    position: relative;
    z-index: 2;
}

.hero-visual-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-visual-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-visual-title .text-highlight {
    background: linear-gradient(135deg, #0071e3 0%, #00b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-visual-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #0071e3;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}

.btn-hero-primary:hover {
    background: #0077ED;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 113, 227, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.hero-feature i {
    color: #00d084;
    font-size: 16px;
}

/* Legacy hero-apple styles (kept for backwards compatibility) */
.hero-apple {
    background: #f5f5f7;
    padding: 80px 0 60px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-apple .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-apple-content {
    margin-bottom: 40px;
}

.hero-apple-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.hero-apple-tagline {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: #1d1d1f;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero-apple-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Apple Buttons */
.btn-apple-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #0071e3;
    color: #fff;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-apple-blue:hover {
    background: #0077ED;
}

.btn-apple-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #fff;
    color: #1d1d1f;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-apple-white:hover {
    background: #f5f5f7;
}

.btn-apple-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0071e3;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-apple-link:hover {
    text-decoration: underline;
}

.btn-apple-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.btn-apple-link:hover i {
    transform: translateX(3px);
}

/* Hero Device Showcase */
.hero-apple-visual {
    width: 100%;
    max-width: 600px;
}

.hero-device-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

.hero-device-icon {
    font-size: 80px;
    color: #1d1d1f;
    opacity: 0.15;
}

/* Promo Grid - Apple Style */
.promo-grid {
    padding: 12px 0;
    background: #fff;
}

.promo-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.promo-row:last-child {
    margin-bottom: 0;
}

.promo-card {
    position: relative;
    min-height: 500px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 40px;
    text-align: center;
}

.promo-card-light {
    background: #f5f5f7;
}

.promo-card-dark {
    background: #1d1d1f;
}

.promo-card-blue {
    background: #0071e3;
}

.promo-card-content {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.promo-title.light {
    color: #fff;
}

.promo-subtitle {
    font-size: 17px;
    color: #1d1d1f;
    line-height: 1.5;
    margin-bottom: 20px;
}

.promo-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

.promo-card-visual {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.promo-icon {
    font-size: 120px;
    color: #1d1d1f;
    opacity: 0.1;
}

.promo-icon.light {
    color: #fff;
    opacity: 0.15;
}

/* ============================================
   PROMO GRID VISUAL - Cards with Images
   ============================================ */
.promo-grid-visual {
    padding: 20px 0;
    background: #fff;
}

.promo-row-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.promo-row-visual:last-child {
    margin-bottom: 0;
}

.promo-row-visual.promo-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.promo-card-visual-item {
    position: relative;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.4s ease;
}

.promo-card-visual-item.promo-card-large {
    min-height: 450px;
}

.promo-card-visual-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.promo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.promo-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.promo-card-visual-item:hover .promo-card-bg img {
    transform: scale(1.05);
}

.promo-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
    transition: all 0.3s ease;
}

.promo-card-visual-item:hover .promo-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.promo-card-overlay-blue {
    background: linear-gradient(
        180deg,
        rgba(0, 113, 227, 0.1) 0%,
        rgba(0, 113, 227, 0.4) 40%,
        rgba(0, 70, 150, 0.95) 100%
    ) !important;
}

.promo-card-overlay-dark {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.95) 100%
    ) !important;
}

.promo-card-body {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.promo-card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-card-visual-item.promo-card-large .promo-card-title {
    font-size: 2rem;
}

.promo-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 16px;
}

.promo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-card-link i {
    transition: transform 0.3s ease;
}

.promo-card-visual-item:hover .promo-card-link {
    color: #00b4ff;
}

.promo-card-visual-item:hover .promo-card-link i {
    transform: translateX(5px);
}

/* Responsive - Promo Visual Grid */
@media (max-width: 1024px) {
    .promo-row-visual,
    .promo-row-visual.promo-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card-visual-item {
        min-height: 350px;
    }

    .promo-card-visual-item.promo-card-large {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .promo-row-visual,
    .promo-row-visual.promo-row-3 {
        grid-template-columns: 1fr;
    }

    .promo-card-visual-item,
    .promo-card-visual-item.promo-card-large {
        min-height: 320px;
    }

    .promo-card-title {
        font-size: 1.5rem;
    }

    .promo-card-visual-item.promo-card-large .promo-card-title {
        font-size: 1.75rem;
    }

    .hero-visual {
        min-height: 500px;
        padding: 100px 0 60px;
    }

    .hero-visual-title {
        font-size: 2rem;
    }

    .hero-visual-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .promo-card-visual-item,
    .promo-card-visual-item.promo-card-large {
        min-height: 280px;
    }

    .promo-card-body {
        padding: 20px;
    }

    .promo-card-title {
        font-size: 1.25rem;
    }

    .promo-card-visual-item.promo-card-large .promo-card-title {
        font-size: 1.5rem;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Trust Bar Clean (Legacy) */
.trust-bar-clean {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #d2d2d7;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    color: #86868b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #d2d2d7;
}

/* ============================================
   TRUST BAR MODERN
   ============================================ */
.trust-bar-modern {
    background: linear-gradient(135deg, #1d1d1f 0%, #0a0a0a 100%);
    padding: 60px 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-text {
    text-align: center;
}

.trust-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.trust-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 113, 227, 0.5);
    transform: translateY(-4px);
}

.trust-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0071e3 0%, #00b4ff 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-stat-icon i {
    font-size: 22px;
    color: #fff;
}

.trust-stat-info {
    display: flex;
    flex-direction: column;
}

.trust-stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.trust-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .trust-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-stats-modern {
        grid-template-columns: 1fr;
    }

    .trust-stat-item {
        padding: 20px;
    }

    .trust-stat-number {
        font-size: 1.5rem;
    }

    .trust-text h3 {
        font-size: 1.5rem;
    }
}

/* Responsive - Apple Style */
@media (max-width: 1024px) {
    .promo-row {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-apple {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-apple-title {
        font-size: 2.5rem;
    }

    .hero-apple-tagline {
        font-size: 1.1rem;
    }

    .hero-apple-cta {
        flex-direction: column;
        gap: 16px;
    }

    .hero-device-showcase {
        gap: 24px;
        padding: 24px;
    }

    .hero-device-icon {
        font-size: 50px;
    }

    .promo-card {
        min-height: 350px;
        padding: 40px 24px;
    }

    .promo-title {
        font-size: 1.75rem;
    }

    .promo-icon {
        font-size: 80px;
    }

    .trust-stats {
        gap: 30px;
    }

    .trust-number {
        font-size: 36px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-apple-title {
        font-size: 2rem;
    }

    .btn-apple-blue,
    .btn-apple-white {
        width: 100%;
        max-width: 280px;
    }

    .promo-card {
        min-height: 300px;
        padding: 32px 20px;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .promo-subtitle {
        font-size: 15px;
    }

    .trust-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trust-number {
        font-size: 32px;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   Only visible on mobile devices (max-width: 768px)
   Design: Minimalist Black/Gray/White Style
   ============================================ */
.mobile-bottom-nav {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); /* For iPhone notch */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    text-decoration: none;
    color: #999999;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    gap: 4px;
    border-radius: 8px;
    margin: 0 2px;
}

.bottom-nav-item i {
    font-size: 22px;
    transition: all 0.2s ease;
    color: #666666;
}

.bottom-nav-item span:not(.bottom-nav-badge) {
    margin-top: 2px;
    color: #999999;
}

.bottom-nav-item:hover {
    color: #000000;
}

.bottom-nav-item:hover i {
    color: #000000;
}

.bottom-nav-item.active {
    color: #000000;
}

.bottom-nav-item.active i {
    color: #000000;
    transform: scale(1.05);
}

.bottom-nav-item.active span:not(.bottom-nav-badge) {
    color: #000000;
    font-weight: 600;
}

/* Center Home button - Same style as other items */
.bottom-nav-item.center-home {
    position: relative;
}

.bottom-nav-item.center-home i {
    font-size: 24px;
    color: #666666;
}

.bottom-nav-item.center-home span {
    color: #999999;
}

.bottom-nav-item.center-home:hover i,
.bottom-nav-item.center-home.active i {
    color: #000000;
    transform: scale(1.05);
}

.bottom-nav-item.center-home:hover span,
.bottom-nav-item.center-home.active span {
    color: #000000;
    font-weight: 600;
}

/* Cart badge on bottom nav */
.cart-nav-item {
    position: relative;
}

.bottom-nav-badge {
    display: none !important; /* Hidden - cart count already shown in header */
}

.bottom-nav-badge:empty,
.bottom-nav-badge[data-count="0"] {
    display: none;
}

/* Hide bottom nav on mobile - use hamburger menu instead */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: none !important;
    }

    /* No extra padding needed since bottom nav is hidden */
    body {
        padding-bottom: 0;
    }

    /* Show the cart button on mobile header */
    .cart-btn-header {
        display: flex;
    }

    /* Show the chat widget on mobile */
    .chat-widget,
    #ai-chat-widget {
        display: block;
    }

    /* No extra footer padding needed */
    .footer {
        padding-bottom: 20px;
    }
}

/* Smaller screens - slightly smaller icons */
@media (max-width: 375px) {
    .bottom-nav-item i {
        font-size: 18px;
    }

    .bottom-nav-item {
        font-size: 9px;
    }
}

/* ============================================
   MOBBIN-STYLE ANIMATIONS
   ============================================ */

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Fade In Scale */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide from Left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right */
.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   MARQUEE - Infinite Logo Scroll
   ============================================ */
.marquee-section {
    padding: 40px 0;
    background: var(--bg-subtle, #f8f9fa);
    overflow: hidden;
    border-top: 1px solid var(--border-light, #e5e7eb);
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.marquee-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 60px;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    min-width: max-content;
}

.marquee-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.marquee-item i {
    font-size: 24px;
    color: var(--primary, #0071e3);
}

.marquee-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    white-space: nowrap;
}

/* ============================================
   FLOATING ICONS SECTION
   ============================================ */
.floating-icons-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.floating-icon:nth-child(4) { top: 70%; right: 5%; animation-delay: 0.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 3%; animation-delay: 1.5s; }
.floating-icon:nth-child(6) { top: 50%; right: 10%; animation-delay: 2.5s; }

.floating-icon.microsoft { color: #00a4ef; }
.floating-icon.apple { color: #555; }
.floating-icon.windows { color: #0078d4; }
.floating-icon.hp { color: #0096d6; }
.floating-icon.dell { color: #007db8; }
.floating-icon.lenovo { color: #e2231a; }

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

.floating-section-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.floating-section-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 16px;
}

.floating-section-content p {
    font-size: 18px;
    color: var(--text-muted, #6b7280);
    line-height: 1.7;
}

/* ============================================
   ANIMATED COUNTER STATS
   ============================================ */
.stats-counter {
    font-variant-numeric: tabular-nums;
}

.trust-stat-number {
    transition: transform 0.3s ease;
}

.trust-stat-item:hover .trust-stat-number {
    transform: scale(1.1);
}

/* ============================================
   ENHANCED CARD HOVER EFFECTS
   ============================================ */
.promo-card-visual-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
}

.promo-card-visual-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.promo-card-visual-item:hover .promo-card-bg img {
    transform: scale(1.1);
}

.promo-card-bg img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card-visual-item:hover .promo-card-link {
    transform: translateX(8px);
}

.promo-card-link {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Service Card Animations */
.service-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary, #0071e3);
}

.service-card .service-icon {
    transition: transform 0.4s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary, #0071e3);
    color: white;
}

/* How It Works Card Animation */
.how-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.how-card .how-number {
    transition: transform 0.4s ease, color 0.3s ease;
}

.how-card:hover .how-number {
    transform: scale(1.2);
    color: var(--primary, #0071e3);
}

/* Product Card Animation */
.product-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   HERO CONTENT ANIMATIONS
   ============================================ */
.hero-slide.active .hero-slide-badge {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-slide.active .hero-slide-title {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-slide.active .hero-slide-desc {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

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

/* Hero Slide Background Ken Burns Effect */
.hero-slide.active .hero-slide-bg img {
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* ============================================
   SECTION TITLE ANIMATIONS
   ============================================ */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   STAGGER CHILDREN ANIMATION
   ============================================ */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ============================================
   SHOWCASE HORIZONTAL SCROLL
   ============================================ */
.showcase-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.showcase-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 12px;
}

.showcase-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.showcase-scroll {
    display: flex;
    gap: 24px;
    padding: 20px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.showcase-scroll::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: scale(1.03);
}

.showcase-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.showcase-card-image {
    height: 250px;
    overflow: hidden;
}

.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-card-image img {
    transform: scale(1.1);
}

.showcase-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-card-label {
    font-size: 12px;
    color: var(--primary, #0071e3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 8px 0;
}

.showcase-card-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.showcase-card-link:hover {
    color: #fff;
}

/* ============================================
   LOADING SHIMMER EFFECT
   ============================================ */
.shimmer {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* ============================================
   MOBILE ANIMATION ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .floating-icons-section {
        padding: 60px 0;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .floating-icon i {
        font-size: 18px;
    }

    .marquee-item {
        padding: 10px 18px;
        gap: 10px;
    }

    .marquee-item i {
        font-size: 20px;
    }

    .marquee-item span {
        font-size: 13px;
    }

    .showcase-item {
        width: 260px;
    }

    .showcase-card {
        height: 350px;
    }

    .showcase-card-image {
        height: 200px;
    }

    /* Reduce animations on mobile for performance */
    .promo-card-visual-item:hover {
        transform: translateY(-6px);
    }

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

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .animate-scale,
    .animate-slide-left,
    .animate-slide-right,
    .marquee-content,
    .floating-icon,
    .hero-slide.active .hero-slide-badge,
    .hero-slide.active .hero-slide-title,
    .hero-slide.active .hero-slide-desc,
    .hero-slide.active .hero-slide-btn,
    .hero-slide.active .hero-slide-bg img {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   PROMO BANNER SLIDER - Products & Services Pages
   ============================================ */
.promo-banner-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.promo-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.promo-banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.promo-banner-slide.active .promo-banner-content {
    animation: promoBannerFadeIn 0.8s ease-out forwards;
}

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

.promo-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}

.promo-banner-slide.active .promo-banner-bg img {
    transform: scale(1.08);
}

.promo-banner-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 113, 227, 0.9) 0%,
        rgba(0, 113, 227, 0.7) 40%,
        rgba(0, 113, 227, 0.4) 70%,
        transparent 100%
    );
}

/* Alternating gradient colors for different slides */
.promo-banner-slide:nth-child(2n) .promo-banner-bg-gradient {
    background: linear-gradient(
        90deg,
        rgba(220, 38, 38, 0.9) 0%,
        rgba(220, 38, 38, 0.7) 40%,
        rgba(220, 38, 38, 0.4) 70%,
        transparent 100%
    );
}

.promo-banner-slide:nth-child(3n) .promo-banner-bg-gradient {
    background: linear-gradient(
        90deg,
        rgba(45, 90, 61, 0.9) 0%,
        rgba(45, 90, 61, 0.7) 40%,
        rgba(45, 90, 61, 0.4) 70%,
        transparent 100%
    );
}

.promo-banner-slide:nth-child(4n) .promo-banner-bg-gradient {
    background: linear-gradient(
        90deg,
        rgba(139, 105, 20, 0.9) 0%,
        rgba(139, 105, 20, 0.7) 40%,
        rgba(139, 105, 20, 0.4) 70%,
        transparent 100%
    );
}

.promo-banner-bg-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
}

/* Alternating placeholder colors */
.promo-banner-slide:nth-child(2n) .promo-banner-bg-placeholder {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.promo-banner-slide:nth-child(3n) .promo-banner-bg-placeholder {
    background: linear-gradient(135deg, #2D5A3D 0%, #1a3a26 100%);
}

.promo-banner-slide:nth-child(4n) .promo-banner-bg-placeholder {
    background: linear-gradient(135deg, #8B6914 0%, #5c4710 100%);
}

.promo-banner-bg-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    max-width: 600px;
    color: white;
}

.promo-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
}

.promo-banner-badge i {
    font-size: 0.85rem;
}

.promo-banner-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-banner-title span {
    color: var(--color-primary);
}

.promo-banner-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 450px;
}

.promo-banner-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.promo-banner-price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-banner-price-old {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.promo-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(232, 119, 34, 0.4);
}

.promo-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 119, 34, 0.5);
}

.promo-banner-btn i {
    transition: transform 0.3s ease;
}

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

/* Navigation Arrows */
.promo-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.promo-banner-prev {
    left: 20px;
}

.promo-banner-next {
    right: 20px;
}

/* Dots Navigation */
.promo-banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.promo-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-banner-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.promo-banner-dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 10px;
}

/* Empty state */
.promo-banner-empty {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
}

.promo-banner-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.promo-banner-empty h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.promo-banner-empty p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
    .promo-banner-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 3em;
    }

    .promo-banner-content {
        padding: 24px 32px;
        max-width: 55%;
    }

    .promo-banner-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .promo-banner-badge {
        margin-bottom: 10px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .promo-banner-price {
        margin-bottom: 12px;
    }

    .promo-banner-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .promo-banner-slider {
        height: 280px;
    }

    .promo-banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .promo-banner-prev {
        left: 15px;
    }

    .promo-banner-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    /* ==========================================
       APPLE TV+ STYLE - Full Screen Vertical Banner
       ========================================== */
    .promo-banner-slider {
        height: calc(100vh - 140px); /* Full viewport minus header and bottom nav */
        min-height: 500px;
        max-height: 700px;
    }

    .promo-banner-bg {
        background: #000;
    }

    .promo-banner-bg img {
        object-position: center center;
        object-fit: cover;
    }

    /* Strong gradient for text readability */
    .promo-banner-bg-gradient {
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 20%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.9) 80%,
            #000 100%
        );
    }

    /* Content at the very bottom with glass effect */
    .promo-banner-content {
        padding: 0 24px 30px;
        justify-content: flex-end;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    /* Small tag at top of content area */
    .promo-banner-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 14px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        letter-spacing: 1.5px;
        color: #fff;
        font-weight: 600;
    }

    /* BIG TITLE - Strong contrast */
    .promo-banner-title {
        font-size: 2rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
        color: #ffffff;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4);
    }

    /* Hide description - cleaner look */
    .promo-banner-desc {
        display: none;
    }

    /* Category tags - small like Apple TV+ */
    .promo-banner-price {
        justify-content: center;
        margin-bottom: 18px;
        gap: 8px;
    }

    .promo-banner-price-current {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 12px;
        border-radius: 4px;
    }

    .promo-banner-price-old {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Button - Apple TV+ outline style */
    .promo-banner-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        font-weight: 600;
        min-width: 160px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        color: #000;
        border-radius: 8px;
        box-shadow: none;
    }

    .promo-banner-btn:hover {
        background: #fff;
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }

    .promo-banner-btn i {
        color: #000;
    }

    /* Hide navigation arrows on mobile - use swipe */
    .promo-banner-nav {
        display: none;
    }

    /* Dots at the very bottom */
    .promo-banner-dots {
        bottom: 8px;
        gap: 6px;
    }

    .promo-banner-dot {
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.3);
    }

    .promo-banner-dot.active {
        width: 20px;
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 480px) {
    .promo-banner-slider {
        height: calc(100vh - 130px);
        min-height: 450px;
        max-height: 650px;
    }

    .promo-banner-content {
        padding: 0 20px 25px;
    }

    .promo-banner-title {
        font-size: 1.9rem;
        font-weight: 800;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 4px 20px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(0, 0, 0, 0.5);
    }

    .promo-banner-btn {
        padding: 11px 24px;
        font-size: 0.85rem;
        min-width: 140px;
    }

    .promo-banner-dots {
        bottom: 6px;
    }
}

/* ============================================
   FEATURED SHOWCASE - Products & Services Pages
   ============================================ */
.featured-showcase-section {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.featured-showcase-header {
    margin-bottom: 30px;
    text-align: center;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.featured-label i {
    font-size: 0.9rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(232, 119, 34, 0.3); }
    50% { box-shadow: 0 0 25px rgba(232, 119, 34, 0.6); }
}

.featured-showcase-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.featured-showcase-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.featured-showcase-scroll::-webkit-scrollbar {
    display: none;
}

/* Featured Product/Service Card */
.featured-showcase-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.featured-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-showcase-card:hover::before {
    opacity: 1;
}

.featured-showcase-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.featured-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-showcase-card:hover .featured-showcase-image img {
    transform: scale(1.1);
}

.featured-showcase-image .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-showcase-image .featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.featured-showcase-image .featured-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.featured-showcase-content {
    padding: 20px;
}

.featured-showcase-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.featured-showcase-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-showcase-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-showcase-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

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

/* Service specific styling */
.featured-showcase-card.service-card .featured-showcase-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.featured-showcase-card.service-card .featured-showcase-icon i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

/* Empty state for showcase */
.featured-showcase-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.featured-showcase-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.featured-showcase-empty p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-showcase-section {
        padding: 30px 0 40px;
    }

    .featured-showcase-header h2 {
        font-size: 1.5rem;
    }

    .featured-showcase-card {
        flex: 0 0 250px;
    }

    .featured-showcase-image {
        height: 150px;
    }

    .featured-label {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .featured-showcase-card {
        flex: 0 0 220px;
    }

    .featured-showcase-image {
        height: 130px;
    }

    .featured-showcase-content {
        padding: 15px;
    }

    .featured-showcase-title {
        font-size: 1rem;
    }

    .featured-showcase-price .price-current {
        font-size: 1.1rem;
    }
}

/* ============================================
   CLEAN UI / MINIMALIST DESIGN SYSTEM
   Inspired by premium e-commerce apps
   Colors: Gray, Black, White only
   ============================================ */

/* --- Section Hero Banner (Promotional) --- */
.section-hero-banner {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
}

.section-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.section-hero-banner-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #ffffff;
}

.section-hero-banner-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-hero-banner-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

/* --- Category Tabs (Horizontal Filter) --- */
.category-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    background: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-tab:hover {
    color: #000000;
    background: #f5f5f5;
}

.category-tab.active {
    color: #000000;
    background: #f0f0f0;
    font-weight: 600;
}

/* --- Action Icons Bar (Grid, Filter, Search) --- */
.action-icons-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 16px;
}

.action-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-icon-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.action-icon-btn.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* --- Clean Product Card (Soft UI) --- */
.product-card-clean {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-card-clean:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.product-card-clean .product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8f8;
    overflow: hidden;
}

.product-card-clean .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-clean:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Wishlist/Favorite Button */
.product-favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #cccccc;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
}

.product-favorite-btn:hover {
    color: #ff4444;
    transform: scale(1.1);
}

.product-favorite-btn.active {
    color: #ff4444;
}

.product-favorite-btn.active i {
    font-weight: 900;
}

/* Product Tag (NEW COLOR, etc) */
.product-tag-clean {
    display: inline-block;
    padding: 4px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 6px;
}

/* Product Info */
.product-info-clean {
    padding: 16px;
}

.product-name-clean {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.product-description-clean {
    font-size: 13px;
    color: #888888;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-clean {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

/* Small icon next to product */
.product-icon-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 8px;
}

.product-icon-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* --- Clean Service Card (Soft UI) --- */
.service-card-clean {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.service-card-clean:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #e0e0e0;
}

.service-icon-clean {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 24px;
    color: #333333;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean {
    background: #000000;
    color: #ffffff;
}

.service-name-clean {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
}

.service-description-clean {
    font-size: 14px;
    color: #666666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.service-link-clean {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-link-clean:hover {
    gap: 10px;
}

.service-link-clean i {
    font-size: 12px;
}

/* --- Products Grid (Clean) --- */
.products-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .products-grid-clean {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .products-grid-clean {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* --- Services Grid (Clean) --- */
.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .services-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-clean {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* --- Section Header (Minimalist) --- */
.section-header-clean {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag-clean {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 8px;
}

.section-title-clean {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.section-subtitle-clean {
    font-size: 15px;
    color: #666666;
    margin-top: 8px;
}

/* --- Clean Section Container --- */
.section-clean {
    padding: 60px 0;
    background: #ffffff;
}

.section-clean.bg-light {
    background: #fafafa;
}

/* --- Override existing cards with clean style --- */
.use-clean-ui .product-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.use-clean-ui .product-card::before {
    display: none;
}

.use-clean-ui .product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.use-clean-ui .product-card:hover .product-image::after,
.use-clean-ui .product-card:hover .product-image::before {
    display: none;
}

.use-clean-ui .product-badge {
    background: transparent;
    color: #d4a574;
    box-shadow: none;
    animation: none;
    padding: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.use-clean-ui .product-name {
    color: #000000;
    background: none;
    -webkit-text-fill-color: initial;
}

.use-clean-ui .product-card:hover .product-name {
    background: none;
    -webkit-text-fill-color: initial;
    color: #000000;
}

.use-clean-ui .price-current {
    background: none;
    -webkit-text-fill-color: initial;
    color: #000000;
}

.use-clean-ui .service-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.use-clean-ui .service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
    transform: translateY(-4px);
}

.use-clean-ui .service-icon {
    background: #f5f5f5;
    color: #333333;
}

.use-clean-ui .service-card:hover .service-icon {
    background: #000000;
    color: #ffffff;
}

.use-clean-ui .service-card-actions .btn-primary {
    background: #000000;
    color: #ffffff;
}

.use-clean-ui .service-card-actions .btn-primary:hover {
    background: #333333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Remove colorful backgrounds from sections */
.use-clean-ui .products-section::before,
.use-clean-ui .products-section::after,
.use-clean-ui .services-section::before,
.use-clean-ui .services-section::after {
    display: none;
}

/* ============================================
   SHOPPING HOMEPAGE STYLES - Kick Game Inspired
   ============================================ */

/* Announcement Bar - Scrolling */
.announcement-bar {
    background: #000000;
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    margin-top: 64px; /* Space for fixed header on mobile */
}

/* Desktop: larger margin for original header */
@media (min-width: 1024px) {
    .announcement-bar {
        margin-top: 80px; /* Space for original desktop header */
    }
}

.announcement-bar-content {
    display: flex;
    animation: announceScroll 20s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.announcement-item::after {
    content: '•';
    margin-left: 40px;
    opacity: 0.5;
}

@keyframes announceScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Shopping Header - Simplified */
.shop-header {
    background: #ffffff;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.shop-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.shop-header-center .logo-img {
    height: 32px;
    width: auto;
}

.shop-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #000000;
    transition: var(--transition-fast);
    position: relative;
}

.shop-icon-btn:hover {
    color: #666666;
}

.shop-icon-btn .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Products Horizontal Scroll Section */
.products-scroll-section {
    padding: 24px 0;
    background: #ffffff;
}

.products-scroll-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
}

.products-scroll-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
}

.products-scroll-link {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.products-scroll-link:hover {
    color: #000000;
}

.products-scroll-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Shop Product Card - Compact */
.shop-product-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.shop-product-card:hover {
    transform: translateY(-4px);
}

.shop-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

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

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.shop-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.shop-product-badge.sale {
    background: #dc3545;
}

.shop-product-info {
    padding: 12px;
}

.shop-product-name {
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.shop-product-price .from {
    font-size: 11px;
    font-weight: 400;
    color: #666666;
}

.shop-add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-fast);
}

.shop-add-btn:hover {
    background: #333333;
    transform: scale(1.1);
}

/* Shop CTA Button - Full Width */
.shop-cta-section {
    padding: 0 20px 24px;
}

.shop-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.shop-cta-btn:hover {
    background: #333333;
}

.shop-cta-btn i {
    font-size: 16px;
}

/* Brands Marquee - Shop Style */
.shop-brands-section {
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    overflow: hidden;
}

.shop-brands-scroll {
    display: flex;
    gap: 48px;
    animation: brandsScroll 25s linear infinite;
}

.shop-brand-item {
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    opacity: 0.7;
    transition: var(--transition-fast);
    cursor: pointer;
}

.shop-brand-item:hover {
    opacity: 1;
}

.shop-brand-item.italic {
    font-style: italic;
    font-family: var(--font-heading);
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Spotlight Section - Large Featured */
.spotlight-section {
    padding: 24px 20px;
    background: #ffffff;
}

/* Laptops Spotlight - Different Background */
.spotlight-laptops {
    background: #f8f8f8;
}

.spotlight-header {
    margin-bottom: 16px;
}

.spotlight-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.spotlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.spotlight-card:hover img {
    transform: scale(1.05);
}

.spotlight-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 113, 227, 0.9), rgba(0, 91, 181, 0.6), transparent);
}

/* Alternating spotlight card colors */
.spotlight-section:nth-of-type(2n) .spotlight-card-content {
    background: linear-gradient(to top, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.6), transparent);
}

.spotlight-section:nth-of-type(3n) .spotlight-card-content {
    background: linear-gradient(to top, rgba(45, 90, 61, 0.9), rgba(35, 70, 47, 0.6), transparent);
}

.spotlight-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.spotlight-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.spotlight-card-btn:hover {
    background: #f0f0f0;
}

/* Spotlight Container - Desktop Layout */
.spotlight-container {
    display: block;
}

.spotlight-info {
    display: none;
}

.spotlight-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 4px;
}

.spotlight-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.spotlight-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 450px;
}

.spotlight-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.spotlight-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.spotlight-feature i {
    color: #22c55e;
    font-size: 16px;
}

.spotlight-stats {
    display: flex;
    gap: 40px;
}

.spotlight-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spotlight-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.spotlight-stat .stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   INTIME HIGHLIGHTS - Animated Text Qualities
   ============================================ */

.intime-highlights {
    background: #1a1a1a;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.intime-highlights-inner {
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intime-highlights-phrase {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.intime-highlights-phrase.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.intime-highlights-phrase.exit-up {
    opacity: 0;
    transform: translateY(-20px);
}

.ih-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(232, 119, 34, 0.15);
}

.ih-icon i {
    font-size: 0.8rem;
    color: #e87722;
}

.ih-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Progress bar */
.intime-highlights-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #e87722;
    width: 0%;
    transition: width 0.1s linear;
}

@media (max-width: 767px) {
    .ih-text {
        font-size: 0.78rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .intime-highlights-inner {
        height: 64px;
    }

    .ih-icon {
        display: none;
    }
}

/* Tech News Spotlight - navigation dots */
.tn-dots {
    display: flex;
    gap: 6px;
    margin-top: 24px;
}

.tn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.tn-dot.active {
    background: #1a1a1a;
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   TECH NEWS SECTION - INTIME STYLE
   ============================================ */
.technews-section {
    padding: 24px 20px;
    background: var(--bg-primary);
}

.technews-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.technews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.technews-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.technews-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 5px 12px;
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.technews-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin: 0;
}

/* Mobile: stack vertically */
.technews-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.technews-image-wrap {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    text-decoration: none;
}

.technews-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.technews-image-wrap:hover img {
    transform: scale(1.03);
}

.technews-image-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.technews-image-source {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.technews-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.technews-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.technews-source {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.technews-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}

.technews-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.technews-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.technews-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.technews-readmore:hover {
    color: var(--primary);
}

.technews-readmore i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.technews-readmore:hover i {
    transform: translateX(4px);
}

/* Dots */
.tn-dots {
    display: flex;
    gap: 6px;
}

.tn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.tn-dot.active {
    background: var(--text-primary);
    width: 24px;
    border-radius: 4px;
}

/* Fade transitions */
.technews-fade {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.technews-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop: horizontal layout with big image */
@media (min-width: 1024px) {
    .technews-section {
        padding: 60px;
        border-top: 1px solid var(--border-light);
    }

    .technews-header {
        margin-bottom: 32px;
    }

    .technews-title {
        font-size: 28px;
    }

    .technews-content {
        flex-direction: row;
        gap: 48px;
        align-items: stretch;
        min-height: 360px;
    }

    .technews-image-wrap {
        flex: 0 0 58%;
        aspect-ratio: auto;
        min-height: 360px;
        border-radius: 16px;
    }

    .technews-info {
        flex: 1;
        padding: 8px 0;
    }

    .technews-heading {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .technews-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
        color: var(--text-secondary);
    }

    .technews-readmore {
        margin-top: auto;
        font-size: 13px;
        padding: 12px 24px;
        background: var(--text-primary);
        color: #fff;
        border-radius: 6px;
        align-self: flex-start;
    }

    .technews-readmore:hover {
        background: var(--primary);
        color: #fff;
    }

    .technews-image-source {
        font-size: 11px;
        padding: 6px 14px;
    }

    .technews-source {
        font-size: 12px;
    }

    .technews-date {
        font-size: 13px;
    }

    .technews-meta {
        margin-bottom: 16px;
    }
}

/* Services Shop Grid */
.shop-services-section {
    padding: 32px 20px;
    background: #f5f5f5;
}

.shop-services-header {
    margin-bottom: 20px;
}

.shop-services-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.shop-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.shop-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.shop-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
    transition: var(--transition);
}

.shop-service-card:hover .shop-service-icon {
    background: #000000;
    color: #ffffff;
}

.shop-service-name {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.shop-service-price {
    font-size: 12px;
    color: #666666;
}

/* Promo Float Button */
.promo-float {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.promo-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.promo-float-icon {
    font-size: 20px;
}

.promo-float-text {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.promo-float-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick Actions Bar */
.quick-actions-bar {
    display: flex;
    justify-content: space-around;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000000;
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.quick-action-item:hover .quick-action-icon {
    background: #000000;
    color: #ffffff;
}

.quick-action-label {
    font-size: 11px;
    font-weight: 500;
    color: #666666;
}

/* Categories Section */
.shop-categories-section {
    padding: 24px 20px;
    background: #ffffff;
}

.shop-categories-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: #000000;
}

.shop-categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.shop-categories-scroll::-webkit-scrollbar {
    display: none;
}

.shop-category-card {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.shop-category-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: #f5f5f5;
    overflow: hidden;
    margin-bottom: 8px;
}

.shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shop-category-card:hover .shop-category-image img {
    transform: scale(1.1);
}

.shop-category-name {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
}

/* Desktop Responsive for Shop Layout */
@media (min-width: 768px) {
    .shop-product-card {
        width: 200px;
    }

    .products-scroll-container {
        gap: 16px;
        padding: 0 40px 16px;
    }

    .products-scroll-header {
        padding: 0 40px 16px;
    }

    .shop-cta-section {
        padding: 0 40px 32px;
    }

    .spotlight-section {
        padding: 32px 40px;
    }

    .spotlight-card {
        aspect-ratio: 16/9;
    }

    .shop-services-section {
        padding: 40px;
    }

    .shop-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .shop-categories-section {
        padding: 32px 40px;
    }

    .quick-actions-bar {
        padding: 20px 40px;
        justify-content: center;
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .shop-product-card {
        width: 220px;
    }

    .shop-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Spotlight Section - Desktop Two Column Layout */
    .spotlight-section {
        padding: 80px 60px;
    }

    .spotlight-container {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .spotlight-info {
        display: block;
        flex: 1;
        padding-right: 20px;
    }

    .spotlight-card {
        flex: 1;
        aspect-ratio: 1;
        max-width: 500px;
    }

    .spotlight-heading {
        font-size: 48px;
    }

    .spotlight-description {
        font-size: 17px;
        max-width: 500px;
    }

    .spotlight-stats {
        gap: 50px;
    }

    .spotlight-stat .stat-number {
        font-size: 36px;
    }

    /* Alternate Layout - Image Left, Text Right */
    .spotlight-laptops .spotlight-container {
        flex-direction: row-reverse;
    }

    .spotlight-laptops .spotlight-info {
        padding-right: 0;
        padding-left: 20px;
    }
}

/* Hide old sections when using shop layout */
.shop-layout .hero-slider,
.shop-layout .promo-grid-visual,
.shop-layout .trust-bar-modern,
.shop-layout .floating-icons-section,
.shop-layout .services-section,
.shop-layout .how-section,
.shop-layout .products-section,
.shop-layout .showcase-section {
    display: none !important;
}

/* ============================================
   HEADER MINIMAL - Kick Game Style
   ============================================ */

/* Header Minimal - Only visible on mobile */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

/* Hide minimal header content on desktop - show original header instead */
@media (min-width: 1024px) {
    .header-minimal .header-content-minimal {
        display: none !important;
    }

    .header-minimal {
        padding: 16px 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-light);
    }

    .header-minimal .header-content.desktop-only {
        display: block !important;
    }
}

/* Tablet/Mobile: hide desktop header content */
@media (max-width: 1023px) {
    .header-content.desktop-only {
        display: none !important;
    }
}

.header-content-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
    overflow: hidden;
    transition: height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
}

/* Hide icons row on scroll down (tablet/mobile) */
@media (max-width: 1023px) {
    .header.header-hide .header-content-minimal {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
    }
}

/* Mobile Quick Navigation - Início, Produtos & Serviços */
.mobile-quick-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 8px 16px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-quick-nav-btn {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

.mobile-quick-nav-btn.active {
    color: #dc2626;
    font-weight: 600;
}

.mobile-quick-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    border-radius: 1px;
}

@media (min-width: 1024px) {
    .mobile-quick-nav {
        display: none !important;
    }
}

.mobile-quick-nav-btn:hover {
    color: #dc2626;
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 12px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-search-bar-inner {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-bar-icon {
    position: absolute;
    left: 12px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.mobile-search-bar-input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 38px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: background 0.2s ease;
}

.mobile-search-bar-input:focus {
    background: #eeeeee;
}

.mobile-search-bar-input::placeholder {
    color: #999;
}

.mobile-search-clear-btn {
    position: absolute;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-search-clear-btn:hover {
    background: #ccc;
}

.mobile-filter-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-filter-btn:hover {
    background: #e5e5e5;
}

.mobile-filter-btn.has-filter {
    background: #000;
    color: #fff;
}

/* Mobile Filter Dropdown */
.mobile-filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 200;
    animation: slideDown 0.2s ease;
}

.mobile-filter-dropdown.active {
    display: block;
}

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

.mobile-filter-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mobile-filter-close-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
}

.mobile-filter-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-option:hover {
    background: #e8e8e8;
}

.mobile-filter-option.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.mobile-filter-option i {
    font-size: 12px;
}

.mobile-filter-actions {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
}

.mobile-filter-clear {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-clear:hover {
    background: #f5f5f5;
}

.mobile-filter-apply {
    flex: 1;
    padding: 12px;
    background: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-apply:hover {
    background: #333;
}

/* Mobile Live Search Results */
.mobile-live-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 60vh;
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 199;
}

.mobile-live-search-results.active {
    display: block;
}

.mobile-live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
    cursor: pointer;
}

.mobile-live-search-item:hover,
.mobile-live-search-item:active {
    background: #f0f0f0;
}

.mobile-live-search-item:last-child {
    border-bottom: none;
}

.mobile-live-search-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}

.mobile-live-search-info {
    flex: 1;
    min-width: 0;
}

.mobile-live-search-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-live-search-category {
    font-size: 12px;
    color: #999;
}

.mobile-live-search-price {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
    white-space: nowrap;
}

.mobile-live-search-empty {
    padding: 24px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.mobile-live-search-empty i {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* Mobile Active Filter Indicator */
.mobile-active-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-active-filter-label {
    font-size: 12px;
    color: #666;
}

.mobile-active-filter-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

.mobile-active-filter-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e0e0e0;
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 10px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s ease;
}

.mobile-active-filter-clear:hover,
.mobile-active-filter-clear:active {
    background: #d0d0d0;
    color: #333;
}

/* Hide on desktop (≥1024px) */
@media (min-width: 1024px) {
    .mobile-quick-nav {
        display: none;
    }
    .mobile-search-bar {
        display: none;
    }
    .mobile-filter-dropdown {
        display: none !important;
    }
    .mobile-live-search-results {
        display: none !important;
    }
    .mobile-active-filter {
        display: none !important;
    }
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.header-icon-btn:hover {
    background: #f5f5f5;
}

/* ============================================
   ADMIN INDICATOR - Visible on any page
   ============================================ */

/* Mobile: small shield badge on the user icon */
#accountBtn.is-admin,
#mobileProfileAvatar.is-admin {
    position: relative;
}
#accountBtn.is-admin::after,
#mobileProfileAvatar.is-admin::after {
    content: '\f3ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    font-size: 8px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    line-height: 1;
}

/* Desktop: admin link glow in nav */
body.user-is-admin #adminLink {
    color: #000;
    font-weight: 600;
}

/* Notification button styles */
#notificationsBtn {
    position: relative;
}

.header-notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e74c3c;
    border-radius: 10px;
    display: none;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 16px;
    text-align: center;
}

.header-notification-badge.has-notifications {
    display: block;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

.header-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}

.header-cart-btn {
    position: relative;
}

.header-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: #e53935;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.header-cart-badge[data-count="0"],
.header-cart-badge:empty {
    display: none;
}

/* Search Overlay - Mobile Only */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Hide search overlay on desktop */
@media (min-width: 1024px) {
    .search-overlay {
        display: none !important;
    }
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    padding: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 12px;
}

.search-input-wrapper i {
    color: #666666;
    font-size: 16px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000000;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: #999999;
}

.search-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666666;
    font-size: 18px;
    padding: 4px;
}

.search-suggestions {
    margin-top: 24px;
}

.search-category-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.search-suggestion-item {
    display: block;
    padding: 12px 0;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.search-suggestion-item:hover {
    color: #666666;
}

/* Account Dropdown - Mobile Only */
.account-dropdown {
    position: fixed;
    top: 56px;
    right: 0;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Hide account dropdown on desktop */
@media (min-width: 1024px) {
    .account-dropdown {
        display: none !important;
    }
}

.account-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-content {
    padding: 20px;
}

.account-message {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
    text-align: center;
}

.btn-dark {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: background 0.2s ease;
}

.btn-dark:hover {
    background: #333333;
}

.account-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    overflow: hidden;
}

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

.account-name {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.account-link i {
    width: 20px;
    color: #666666;
}

.account-link:hover {
    color: #666666;
}

.account-link.logout {
    color: #dc2626;
}

.account-link.logout i {
    color: #dc2626;
}

/* Mobile Filter Bar */
.mobile-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.filter-btn-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn-mobile i {
    font-size: 14px;
}

.sort-btn-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
}

.sort-btn-mobile i {
    font-size: 12px;
}

/* ============================================
   DESKTOP SHOP LAYOUT - Kick Game Style
   ============================================ */

/* Mobile Only / Desktop Only Utilities */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: block !important;
    }
}

/* Desktop Hero Banner */
.desktop-hero-banner {
    display: none;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #0071e3 0%, #005bb5 50%, #003d7a 100%);
}

.desktop-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.desktop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Fallback pattern if no image */
.desktop-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.desktop-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.desktop-hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.desktop-hero-subtitle {
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ============================================
   DESKTOP HOME HERO - Kick Game Style
   ============================================ */

.desktop-home-hero {
    display: none;
    background: #ffffff;
    margin-top: 118px; /* header + announcement bar */
    border-bottom: 1px solid #e5e5e5;
}

.home-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Navigation Tabs */
.home-hero-nav {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-hero-nav::-webkit-scrollbar {
    display: none;
}

.home-nav-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
}

.home-nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-nav-tab:hover {
    color: #000;
}

.home-nav-tab.active {
    color: #000;
}

.home-nav-tab.active::after {
    transform: scaleX(1);
}

.home-nav-tab.highlight {
    color: #e74c3c;
}

.home-nav-tab.highlight::after {
    background: #e74c3c;
}

.tab-icon {
    font-size: 14px;
    opacity: 0.7;
}

.home-nav-tab:hover .tab-icon,
.home-nav-tab.active .tab-icon {
    opacity: 1;
}

/* Hero Main Content */
.home-hero-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
    padding: 60px 0;
}

/* Left Side - Text Content */
.home-hero-text {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    color: #666;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    width: fit-content;
}

.home-hero-badge i {
    color: #e74c3c;
}

.home-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #000;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

.home-hero-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -1px;
}

.home-hero-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

/* Action Buttons */
.home-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.home-hero-btn.primary {
    background: #000;
    color: #fff;
}

.home-hero-btn.primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.home-hero-btn.secondary {
    background: transparent;
    color: #000;
    border: 2px solid #e5e5e5;
}

.home-hero-btn.secondary:hover {
    border-color: #000;
    background: #f8f8f8;
}

/* Stats Row */
.home-hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

.hero-stat .stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Right Side - Featured Cards */
.home-hero-cards {
    flex: 1;
    display: flex;
    gap: 20px;
    max-width: 600px;
}

.hero-feature-card {
    flex: 1;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.hero-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}

.hero-feature-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image i {
    font-size: 48px;
    color: #ccc;
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.card-badge.blue {
    background: #2563eb;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.hero-feature-card:hover .card-link {
    gap: 12px;
}

.card-services {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
}

/* Bottom Categories Quick Access */
.home-hero-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.quick-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f8f8;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-cat:hover {
    background: #000;
    color: #fff;
}

.quick-cat i {
    font-size: 14px;
}

/* ============================================
   DESKTOP HERO SLIDER - Premium Animated (OLD - Hidden)
   ============================================ */
.desktop-hero-slider {
    display: none;
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #000000;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Backgrounds */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide-bg-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
}

.hero-slide-bg-gradient {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.hero-slide-bg-light {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f0f0f0 100%);
}

.hero-slide-bg-accent {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Slide Content Layout */
.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 80px 80px;
    gap: 60px;
    box-sizing: border-box;
}

.hero-content-light {
    color: #000000;
}

/* Text Content */
.hero-slide-text {
    flex: 1;
    max-width: 550px;
}

.hero-slide-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888888;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.2s;
}

.hero-content-light .hero-slide-label {
    background: rgba(0, 0, 0, 0.05);
    color: #666666;
}

.hero-slide-title {
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-content-light .hero-slide-title {
    color: #000000;
}

.hero-slide-title .title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.hero-slide-title .title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-slide-title .title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-slide-title .title-italic {
    font-style: italic;
    font-weight: 400;
}

.hero-slide-description {
    font-size: 16px;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 32px;
    max-width: 450px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.6s;
}

.hero-content-light .hero-slide-description {
    color: #666666;
}

/* Action Buttons */
.hero-slide-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.7s;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: #ffffff;
    color: #000000;
}

.hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

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

.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-btn-dark {
    background: #000000;
    color: #ffffff;
}

.hero-btn-dark:hover {
    background: #222222;
    transform: translateX(4px);
}

.hero-btn-outline-dark {
    background: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.hero-btn-outline-dark:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

/* Brands List */
.hero-slide-brands {
    display: flex;
    gap: 24px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.hero-slide-brands span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666666;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.hero-slide-brands span:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Features List */
.hero-slide-features {
    display: flex;
    gap: 24px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888888;
}

.hero-feature i {
    color: #22c55e;
    font-size: 14px;
}

/* Price Display */
.hero-slide-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.hero-slide-price .price-from {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-slide-price .price-value {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

/* Logos Grid */
.hero-slide-logos {
    display: flex;
    gap: 24px;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.9s;
}

.hero-slide-logos img {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.hero-slide-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Product Image */
.hero-slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 550px;
    overflow: visible;
}

.hero-product-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 16px;
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    animation: slideInProduct 1s ease forwards 0.4s;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-service {
    max-height: 340px;
    border-radius: 16px;
}

.hero-img-dashboard {
    max-height: 360px;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Image Badge */
.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.5s ease forwards 1s;
    z-index: 5;
}

.hero-image-badge .badge-discount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.hero-image-badge .badge-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Image Stats */
.hero-image-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: slideUp 0.6s ease forwards 1s;
    z-index: 5;
}

.hero-image-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-image-stats .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.hero-image-stats .stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 10;
}

.hero-slider-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.3);
}

.hero-dot .dot-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
}

.hero-dot.active .dot-progress {
    animation: progressBar 6s linear forwards;
}

.hero-slider-arrows {
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Slide Counter */
.hero-slide-counter {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    z-index: 10;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.hero-slide-counter .counter-current {
    font-size: 48px;
    font-weight: 600;
}

.hero-slide-counter .counter-separator {
    font-size: 24px;
    opacity: 0.5;
    margin: 0 4px;
}

.hero-slide-counter .counter-total {
    font-size: 18px;
    opacity: 0.5;
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInProduct {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Reset animations when slide becomes inactive */
.hero-slide:not(.active) .hero-slide-label,
.hero-slide:not(.active) .title-line,
.hero-slide:not(.active) .hero-slide-description,
.hero-slide:not(.active) .hero-slide-actions,
.hero-slide:not(.active) .hero-slide-brands,
.hero-slide:not(.active) .hero-slide-features,
.hero-slide:not(.active) .hero-slide-price,
.hero-slide:not(.active) .hero-slide-logos,
.hero-slide:not(.active) .hero-product-img,
.hero-slide:not(.active) .hero-image-badge,
.hero-slide:not(.active) .hero-image-stats {
    animation: none;
    opacity: 0;
}

/* Fallback when images don't load */
.hero-product-img[src=""],
.hero-product-img:not([src]) {
    display: none;
}

/* Light slide theme - darker navigation */
.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-dot {
    background: rgba(0, 0, 0, 0.15);
}

.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-dot.active {
    background: rgba(0, 0, 0, 0.2);
}

.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-dot .dot-progress {
    background: #000000;
}

.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-arrow {
    border-color: rgba(0, 0, 0, 0.3);
    color: #000000;
}

.hero-slide[data-slide="3"].active ~ .hero-slider-nav .hero-arrow:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.hero-slide[data-slide="3"].active ~ .hero-slide-counter {
    color: #000000;
}

/* Desktop Category Tabs */
.desktop-category-tabs {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.category-tabs-wrapper {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: 8px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-tab:hover {
    border-color: #000000;
    color: #000000;
}

.category-tab.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}


/* Desktop Filter Bar */
.desktop-filter-bar {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: relative;
}

/* Desktop Filter Bar Inner Container */
.desktop-filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Desktop Search Container */
.desktop-search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.desktop-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    font-size: 14px;
    pointer-events: none;
}

.desktop-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f8f8;
    transition: all 0.2s ease;
}

.desktop-search-input:focus {
    outline: none;
    border-color: #0071e3;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.desktop-search-input::placeholder {
    color: #999999;
}

/* Filter Dropdown Buttons */
.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-dropdown-btn:hover {
    border-color: #333333;
}

.filter-dropdown-btn.active {
    border-color: #0071e3;
    color: #0071e3;
    background: rgba(0, 113, 227, 0.05);
}

.filter-dropdown-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.filter-dropdown-btn.active i {
    transform: rotate(180deg);
}

/* Filter Dropdown Panels */
.filter-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.filter-dropdown-panel.active {
    display: block;
}

/* Filter Options Grid */
.filter-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-option-item {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-option-item:hover {
    background: #e8e8e8;
}

.filter-option-item.active {
    background: #0071e3;
    color: #ffffff;
}

/* Desktop Products/Services Info Bar */
.desktop-products-info-bar {
    display: none;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 14px 0;
}

.desktop-products-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.products-showing-count {
    font-size: 14px;
    color: #666666;
}

.products-showing-count strong {
    color: #000000;
    font-weight: 600;
}

.desktop-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-sort-wrapper label {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-sort-select {
    padding: 10px 36px 10px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 180px;
}

.desktop-sort-select:hover {
    border-color: #333333;
}

.desktop-sort-select:focus {
    outline: none;
    border-color: #0071e3;
}

/* Desktop Filter Bar - Fixed on scroll (controlled by JS) */
@media (min-width: 1024px) {
    .desktop-filter-bar {
        display: block;
        background: #ffffff;
        z-index: 998;
        transition: box-shadow 0.2s ease;
    }

    .desktop-filter-bar.is-fixed {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e5e5e5;
    }

    /* Placeholder to prevent content jump */
    .desktop-filter-bar-placeholder {
        background: transparent;
    }

    /* Desktop Products/Services Info Bar */
    .desktop-products-info-bar {
        display: block;
    }
}

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

.filter-options {
    display: flex;
    gap: 12px;
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #000000;
}

.filter-btn i {
    font-size: 10px;
    color: #999999;
}

/* Clear Filters Button - Desktop */
.clear-filters-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ff4444;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.clear-filters-btn:hover {
    background: #cc0000;
}

.clear-filters-btn i {
    font-size: 11px;
}

.clear-filters-btn.active {
    display: flex;
}

/* Clear Filters Button - Mobile */
.mobile-clear-filters-btn {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: #ff4444;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-clear-filters-btn:hover {
    background: #cc0000;
}

.mobile-clear-filters-btn i {
    font-size: 10px;
}

.mobile-clear-filters-btn.active {
    display: flex;
}

.filter-results {
    display: flex;
    align-items: center;
    gap: 24px;
}

.results-count {
    font-size: 14px;
    color: #666666;
}

.results-count strong {
    color: #000000;
}

.sort-dropdown {
    position: relative;
}

.sort-select {
    padding: 10px 32px 10px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-select:hover {
    border-color: #000000;
}

/* Products Main Section */
.products-main-section {
    padding: 0;
    background: #ffffff;
}

.products-main-section .container {
    padding: 0;
    max-width: 100%;
}

/* Products Adaptive Container - Mobile: 2-column Grid, Desktop: 4-column Grid */
.products-adaptive-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e5e5e5;
}

/* Mobile Product Card - Kick Game Style */
.products-adaptive-container .shop-product-card {
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    padding: 12px;
}

.products-adaptive-container .shop-product-image {
    aspect-ratio: 1;
    height: auto;
    border-radius: 0;
    margin-bottom: 12px;
    position: relative;
}

.products-adaptive-container .shop-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.products-adaptive-container .shop-product-info {
    padding: 0;
}

.products-adaptive-container .shop-product-name {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-adaptive-container .shop-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.products-adaptive-container .shop-product-price {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}

.products-adaptive-container .shop-product-price .from {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666666;
}

.products-adaptive-container .shop-product-price .old-price {
    text-decoration: line-through;
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    margin-left: 6px;
}

.products-adaptive-container .shop-add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #000000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.products-adaptive-container .shop-add-btn:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Price block + old price */
.products-adaptive-container .shop-price-block {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.products-adaptive-container .shop-product-old-price {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.products-adaptive-container .shop-card-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hot badge */
.products-adaptive-container .shop-product-badge.hot {
    background: #f97316;
    color: #ffffff;
}

/* Mobile scroll header styling */
.products-main-section .products-scroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 12px;
}

.products-main-section .products-scroll-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.products-main-section .products-scroll-link {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.products-main-section .products-scroll-link:hover {
    color: #000000;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
    /* Show Desktop Elements */
    .desktop-hero-banner {
        display: none; /* Hidden - replaced by hero slider */
    }

    /* Show new Kick Game style home hero */
    .desktop-home-hero {
        display: block;
    }

    /* Hide old hero slider - replaced by new design */
    .desktop-hero-slider {
        display: none !important;
    }

    .desktop-category-tabs {
        display: block;
    }

    .desktop-filter-bar {
        display: block;
    }

    /* Products Grid */
    .products-main-section {
        padding: 32px 0;
    }

    .products-main-section .container {
        padding: 0 40px;
        max-width: var(--container-max-width);
        margin: 0 auto;
    }

    .products-adaptive-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        overflow: visible;
        padding: 0;
    }

    /* Desktop Product Card Style */
    .products-adaptive-container .shop-product-card {
        width: 100%;
        flex: none;
        scroll-snap-align: unset;
    }

    .products-adaptive-container .shop-product-image {
        height: 280px;
        border-radius: 12px;
    }

    .products-adaptive-container .shop-product-name {
        font-size: 14px;
    }

    .products-adaptive-container .shop-product-price {
        font-size: 15px;
    }

    /* Hide mobile CTA */
    .shop-cta-section.mobile-only {
        display: none;
    }
}

@media (min-width: 1024px) {
    .desktop-hero-slider {
        height: 650px;
    }

    .hero-slide-title .title-line {
        font-size: 76px;
    }

    .hero-slide-description {
        font-size: 17px;
    }

    .hero-product-img {
        max-height: 380px;
    }

    .products-adaptive-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .products-adaptive-container .shop-product-image {
        height: 320px;
    }
}

@media (min-width: 1440px) {
    .desktop-hero-slider {
        height: 720px;
    }

    .hero-slide-content {
        padding: 40px 100px 80px;
    }

    .hero-slide-title .title-line {
        font-size: 84px;
    }

    .hero-product-img {
        max-height: 440px;
    }

    .hero-slide-image {
        max-width: 650px;
    }
}

@media (min-width: 1200px) {
    .desktop-hero-banner {
        height: 500px;
    }

    .products-adaptive-container {
        gap: 32px;
    }

    .products-adaptive-container .shop-product-image {
        height: 350px;
    }
}

/* Desktop Shop Services Grid - 4 columns */
@media (min-width: 1024px) {
    .shop-services-section {
        padding: 60px 40px;
    }

    .shop-services-header {
        margin-bottom: 32px;
    }

    .shop-services-title {
        font-size: 32px;
    }

    .shop-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .shop-service-card {
        padding: 32px 24px;
    }

    .shop-service-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .shop-service-name {
        font-size: 15px;
    }

    .shop-service-price {
        font-size: 13px;
    }
}

/* Desktop Spotlight - Side by Side */
@media (min-width: 768px) {
    .spotlight-section {
        padding: 40px;
    }

    .spotlight-section:has(.spotlight-card:nth-child(2)) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .spotlight-card {
        aspect-ratio: 16/10;
    }

    .spotlight-card-title {
        font-size: 36px;
    }
}

/* Hide brands marquee on desktop, show static */
@media (min-width: 768px) {
    .shop-brands-section {
        padding: 40px;
    }

    .shop-brands-scroll {
        animation: none;
        justify-content: center;
        gap: 48px;
    }

    .shop-brand-item {
        font-size: 24px;
    }
}

/* Desktop About Section Enhancement */
@media (min-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        gap: 60px;
    }
}

/* Desktop Contact Section */
@media (min-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
}

/* Desktop Hero Animation */
@media (min-width: 768px) {
    .desktop-hero-banner {
        opacity: 0;
        animation: fadeInScale 0.8s ease forwards;
    }

    .desktop-hero-title {
        opacity: 0;
        animation: slideUpEntrance 0.6s ease 0.3s forwards;
    }

    .desktop-hero-subtitle {
        opacity: 0;
        animation: slideUpEntrance 0.6s ease 0.5s forwards;
    }

    /* Category Tabs Animation */
    .desktop-category-tabs {
        opacity: 0;
        animation: slideUpEntrance 0.5s ease 0.2s forwards;
    }

    .category-tab {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-tab:hover {
        transform: translateY(-2px);
    }

    /* Filter Bar Animation */
    .desktop-filter-bar {
        opacity: 0;
        animation: slideUpEntrance 0.5s ease 0.3s forwards;
    }

    .filter-btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .filter-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Desktop Product Card Enhanced */
    .products-adaptive-container .shop-product-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .products-adaptive-container .shop-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .products-adaptive-container .shop-product-card:hover .shop-product-image img {
        transform: scale(1.05);
    }
}

/* Sale Badge Enhancement */
.shop-product-badge.sale {
    background: #dc2626;
    color: #ffffff;
    font-weight: 700;
    animation: pulseBadge 2s ease-in-out infinite;
}

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

/* Hide desktop elements on mobile */
.desktop-hero-banner,
.desktop-hero-slider,
.desktop-home-hero,
.desktop-category-tabs,
.desktop-filter-bar {
    display: none;
}

/* Hide elements that shouldn't show on desktop shop layout */
@media (min-width: 768px) {
    .products-scroll-section {
        display: none !important;
    }

    .products-main-section .products-scroll-header {
        display: none !important;
    }

    /* Show desktop elements */
    .desktop-hero-banner,
    .desktop-home-hero,
    .desktop-category-tabs,
    .desktop-filter-bar {
        display: block;
    }

    /* Hide old hero slider - replaced by new design */
    .desktop-hero-slider {
        display: none !important;
    }
}

/* ============================================
   TECH ANIMATIONS - Intime Assist Theme
   ============================================ */

/* Pulse Animation for Icons */
@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
    }
}

/* Gear Rotate Animation */
@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Float Animation */
@keyframes techFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1);
    }
}

/* Slide Up Entrance Animation */
@keyframes slideUpEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Scale Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Circuit Line Animation */
@keyframes circuitFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Ripple Effect */
@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Section Entrance Animations */
.products-main-section,
.spotlight-section,
.shop-services-section,
.shop-brands-section,
.shop-cta-section {
    opacity: 0;
    animation: slideUpEntrance 0.6s ease forwards;
}

.products-main-section { animation-delay: 0.1s; }
.shop-cta-section { animation-delay: 0.2s; }
.shop-brands-section { animation-delay: 0.3s; }
.spotlight-section { animation-delay: 0.4s; }
.shop-services-section { animation-delay: 0.5s; }

/* Quick Actions Icon Hover Effects */
.quick-action-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.quick-action-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.quick-action-item:hover .quick-action-icon {
    transform: scale(1.1);
    background: #000000;
    color: #ffffff;
}

.quick-action-item:hover .quick-action-icon::after {
    background: rgba(0, 0, 0, 0.05);
    animation: rippleEffect 0.6s ease-out;
}

/* Service Card Tech Hover Effects */
.shop-service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    transition: left 0.5s ease;
}

.shop-service-card:hover::before {
    left: 100%;
}

.shop-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.shop-service-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-service-card:hover .shop-service-icon {
    transform: scale(1.15) rotate(5deg);
    background: #000000;
    color: #ffffff;
}

/* Product Card Hover Enhancement */
.shop-product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-product-card:hover {
    transform: translateY(-6px);
}

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

.shop-add-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-add-btn:hover {
    transform: scale(1.15) rotate(90deg);
    background: #333333;
}

.shop-add-btn:active {
    transform: scale(0.95) rotate(90deg);
}

/* Spotlight Card Hover Animation */
.spotlight-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card:hover {
    transform: scale(1.02);
}

.spotlight-card:hover img {
    transform: scale(1.1);
}

.spotlight-card-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spotlight-card-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.spotlight-card:hover .spotlight-card-btn::after {
    width: 100%;
}

/* CTA Button Tech Animation */
.shop-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.shop-cta-btn:hover::before {
    width: 300%;
    height: 300%;
}

.shop-cta-btn:hover {
    background: #222222;
    letter-spacing: 2px;
}

.shop-cta-btn i {
    transition: transform 0.3s ease;
}

.shop-cta-btn:hover i {
    transform: translateX(6px);
}

/* Brands Marquee Enhanced */
.shop-brand-item {
    transition: all 0.3s ease;
    position: relative;
}

.shop-brand-item:hover {
    color: #000000 !important;
    transform: scale(1.1);
}

/* Announcement Bar Glow */
.announcement-bar {
    position: relative;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: circuitFlow 3s linear infinite;
    background-size: 200% 100%;
}

/* Tech Loading Shimmer for Images */
.shop-product-image,
.spotlight-card {
    position: relative;
}

.shop-product-image::before,
.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

.shop-product-card:hover .shop-product-image::before {
    animation: shimmerEffect 0.8s ease;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Mobile Touch Feedback */
@media (hover: none) {
    .quick-action-item:active .quick-action-icon {
        transform: scale(0.95);
        background: #000000;
        color: #ffffff;
    }

    .shop-service-card:active {
        transform: scale(0.98);
        background: #f0f0f0;
    }

    .shop-product-card:active {
        transform: scale(0.98);
    }

    .shop-cta-btn:active {
        transform: scale(0.98);
        background: #333333;
    }
}

/* Stagger Animation for Grid Items */
.shop-services-grid .shop-service-card {
    opacity: 0;
    animation: fadeInScale 0.4s ease forwards;
}

.shop-services-grid .shop-service-card:nth-child(1) { animation-delay: 0.1s; }
.shop-services-grid .shop-service-card:nth-child(2) { animation-delay: 0.15s; }
.shop-services-grid .shop-service-card:nth-child(3) { animation-delay: 0.2s; }
.shop-services-grid .shop-service-card:nth-child(4) { animation-delay: 0.25s; }
.shop-services-grid .shop-service-card:nth-child(5) { animation-delay: 0.3s; }
.shop-services-grid .shop-service-card:nth-child(6) { animation-delay: 0.35s; }
.shop-services-grid .shop-service-card:nth-child(7) { animation-delay: 0.4s; }
.shop-services-grid .shop-service-card:nth-child(8) { animation-delay: 0.45s; }

/* Product Scroll Items Stagger */
.products-scroll-container .shop-product-card,
.products-adaptive-container .shop-product-card {
    opacity: 0;
    animation: slideUpEntrance 0.5s ease forwards;
}

.products-scroll-container .shop-product-card:nth-child(1),
.products-adaptive-container .shop-product-card:nth-child(1) { animation-delay: 0.1s; }
.products-scroll-container .shop-product-card:nth-child(2),
.products-adaptive-container .shop-product-card:nth-child(2) { animation-delay: 0.15s; }
.products-scroll-container .shop-product-card:nth-child(3),
.products-adaptive-container .shop-product-card:nth-child(3) { animation-delay: 0.2s; }
.products-scroll-container .shop-product-card:nth-child(4),
.products-adaptive-container .shop-product-card:nth-child(4) { animation-delay: 0.25s; }
.products-scroll-container .shop-product-card:nth-child(5),
.products-adaptive-container .shop-product-card:nth-child(5) { animation-delay: 0.3s; }
.products-scroll-container .shop-product-card:nth-child(6),
.products-adaptive-container .shop-product-card:nth-child(6) { animation-delay: 0.35s; }
.products-adaptive-container .shop-product-card:nth-child(7) { animation-delay: 0.4s; }
.products-adaptive-container .shop-product-card:nth-child(8) { animation-delay: 0.45s; }
.products-adaptive-container .shop-product-card:nth-child(9) { animation-delay: 0.5s; }
.products-adaptive-container .shop-product-card:nth-child(10) { animation-delay: 0.55s; }
.products-adaptive-container .shop-product-card:nth-child(11) { animation-delay: 0.6s; }
.products-adaptive-container .shop-product-card:nth-child(12) { animation-delay: 0.65s; }

/* Quick Actions Entrance */
.quick-actions-bar .quick-action-item {
    opacity: 0;
    animation: fadeInScale 0.4s ease forwards;
}

.quick-actions-bar .quick-action-item:nth-child(1) { animation-delay: 0.05s; }
.quick-actions-bar .quick-action-item:nth-child(2) { animation-delay: 0.1s; }
.quick-actions-bar .quick-action-item:nth-child(3) { animation-delay: 0.15s; }
.quick-actions-bar .quick-action-item:nth-child(4) { animation-delay: 0.2s; }
.quick-actions-bar .quick-action-item:nth-child(5) { animation-delay: 0.25s; }

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .mobile-menu,
    .mobile-bottom-nav,
    .btn,
    .toast,
    .footer {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        padding-bottom: 0;
    }
}

/* ============================================
   CART DRAWER - Slide-in Sidebar
   ============================================ */

/* Overlay */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Container */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    transform: translateX(0);
}

/* Drawer Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-title .cart-count-badge {
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cart-drawer-close:hover {
    background: #e5e5e5;
    color: #000;
}

/* Drawer Content - Scrollable */
.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Empty Cart State */
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    color: #999;
}

.cart-drawer-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-drawer-empty h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.cart-drawer-empty p {
    font-size: 14px;
    margin: 0 0 24px 0;
}

.cart-drawer-empty .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Cart Items List */
.cart-drawer-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Single Cart Item */
.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

.cart-drawer-item:hover {
    background: #fafafa;
}

/* Item Image */
.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Item Details */
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Quantity & Remove Row */
.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

/* Quantity Selector */
.cart-quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.cart-quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cart-quantity-btn:hover {
    background: #e5e5e5;
}

.cart-quantity-btn:active {
    background: #d5d5d5;
}

.cart-quantity-value {
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

/* Remove Button */
.cart-item-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Drawer Footer */
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}

/* Total Section */
.cart-drawer-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-total-label {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.cart-total-value {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

/* Checkout Button */
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-checkout-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.cart-checkout-btn i {
    font-size: 14px;
}

/* Continue Shopping Button */
.cart-continue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.cart-continue-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: #333;
}

.cart-continue-btn i {
    font-size: 12px;
}

/* Continue Shopping Link */
.cart-continue-shopping {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-continue-shopping:hover {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-drawer {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {

    .cart-drawer-header {
        padding: 16px 20px;
    }

    .cart-drawer-title {
        font-size: 16px;
    }

    .cart-drawer-item {
        padding: 16px 20px;
        gap: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .cart-item-name {
        font-size: 13px;
    }

    .cart-item-price {
        font-size: 14px;
    }

    .cart-quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .cart-quantity-value {
        width: 36px;
        height: 28px;
        font-size: 13px;
    }

    .cart-drawer-footer {
        padding: 16px 20px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
    }

    .cart-total-value {
        font-size: 20px;
    }

    .cart-checkout-btn {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* ============================================
   DESKTOP LAYOUT - Announcement Bar Above Header
   ============================================ */

/* Hide announcement bar on mobile (it should only show on desktop) */
@media (max-width: 1023px) {
    .announcement-bar {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    /* Desktop Announcement Bar - Fixed at very top */
    .announcement-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        margin-top: 0 !important;
        padding: 10px 0;
        background: #000000;
    }

    .announcement-item {
        font-size: 13px;
        font-weight: 500;
    }

    /* Desktop header positioned below announcement bar - Kick Game Style */
    .header .header-content.desktop-only,
    .header.header-minimal .header-content.desktop-only {
        position: fixed;
        top: 38px; /* Height of announcement bar */
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        padding: 0 40px;
    }

    /* Two-row layout container - Kick Game Style */
    .header-content.desktop-only .container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        padding: 16px 0 !important;
        row-gap: 12px;
    }

    /* Desktop Search Bar - Left side, first row */
    .header-content.desktop-only .container::before {
        content: "";
        grid-column: 1;
        grid-row: 1;
        display: block;
    }

    /* Hide desktop search bar from header - use filter bar instead */
    .desktop-header-search {
        display: none !important;
    }

    .header-content.desktop-only .desktop-header-search {
        display: none !important;
    }

    /* Logo - centered in middle column, first row */
    .header-content.desktop-only .logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        text-decoration: none;
    }

    /* Hide image logo on desktop, show text instead */
    .header-content.desktop-only .logo-img {
        display: none;
    }

    .header-content.desktop-only .logo .header-logo-text {
        display: none;
    }

    .header-content.desktop-only .logo::after {
        content: "INTIME ASSIST";
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 700;
        color: #000000;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

    /* Row 2: Search (left) | Nav links (center) | Filters (right) */
    .header-content.desktop-only .nav-search {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        align-items: center;
        background: #f5f5f7;
        border: 1.5px solid transparent;
        border-radius: 8px;
        padding: 0 12px;
        height: 36px;
        gap: 8px;
        justify-self: start;
        align-self: center;
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    .header-content.desktop-only .nav-search:focus-within {
        border-color: #0071e3;
        background: #fff;
    }

    .header-content.desktop-only .nav-search i {
        color: #86868b;
        font-size: 13px;
        flex-shrink: 0;
    }

    .header-content.desktop-only .nav-search input {
        border: none;
        background: transparent;
        font-size: 13px;
        color: #1d1d1f;
        outline: none;
        width: 100%;
        min-width: 120px;
        font-family: inherit;
    }

    .header-content.desktop-only .nav-search input::placeholder {
        color: #86868b;
    }

    /* Nav links - full width by default (pages without filters) */
    .header-content.desktop-only .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 35px;
        margin: 0;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }

    /* Nav links - center column when search/filters exist */
    .header-content.desktop-only .nav-search ~ .nav-links {
        grid-column: 2;
        gap: 28px;
        padding-top: 0;
        border-top: none;
    }

    /* Filters button on the right */
    .header-content.desktop-only .nav-filters {
        grid-column: 3;
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-self: end;
        position: relative;
    }

    .nav-filters-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        border: 1.5px solid #d2d2d7;
        border-radius: 8px;
        background: #fff;
        font-size: 13px;
        font-weight: 500;
        color: #1d1d1f;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.15s ease;
        font-family: inherit;
    }

    .nav-filters-btn:hover {
        background: #f5f5f7;
        border-color: #1d1d1f;
    }

    .nav-filters-btn.active {
        background: #1d1d1f;
        color: #fff;
        border-color: #1d1d1f;
    }

    .nav-filters-btn i {
        font-size: 12px;
    }

    /* Clear filters button - hidden by default, shown when filter is active */
    .nav-filters-clear {
        display: none;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: #ff3b30;
        color: #fff;
        font-size: 11px;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease;
        margin-left: 6px;
    }

    .nav-filters-clear:hover {
        background: #d32f2f;
        transform: scale(1.1);
    }

    .nav-filters.has-filter .nav-filters-clear {
        display: flex;
    }

    /* Filters popup */
    .nav-filters-popup {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 14px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        padding: 16px 20px;
        min-width: 260px;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .nav-filters-popup.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nfp-header {
        font-size: 12px;
        font-weight: 600;
        color: #86868b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .nfp-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfp-item {
        padding: 7px 16px;
        border: 1.5px solid #d2d2d7;
        border-radius: 20px;
        background: #fff;
        font-size: 13px;
        font-weight: 500;
        color: #1d1d1f;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.15s ease;
        font-family: inherit;
    }

    .nfp-item:hover {
        background: #f5f5f7;
        border-color: #1d1d1f;
    }

    .nfp-item.active {
        background: #1d1d1f;
        color: #fff;
        border-color: #1d1d1f;
    }

    /* Row 2 vertical alignment for pages with search/filters */
    .header-content.desktop-only .nav-search,
    .header-content.desktop-only .nav-search ~ .nav-links,
    .header-content.desktop-only .nav-filters {
        align-self: center;
    }

    /* Hide nav-search and nav-filters on pages that don't have them (mobile) */
    .nav-search, .nav-filters {
        display: none;
    }

    /* Hide old desktop filter bar - replaced by nav-row search & filters */
    .desktop-filter-bar {
        display: none !important;
    }


    .header-content.desktop-only .nav-links a {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
        padding: 8px 0;
    }

    .header-content.desktop-only .nav-links a:hover,
    .header-content.desktop-only .nav-links a.active {
        color: #000;
    }

    /* Header actions - right side, first row */
    .header-content.desktop-only .header-actions {
        grid-column: 3;
        grid-row: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }

    /* Hide auth buttons text, show only icons on desktop */
    .header-content.desktop-only .header-actions .btn-outline {
        background: none;
        border: none;
        padding: 8px;
        font-size: 0;
    }

    .header-content.desktop-only .header-actions .btn-outline i {
        font-size: 20px;
        color: #333;
    }

    .header-content.desktop-only .header-actions .cart-btn {
        background: none;
        border: none;
        padding: 8px;
    }

    .header-content.desktop-only .header-actions .cart-btn i {
        font-size: 20px;
        color: #333;
    }

    /* Content spacing to account for fixed elements */
    .desktop-hero-banner,
    .desktop-hero-slider,
    .page-hero,
    .desktop-breadcrumb,
    main:first-of-type,
    section:first-of-type:not(.announcement-bar):not(.header) {
        margin-top: 160px; /* announcement bar (38px) + header (~120px with 2 rows) */
    }
}

/* ============================================
   LOADING SKELETONS
   ============================================ */
@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.skeleton {
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 6px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-text.sm { height: 12px; width: 60%; }
.skeleton-text.md { height: 14px; width: 80%; }
.skeleton-text.lg { height: 18px; width: 40%; }

.skeleton-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.skeleton-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-btn {
    height: 40px;
    width: 120px;
    border-radius: 8px;
}

/* Page loading overlay */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.page-loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.page-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--color-primary, #3b82f6);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Inline loading spinner */
.spinner-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* Content fade in after loading */
.content-loaded {
    animation: fadeIn 0.3s ease;
}

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--color-primary, #3b82f6);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary, #3b82f6);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-primary, #3b82f6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 100001;
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .skeleton {
        animation: none;
        opacity: 0.6;
    }
}

/* High contrast mode improvements */
@media (prefers-contrast: high) {
    .btn, button {
        border: 2px solid currentColor;
    }
    .toast {
        border: 2px solid #fff;
    }
    .badge {
        border: 1px solid currentColor;
    }
}

/* ============================================
   SMOOTH TRANSITIONS
   ============================================ */

/* Button loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #9ca3af;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    max-width: 320px;
    margin: 0 auto;
}

