/**
 * Diomie Gourmet Kitchen - Futuristic Ultra-Modern Stylesheet
 * Version: 3.1.0 - Fixed dark mode, responsive design, and desktop sidebar
 */

/* ============================================
   CSS VARIABLES - ENHANCED
   ============================================ */
:root {
    /* Brand Colors - Your Original Palette */
    --burgundy: #722F37;
    --burgundy-dark: #5A2429;
    --burgundy-light: #8B3D47;
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #A68A20;
    --champagne: #F7E7CE;
    --wine: #722F37;
    --cream: #FFF8F0;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;
    
    /* Status Colors */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    
    /* Typography */
    --font-primary: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing System */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;
    
    /* Border Radius - More Futuristic */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Shadows - Enhanced Depth */
    --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.04), 0 1px 3px rgba(114, 47, 55, 0.06);
    --shadow-md: 0 4px 16px rgba(114, 47, 55, 0.08), 0 2px 8px rgba(114, 47, 55, 0.06);
    --shadow-lg: 0 12px 40px rgba(114, 47, 55, 0.12), 0 4px 16px rgba(114, 47, 55, 0.08);
    --shadow-xl: 0 24px 60px rgba(114, 47, 55, 0.16), 0 8px 24px rgba(114, 47, 55, 0.12);
    --shadow-2xl: 0 40px 80px rgba(114, 47, 55, 0.2), 0 16px 40px rgba(114, 47, 55, 0.14);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);
    --shadow-glow-burgundy: 0 0 40px rgba(114, 47, 55, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Transitions - Smooth & Buttery */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(114, 47, 55, 0.1);
    
    /* Layout */
    --container-max: 1400px;
    --sidebar-width: 280px;
    --header-height: 70px;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 700;
    
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-muted: #9E9E9E;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
}

/* ============================================
   DARK THEME - COMPLETE OVERRIDE
   ============================================ */
[data-theme="dark"] {
    --burgundy: #9B4D57;
    --burgundy-dark: #722F37;
    --burgundy-light: #B85D68;
    --gold: #E8C547;
    --gold-light: #F0D060;
    --gold-dark: #D4AF37;
    --cream: #121212;
    --champagne: #1E1E1E;
    
    /* Neutrals - Inverted */
    --white: #1A1A1A;
    --gray-50: #1E1E1E;
    --gray-100: #252525;
    --gray-200: #303030;
    --gray-300: #3D3D3D;
    --gray-400: #525252;
    --gray-500: #757575;
    --gray-600: #9E9E9E;
    --gray-700: #BDBDBD;
    --gray-800: #E0E0E0;
    --gray-900: #F5F5F5;
    --black: #FFFFFF;
    
    /* Glass Morphism - Dark */
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-secondary: #BDBDBD;
    --text-muted: #757575;
    
    /* Background Colors */
    --bg-primary: #1A1A1A;
    --bg-secondary: #121212;
    --bg-tertiary: #1E1E1E;
    
    /* Shadows - Darker */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 197, 71, 0.3);
    --shadow-glow-burgundy: 0 0 40px rgba(232, 197, 71, 0.2);
    
    /* Gradients - Gold dominant with burgundy accent */
    --gradient-primary: linear-gradient(135deg, #E8C547 0%, #D4AF37 50%, #9B4D57 100%);
}

/* ============================================
   DARK MODE - TEXT & ICON VISIBILITY OVERRIDES
   All burgundy text becomes gold or white in dark mode
   ============================================ */
[data-theme="dark"] a { color: var(--gold); }
[data-theme="dark"] a:hover { color: var(--gold-light); }

/* Back button in dark mode */
[data-theme="dark"] .header-back { color: var(--gold); background: rgba(232, 197, 71, 0.08); }
[data-theme="dark"] .header-back:hover { background: rgba(232, 197, 71, 0.15); }
[data-theme="dark"] .desktop-back-btn button { color: var(--gold); border-color: rgba(232, 197, 71, 0.2); }
[data-theme="dark"] .desktop-back-btn button:hover { background: var(--gold); color: #1a1a1a; }

/* Header buttons in dark mode */
[data-theme="dark"] .header-btn { color: var(--gold); }
[data-theme="dark"] .header-btn:hover { background: rgba(232, 197, 71, 0.1); color: var(--gold-light); }
[data-theme="dark"] .header-theme-toggle { color: var(--gold); }
[data-theme="dark"] .header-theme-toggle:hover { color: var(--gold-light); background: rgba(232, 197, 71, 0.1); }

/* Sidebar links in dark mode */
[data-theme="dark"] .sidebar-link { color: var(--text-secondary); }
[data-theme="dark"] .sidebar-link:hover { color: var(--gold); background: rgba(232, 197, 71, 0.08); }
[data-theme="dark"] .sidebar-link.active { background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%); color: #1a1a1a; }

/* Section titles and labels that use burgundy */
[data-theme="dark"] .section-link { color: var(--gold); }
[data-theme="dark"] .section-link:hover { color: var(--gold-light); }

/* Category pills in dark mode */
[data-theme="dark"] .category-pill.active { background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%); color: #1a1a1a; border-color: var(--gold); }

/* Menu items - price, category text */
[data-theme="dark"] .home-menu-item-category { color: var(--gold); }
[data-theme="dark"] .home-menu-item-price { color: var(--gold); }
[data-theme="dark"] .featured-category { color: var(--gold); }
[data-theme="dark"] .featured-price { color: var(--gold); }
[data-theme="dark"] .popular-price { color: var(--gold); }

/* Item page burgundy texts */
[data-theme="dark"] .item-category { color: var(--gold); }
[data-theme="dark"] .item-price { color: var(--gold); }
[data-theme="dark"] .item-option-title { color: var(--gold); }

/* Navigation in dark mode */
[data-theme="dark"] .nav-item { color: var(--text-primary); }
[data-theme="dark"] .nav-item:hover { color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .nav-item.active { color: var(--gold); }
[data-theme="dark"] .nav-item.active::before { background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%); }

/* Home menu filters */
[data-theme="dark"] .home-menu-filter:hover { background: rgba(232, 197, 71, 0.05); border-color: var(--gold); }
[data-theme="dark"] .home-menu-filter.active { background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%); border-color: var(--gold); color: #1a1a1a; }

/* Quick actions */
[data-theme="dark"] .quick-action span { color: var(--text-secondary); }

/* Search modal */
[data-theme="dark"] .search-close { color: var(--gold); }

/* Checkout section burgundy texts */
[data-theme="dark"] .checkout-section .section-title { color: var(--text-primary); }
[data-theme="dark"] .checkout-section .section-title i { color: var(--gold); }
[data-theme="dark"] .address-option.selected { border-color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .address-fee-tag { color: var(--gold); background: rgba(232, 197, 71, 0.1); }
[data-theme="dark"] .address-check { color: var(--gold); }
[data-theme="dark"] .time-option.selected .time-option-content,
[data-theme="dark"] .payment-option.selected .payment-option-content { border-color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .time-option-content i,
[data-theme="dark"] .payment-option-content i { color: var(--gold); }

/* Wallet balance */
[data-theme="dark"] .wallet-amount { color: var(--gold); }
[data-theme="dark"] .wallet-icon { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .wallet-balance-info { background: rgba(232, 197, 71, 0.05); }

/* Buttons in dark mode */
[data-theme="dark"] .btn-primary { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%); color: var(--gold); }
[data-theme="dark"] .btn-primary:hover { background: linear-gradient(135deg, #9B4D57 0%, #722F37 100%); color: var(--gold-light); }

/* Terms section in dark mode */
[data-theme="dark"] .terms-section { border-color: rgba(232, 197, 71, 0.3); background: rgba(232, 197, 71, 0.03); }
[data-theme="dark"] .terms-header { color: var(--gold); }
[data-theme="dark"] .checkmark-box { border-color: var(--gold); }
[data-theme="dark"] .terms-checkbox input:checked + .checkmark-box { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .terms-text a { color: var(--gold); }
[data-theme="dark"] .terms-text a:hover { color: var(--gold-light); }

/* Notification page in dark mode */
[data-theme="dark"] .notification-card.is-unread { background-color: rgba(232, 197, 71, 0.08); border-color: rgba(232, 197, 71, 0.2); }
[data-theme="dark"] .notification-card.is-read { background-color: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .notif-title { color: var(--text-primary); }
[data-theme="dark"] .notif-text { color: var(--text-secondary); }
[data-theme="dark"] .notification-time { color: var(--text-muted); }
[data-theme="dark"] .btn-read-more { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .btn-read-more:hover { background: var(--gold-light); }
[data-theme="dark"] .btn-view { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .btn-view:hover { background: var(--gold-light); }

/* Notification modal in dark mode */
[data-theme="dark"] .notif-modal-content { background: var(--bg-primary); }
[data-theme="dark"] .modal-header { background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%); color: #1a1a1a; }
[data-theme="dark"] .modal-header h3 { color: #1a1a1a; }
[data-theme="dark"] .modal-body { color: var(--text-primary); }
[data-theme="dark"] .modal-footer { background: var(--gray-100); border-top-color: var(--gray-200); }
[data-theme="dark"] .btn-modal-close { background: var(--gold); color: #1a1a1a; }

/* Notification tabs in dark mode */
[data-theme="dark"] .tab-btn { background: var(--gray-100); border-color: var(--gray-200); color: var(--text-secondary); }
[data-theme="dark"] .tab-btn:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="dark"] .tab-btn.active { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .tab-count { background: var(--gray-200); color: var(--text-muted); }
[data-theme="dark"] .tab-btn.active .tab-count { background: rgba(0,0,0,0.15); color: #1a1a1a; }

/* Notification page header */
[data-theme="dark"] .page-header h1 { color: var(--text-primary); }
[data-theme="dark"] .page-header p { color: var(--text-secondary); }

/* Pagination in dark mode */
[data-theme="dark"] .page-btn { background: var(--gray-100); border-color: var(--gray-200); color: var(--gold); }
[data-theme="dark"] .page-btn:hover { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .page-num { background: var(--gray-100); border-color: var(--gray-200); color: var(--gold); }
[data-theme="dark"] .page-num:hover { border-color: var(--gold); }
[data-theme="dark"] .page-num.active { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }

/* Sidebar search box in dark mode */
[data-theme="dark"] .sidebar-search-box input { background: var(--gray-100); border-color: var(--gray-200); color: var(--text-primary); }
[data-theme="dark"] .sidebar-search-box i { color: var(--gold); }

/* Sidebar theme toggle */
[data-theme="dark"] .sidebar-theme-toggle { color: var(--gold); border-color: rgba(232, 197, 71, 0.2); }
[data-theme="dark"] .sidebar-theme-toggle:hover { color: var(--gold-light); background: rgba(232, 197, 71, 0.08); }

/* Sidebar child links */
[data-theme="dark"] .sidebar-child:hover { background: rgba(232, 197, 71, 0.08); color: var(--gold); }
[data-theme="dark"] .sidebar-child.active { color: var(--gold); background: rgba(232, 197, 71, 0.1); }

/* Sidebar submenu */
[data-theme="dark"] .sidebar-submenu { background: rgba(232, 197, 71, 0.03); }

/* Sidebar divider */
[data-theme="dark"] .sidebar-divider { background: var(--gray-200); }

/* Sidebar promo & footer */
[data-theme="dark"] .sidebar-social a { color: var(--gold) !important; }

/* Cart float button */
[data-theme="dark"] .cart-float-btn { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .cart-float-btn:hover { background: var(--gold-light); }

/* Checkout header */
[data-theme="dark"] .checkout-header h1 { color: var(--text-primary); }
[data-theme="dark"] .checkout-header p { color: var(--text-secondary); }

/* Delivery fee box */
[data-theme="dark"] .delivery-fee-box { border-color: rgba(232, 197, 71, 0.3); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .delivery-fee-box .fee-row i { color: var(--gold); }
[data-theme="dark"] .delivery-fee-box .fee-value { color: var(--gold); }

/* Loading spinner */
[data-theme="dark"] .loading-spinner { border-top-color: var(--gold); }

/* Address search */
[data-theme="dark"] #addressSearch:focus { border-color: var(--gold); }
[data-theme="dark"] .address-suggestions { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .suggestion-item { border-bottom-color: var(--gray-200); }
[data-theme="dark"] .suggestion-item:hover { background: var(--gray-200); }
[data-theme="dark"] .suggestion-text { color: var(--text-primary); }
[data-theme="dark"] .selected-address-display { background: rgba(232, 197, 71, 0.1); border-color: var(--gold); }
[data-theme="dark"] .selected-address-content span { color: var(--gold); }
[data-theme="dark"] .selected-address-content i { color: var(--gold); }

/* Status labels */
[data-theme="dark"] .status-label.label-unread { background-color: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .notif-icon { background-color: var(--gold) !important; color: #1a1a1a; }

/* Form inputs in dark mode */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea { border-color: var(--gray-200); background: var(--gray-100); color: var(--text-primary); }
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus { border-color: var(--gold); }
[data-theme="dark"] .form-group label { color: var(--text-primary); }

/* Discount input */
[data-theme="dark"] .discount-input-group input { border-color: var(--gray-200); background: var(--gray-100); color: var(--text-primary); }

/* Empty state */
[data-theme="dark"] .empty-state { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .empty-icon { color: var(--gray-400); }

/* No address danger block */
[data-theme="dark"] .no-address-danger { background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.05) 100%); border-color: rgba(220,53,69,0.3); }

/* Schedule time selector */
[data-theme="dark"] .schedule-time-selector { border-top-color: var(--gray-200); }

/* Mobile menu toggle */
[data-theme="dark"] .mobile-menu-toggle span span { background: var(--gold); }

/* Mobile menu links */
[data-theme="dark"] .menu-link { color: var(--text-primary); }
[data-theme="dark"] .menu-link:hover { color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .menu-link.menu-child { color: var(--text-secondary); }
[data-theme="dark"] .menu-link.menu-child:hover { color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .menu-link.menu-child.active { color: var(--gold); background: rgba(232, 197, 71, 0.08); }

/* Offer card */
[data-theme="dark"] .offer-icon { color: #1a1a1a; }
[data-theme="dark"] .offer-btn { color: #1a1a1a; }

/* Popular card add button */
[data-theme="dark"] .popular-add { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%); color: var(--gold); }
[data-theme="dark"] .home-menu-item-add { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%); color: var(--gold); }

/* Connect footer links in dark mode */
[data-theme="dark"] .connect-link { color: white; }
[data-theme="dark"] .connect-link:hover { color: #1a1a1a; }

/* See all btn */
[data-theme="dark"] .see-all-btn { color: var(--gold); }
[data-theme="dark"] .see-all-btn:hover { color: var(--gold-light); }

/* WhatsApp float button in dark mode - white bg, green icon */
[data-theme="dark"] .whatsapp-float-btn { background: #FFFFFF; color: #25D366; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); }
[data-theme="dark"] .whatsapp-float-btn:hover { background: #f0f0f0; box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4); }

/* Auth alert banners in dark mode */
[data-theme="dark"] .auth-alert.success { background: rgba(40, 167, 69, 0.15) !important; color: #28A745 !important; border-color: rgba(40, 167, 69, 0.3) !important; }
[data-theme="dark"] .auth-alert.success i { color: #28A745 !important; }
[data-theme="dark"] .auth-alert.warning { background: rgba(255, 193, 7, 0.15) !important; color: var(--warning) !important; border-color: rgba(255, 193, 7, 0.3) !important; }
[data-theme="dark"] .auth-alert.warning i { color: var(--warning) !important; }

/* Checkout no-address danger block dark mode */
[data-theme="dark"] .no-address-danger h3 { color: var(--danger) !important; }
[data-theme="dark"] .no-address-danger p { color: var(--text-secondary) !important; }

/* Profile deposit button in dark mode */
[data-theme="dark"] .wallet-actions .btn-outline { color: var(--gold) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .wallet-actions .btn-outline:hover { background: var(--gold); color: #1a1a1a !important; }

/* Required field asterisk in dark mode */
[data-theme="dark"] .required-mark { color: var(--danger) !important; }

/* Admin notification page dark mode */
[data-theme="dark"] .notif-tabs-bar .notif-tab { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .notif-tabs-bar .notif-tab:hover { border-color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .notif-tabs-bar .notif-tab-active { background: var(--gold) !important; color: #1a1a1a !important; border-color: var(--gold) !important; box-shadow: 0 4px 12px rgba(232, 197, 71, 0.3); }
[data-theme="dark"] .notif-tabs-bar .notif-tab-active .notif-tab-count,
[data-theme="dark"] .notif-tabs-bar .notif-tab-active .notif-tab-label { color: #1a1a1a !important; }
[data-theme="dark"] .notif-tabs-bar .notif-tab-count { color: var(--gold); }
[data-theme="dark"] .notif-category-card { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .notif-category-card:hover { border-color: var(--gold); background: rgba(232, 197, 71, 0.05); }
[data-theme="dark"] .notif-category-active { background: var(--gold) !important; color: #1a1a1a !important; border-color: var(--gold) !important; }
[data-theme="dark"] .notif-category-active .notif-category-name,
[data-theme="dark"] .notif-category-active .notif-category-desc,
[data-theme="dark"] .notif-category-active .notif-category-badge { color: #1a1a1a !important; }
[data-theme="dark"] .notif-category-badge { color: var(--gold); background: rgba(232, 197, 71, 0.1); }
[data-theme="dark"] .notif-auto-refresh { background: rgba(232, 197, 71, 0.08); color: var(--gold); }
[data-theme="dark"] .notif-list-container { background: var(--gray-100); border-color: var(--gray-200); }
[data-theme="dark"] .notif-item { border-bottom-color: var(--gray-200); }
[data-theme="dark"] .notif-item:hover { background: var(--gray-200); }
[data-theme="dark"] .notif-item-unread { background: rgba(220, 53, 69, 0.08); border-left-color: #DC3545; }
[data-theme="dark"] .notif-item-unread:hover { background: rgba(220, 53, 69, 0.12); }
[data-theme="dark"] .notif-item:not(.notif-item-unread) { border-left-color: var(--gray-400); background: transparent; }
[data-theme="dark"] .notif-item:not(.notif-item-unread):hover { background: var(--gray-200); }
[data-theme="dark"] .notif-unread-indicator { background: #DC3545; box-shadow: 0 0 8px rgba(220, 53, 69, 0.6); animation: pulse-dot 2s ease-in-out infinite; }
[data-theme="dark"] .notif-message { color: var(--text-secondary); }
[data-theme="dark"] .unread-tag { color: #DC3545; background: rgba(220, 53, 69, 0.1); }
[data-theme="dark"] .read-tag { color: var(--success); background: rgba(40, 167, 69, 0.1); }
[data-theme="dark"] .notif-mark-btn { background: rgba(232, 197, 71, 0.08); color: var(--gold); }
[data-theme="dark"] .notif-mark-btn:hover { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .notif-pagination { background: var(--gray-100); border-top-color: var(--gray-200); }
[data-theme="dark"] .notif-page-btn { background: var(--gray-100); border-color: var(--gray-200); color: var(--gold); }
[data-theme="dark"] .notif-page-btn:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="dark"] .notif-page-active { background: var(--gold) !important; color: #1a1a1a !important; border-color: var(--gold) !important; }
[data-theme="dark"] .notif-detail-message { color: var(--text-primary); background: var(--gray-200); border-color: var(--gray-300); }
[data-theme="dark"] .wallet-balance-card { background: linear-gradient(135deg, #2a1a1e 0%, #1a0a0e 100%); }

/* Share buttons and WhatsApp in-content buttons in dark mode */
[data-theme="dark"] .share-btn-home.whatsapp { background: #FFFFFF; color: #25D366; }
[data-theme="dark"] .btn-whatsapp { background: #FFFFFF; color: #25D366; }
[data-theme="dark"] .btn-whatsapp:hover { background: #f0f0f0; color: #1da851; }
[data-theme="dark"] .whatsapp-btn { background: #FFFFFF; color: #25D366; }
[data-theme="dark"] .whatsapp-btn:hover { background: #f0f0f0; color: #1da851; }
[data-theme="dark"] .btn-action.whatsapp { background: #FFFFFF; color: #25D366; }
[data-theme="dark"] .btn-support.whatsapp { background: #FFFFFF; color: #25D366; }

/* ============================================
   COMPREHENSIVE DARK MODE OVERRIDES - ALL PAGES
   Buttons: burgundy bg + gold text in dark mode
   All hardcoded colors overridden for dark mode visibility
   ============================================ */

/* ─── Global Button Dark Mode: burgundy bg + gold text ─── */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-primary:not(:disabled),
[data-theme="dark"] button[type="submit"]:not(.btn-outline):not(.btn-ghost):not(.btn-link):not(.btn-danger):not(.btn-success):not(.btn-whatsapp) {
    background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important;
    color: var(--gold) !important;
    border-color: #722F37 !important;
}
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] button[type="submit"]:not(.btn-outline):not(.btn-ghost):not(.btn-link):not(.btn-danger):not(.btn-success):hover {
    background: linear-gradient(135deg, #9B4D57 0%, #722F37 100%) !important;
    color: var(--gold-light) !important;
}
[data-theme="dark"] .btn-outline {
    background: transparent !important;
    color: var(--gold) !important;
    border-color: var(--gold) !important;
}
[data-theme="dark"] .btn-outline:hover {
    background: var(--gold) !important;
    color: #1a1a1a !important;
}
[data-theme="dark"] .btn-ghost {
    background: transparent !important;
    color: var(--gold) !important;
}
[data-theme="dark"] .btn-ghost:hover {
    background: rgba(232, 197, 71, 0.1) !important;
}

/* ─── Home Page Dark Mode ─── */
[data-theme="dark"] .signature-category { color: var(--gold) !important; }
[data-theme="dark"] .signature-price { color: var(--gold) !important; }
[data-theme="dark"] .signature-badge { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .carousel-nav-btn { color: var(--gold) !important; background: rgba(232, 197, 71, 0.1); border-color: rgba(232, 197, 71, 0.2); }
[data-theme="dark"] .carousel-nav-btn:hover { background: #722F37 !important; color: var(--gold) !important; border-color: #722F37 !important; }
[data-theme="dark"] .copy-btn-v2 { background: var(--gray-200) !important; color: var(--gold) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .copy-btn-v2:hover { background: var(--gold) !important; color: #1a1a1a !important; }
[data-theme="dark"] .tag-popular { background: #722F37; color: var(--gold); }
[data-theme="dark"] .tag-signature { background: var(--gold); color: #1a1a1a !important; }
[data-theme="dark"] .tag-featured { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
[data-theme="dark"] .tag-new { background: var(--gold); color: #1a1a1a !important; }
/* Home buttons with burgundy text/icon */
[data-theme="dark"] .step-connector { color: var(--gold) !important; }
[data-theme="dark"] .step-number { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .step-icon { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; box-shadow: 0 0 20px rgba(114, 47, 55, 0.4), 0 0 40px rgba(232, 197, 71, 0.1) !important; }
/* Home meal plan section */
[data-theme="dark"] .price-amount { color: var(--gold) !important; }
[data-theme="dark"] .plan-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .plan-btn:hover { background: linear-gradient(135deg, #9B4D57 0%, #722F37 100%) !important; box-shadow: 0 0 20px rgba(114, 47, 55, 0.4) !important; }
[data-theme="dark"] .meal-plan-card.popular .plan-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .popular-badge { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .view-all-plans-btn { color: var(--gold) !important; border-color: var(--gold) !important; background: transparent !important; }
[data-theme="dark"] .view-all-plans-btn:hover { background: #722F37 !important; color: var(--gold) !important; border-color: #722F37 !important; }
/* Home food gifts */
[data-theme="dark"] .gift-price { color: var(--gold) !important; }
[data-theme="dark"] .view-all-gifts-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .view-all-gifts-btn:hover { box-shadow: 0 0 20px rgba(114, 47, 55, 0.4) !important; }
[data-theme="dark"] .gift-occasion { background: var(--gold); color: #1a1a1a; }
/* Home founder section */
[data-theme="dark"] .founder-section-v2 { background: linear-gradient(135deg, #1a0a0e 0%, #121212 50%, #1a0a0e 100%) !important; }
[data-theme="dark"] .story-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .story-badge { background: var(--gold); color: #1a1a1a; }
[data-theme="dark"] .story-title { color: var(--gold) !important; }
[data-theme="dark"] .story-link { color: var(--gold) !important; background: rgba(232, 197, 71, 0.1) !important; }
[data-theme="dark"] .story-link:hover { background: #722F37 !important; color: var(--gold) !important; }
[data-theme="dark"] .values-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .values-title { color: var(--gold) !important; }
[data-theme="dark"] .values-title i { color: var(--gold); }
/* Home why-choose section icons */
[data-theme="dark"] .why-icon { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
/* Home testimonial section */
[data-theme="dark"] .testimonial-meal { color: var(--gold) !important; }
[data-theme="dark"] .testimonial-prev:hover, [data-theme="dark"] .testimonial-next:hover { background: #722F37 !important; border-color: #722F37 !important; color: var(--gold) !important; }
[data-theme="dark"] .testimonial-dots .dot.active { background: var(--gold) !important; }
/* Home instagram section */
[data-theme="dark"] .instagram-handle { color: var(--gold) !important; }
/* Home promo swiper pagination */
[data-theme="dark"] .promo-swiper-v2 .swiper-pagination-bullet-active { background: var(--gold) !important; }
[data-theme="dark"] .promo-swiper-v2 .swiper-button-next, [data-theme="dark"] .promo-swiper-v2 .swiper-button-prev { background: rgba(30, 30, 30, 0.8) !important; color: var(--gold) !important; }
/* Home hero buttons */
[data-theme="dark"] .hero-btn.primary { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4); }
[data-theme="dark"] .hero-btn.primary:hover { box-shadow: 0 6px 20px rgba(114, 47, 55, 0.6); }
/* Home referral section already has dark mode as default - light mode is the override */

/* ─── Addresses Page Dark Mode ─── */
[data-theme="dark"] .address-list-wrapper { background: var(--gray-100) !important; }
[data-theme="dark"] .address-table-header { background: var(--gray-200) !important; color: var(--text-secondary) !important; border-bottom-color: var(--gray-300) !important; }
[data-theme="dark"] .address-row { background: var(--gray-100) !important; border-bottom-color: var(--gray-200) !important; }
[data-theme="dark"] .address-row:hover { background: var(--gray-200) !important; }
[data-theme="dark"] .address-row.out-of-range { background: rgba(220, 53, 69, 0.08) !important; }
[data-theme="dark"] .address-row.is-default { background: rgba(232, 197, 71, 0.08) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .type-icon-wrapper { background: rgba(232, 197, 71, 0.1) !important; color: var(--gold) !important; }
[data-theme="dark"] .type-label { color: var(--text-secondary) !important; }
[data-theme="dark"] .default-badge { color: var(--gold) !important; }
[data-theme="dark"] .address-text { color: var(--text-primary) !important; }
[data-theme="dark"] .address-location { color: var(--text-muted) !important; }
[data-theme="dark"] .distance-text { color: var(--gold) !important; }
[data-theme="dark"] .info-pill { background: var(--gray-200) !important; color: var(--text-secondary) !important; }
[data-theme="dark"] .info-pill.fee { background: rgba(232, 197, 71, 0.1) !important; color: var(--gold) !important; }
[data-theme="dark"] .info-pill.time { background: rgba(23, 162, 184, 0.1) !important; color: #17A2B8 !important; }
[data-theme="dark"] .info-pill.range { background: rgba(40, 167, 69, 0.1) !important; color: #28A745 !important; }
[data-theme="dark"] .address-type-badge { color: var(--gold) !important; }
[data-theme="dark"] .default-tag { background: var(--gold) !important; color: #1a1a1a !important; }
[data-theme="dark"] .action-btn { border-color: var(--gray-300) !important; }
[data-theme="dark"] .action-btn.edit { background: rgba(23, 162, 184, 0.1) !important; color: #17A2B8 !important; }
[data-theme="dark"] .action-btn.default { background: rgba(232, 197, 71, 0.1) !important; color: var(--gold) !important; }
[data-theme="dark"] .action-btn.delete { background: rgba(220, 53, 69, 0.1) !important; color: #DC3545 !important; }
[data-theme="dark"] .empty-state { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .empty-icon { background: var(--gray-200) !important; color: var(--gray-400) !important; }
[data-theme="dark"] .modal-content { background: var(--bg-primary) !important; }
[data-theme="dark"] .modal-header h3 { color: var(--gold) !important; }
[data-theme="dark"] .btn-cancel { background: var(--gray-200) !important; color: var(--text-secondary) !important; }
[data-theme="dark"] .btn-cancel:hover { background: var(--gray-300) !important; }
[data-theme="dark"] .form-group label { color: var(--text-primary) !important; }
[data-theme="dark"] .type-btn { background: var(--gray-100) !important; color: var(--text-secondary) !important; border-color: var(--gray-300) !important; }
[data-theme="dark"] .type-btn.active { border-color: var(--gold) !important; color: var(--gold) !important; background: rgba(232, 197, 71, 0.08) !important; }
[data-theme="dark"] .fee-label { color: var(--text-muted) !important; }
[data-theme="dark"] .fee-value { color: var(--gold) !important; }
[data-theme="dark"] .distance-row { color: var(--gold) !important; }
[data-theme="dark"] .radius-warning { background: rgba(220, 53, 69, 0.1) !important; color: #DC3545 !important; border-color: rgba(220, 53, 69, 0.3) !important; }
[data-theme="dark"] .address-suggestions { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .suggestion-text { color: var(--text-primary) !important; }
[data-theme="dark"] .selected-address-display { background: rgba(232, 197, 71, 0.1) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .loading-spinner { border-color: var(--gray-200) !important; border-top-color: var(--gold) !important; }
[data-theme="dark"] .add-address-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .add-address-btn:hover { background: linear-gradient(135deg, #9B4D57 0%, #722F37 100%) !important; }

/* ─── Food Gifts Page Dark Mode ─── */
[data-theme="dark"] .gift-price { color: var(--gold) !important; }
[data-theme="dark"] .custom-gift-card h3 { color: var(--gold) !important; }
[data-theme="dark"] .simple-floating-cart { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .gift-detail-title { color: var(--gold) !important; }
[data-theme="dark"] .gift-detail-price { color: var(--gold) !important; }
[data-theme="dark"] .section-title { color: var(--text-primary) !important; }
[data-theme="dark"] .related-price { color: var(--gold) !important; }
[data-theme="dark"] .floating-cart-dropdown { background: var(--bg-primary) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .dropdown-item .item-price { color: var(--gold) !important; }
[data-theme="dark"] .btn-checkout { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }

/* ─── Item Page Dark Mode ─── */
[data-theme="dark"] .item-price { color: var(--gold) !important; }
[data-theme="dark"] .item-category { color: var(--gold) !important; }
[data-theme="dark"] .item-wishlist-btn { background: var(--gray-200) !important; color: var(--gold) !important; }
[data-theme="dark"] .item-stock-display.low-stock { color: #FFC107 !important; }
[data-theme="dark"] .item-stock-display.out-of-stock { color: #DC3545 !important; }
[data-theme="dark"] .item-stock-display:not(.low-stock):not(.out-of-stock) { color: #28A745 !important; }

/* ─── Cart Page Dark Mode ─── */
[data-theme="dark"] .cart-item-note { color: #FFC107 !important; background: rgba(255, 193, 7, 0.1) !important; }
[data-theme="dark"] .summary-row.note i { color: var(--gold) !important; }

/* ─── Checkout Page Dark Mode ─── */
[data-theme="dark"] .address-option.selected { border-color: var(--gold) !important; background: rgba(232, 197, 71, 0.05) !important; }
[data-theme="dark"] .address-check { color: var(--gold) !important; }
[data-theme="dark"] .address-fee-tag { color: var(--gold) !important; background: rgba(232, 197, 71, 0.1) !important; }
[data-theme="dark"] .wallet-amount { color: var(--gold) !important; }

/* ─── Order Details Page Dark Mode ─── */
[data-theme="dark"] .not-found-content h2 { color: var(--text-primary) !important; }
[data-theme="dark"] .not-found-content p { color: var(--text-secondary) !important; }
[data-theme="dark"] .btn-search { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .btn-back { background: var(--gray-200) !important; color: var(--text-secondary) !important; }
[data-theme="dark"] .btn-back:hover { background: var(--gray-300) !important; color: var(--gold) !important; }
[data-theme="dark"] .btn-home { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }
[data-theme="dark"] .progress-section { background: var(--gray-100) !important; }
[data-theme="dark"] .step-icon { background: var(--gray-300) !important; color: var(--text-muted) !important; }
[data-theme="dark"] .step.completed .step-icon { background: #722F37 !important; color: var(--gold) !important; }
[data-theme="dark"] .step.current .step-icon { background: var(--gold) !important; color: #1a1a1a !important; }
[data-theme="dark"] .step-label { color: var(--text-muted) !important; }
[data-theme="dark"] .step.completed .step-label { color: var(--gold) !important; }
[data-theme="dark"] .step.current .step-label { color: var(--gold) !important; }
[data-theme="dark"] .card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .item-count { color: var(--text-muted) !important; background: var(--gray-200) !important; }
[data-theme="dark"] .no-items { color: var(--text-muted) !important; }
[data-theme="dark"] .timeline-note { color: var(--text-secondary) !important; }
[data-theme="dark"] .summary-row { color: var(--text-secondary) !important; }
[data-theme="dark"] .summary-row.total { color: var(--text-primary) !important; border-top-color: var(--gold) !important; }
[data-theme="dark"] .driver-vehicle { color: var(--text-secondary) !important; }
[data-theme="dark"] .support-text p { color: var(--text-secondary) !important; }
[data-theme="dark"] .btn-outline { background: transparent !important; color: var(--gold) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .btn-outline:hover { background: var(--gold) !important; color: #1a1a1a !important; }

/* ─── Tracking Pages Dark Mode ─── */
[data-theme="dark"] .tracking-card,
[data-theme="dark"] .tracking-container,
[data-theme="dark"] .order-tracking-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .status-badge,
[data-theme="dark"] .tracking-status { color: var(--text-primary) !important; }
[data-theme="dark"] .status-pending { background: rgba(255, 193, 7, 0.15) !important; color: #FFC107 !important; }
[data-theme="dark"] .status-confirmed,
[data-theme="dark"] .status-processing { background: rgba(23, 162, 184, 0.15) !important; color: #17A2B8 !important; }
[data-theme="dark"] .status-delivered,
[data-theme="dark"] .status-completed { background: rgba(40, 167, 69, 0.15) !important; color: #28A745 !important; }
[data-theme="dark"] .status-cancelled,
[data-theme="dark"] .status-failed { background: rgba(220, 53, 69, 0.15) !important; color: #DC3545 !important; }

/* ─── Notifications Page Dark Mode ─── */
[data-theme="dark"] .notification-list-container { background: var(--gray-100) !important; }
[data-theme="dark"] .notification-item { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .notification-item:hover { background: var(--gray-200) !important; }
[data-theme="dark"] .notification-item-title { color: var(--text-primary) !important; }
[data-theme="dark"] .notification-item-text { color: var(--text-secondary) !important; }
[data-theme="dark"] .notification-item-time { color: var(--text-muted) !important; }
[data-theme="dark"] .notification-dot { background: #DC3545 !important; box-shadow: 0 0 6px rgba(220, 53, 69, 0.5) !important; }

/* ─── Preorder Page Dark Mode ─── */
[data-theme="dark"] .cancel-warning { background: rgba(220, 53, 69, 0.1) !important; border-color: rgba(220, 53, 69, 0.3) !important; }
[data-theme="dark"] .cancel-warning h4 { color: #DC3545 !important; }
[data-theme="dark"] .preorder-notice { background: rgba(255, 193, 7, 0.1) !important; border-color: rgba(255, 193, 7, 0.3) !important; }
[data-theme="dark"] .preorder-notice h4 { color: #FFC107 !important; }
[data-theme="dark"] .status-notice { background: rgba(23, 162, 184, 0.1) !important; color: #17A2B8 !important; border-color: rgba(23, 162, 184, 0.3) !important; }

/* ─── Meal Plans Dark Mode ─── */
[data-theme="dark"] .meal-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .meal-price { color: var(--gold) !important; }
[data-theme="dark"] .plan-status { background: var(--gray-200) !important; color: var(--text-secondary) !important; }

/* ─── Wallet Page Dark Mode ─── */
[data-theme="dark"] .wallet-action-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }

/* ─── Feature Unavailable Page Dark Mode ─── */
[data-theme="dark"] .feature-unavailable-icon { color: var(--gold) !important; }
[data-theme="dark"] .feature-unavailable-title { color: var(--text-primary) !important; }
[data-theme="dark"] .feature-unavailable-text { color: var(--text-secondary) !important; }
[data-theme="dark"] .feature-unavailable-btn { background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important; color: var(--gold) !important; }

/* ─── Menu Page Dark Mode ─── */
[data-theme="dark"] .menu-item-tag.tag-signature { background: var(--gold) !important; color: #1a1a1a !important; }
[data-theme="dark"] .menu-item-stock.low { color: #FFC107 !important; }
[data-theme="dark"] .menu-item-stock.in-stock { color: #28A745 !important; }

/* ─── Orders Page Dark Mode ─── */
[data-theme="dark"] .order-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .order-id { color: var(--text-primary) !important; }
[data-theme="dark"] .order-date { color: var(--text-muted) !important; }
[data-theme="dark"] .order-total { color: var(--gold) !important; }

/* ─── Gift Cart Dark Mode ─── */
[data-theme="dark"] .gift-cart-item { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .gift-cart-price { color: var(--gold) !important; }

/* ─── Profile & Settings Dark Mode ─── */
[data-theme="dark"] .profile-section { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .settings-group { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Wishlist Dark Mode ─── */
[data-theme="dark"] .wishlist-item { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .wishlist-price { color: var(--gold) !important; }

/* ─── Referral Dark Mode ─── */
[data-theme="dark"] .referral-code { color: var(--gold) !important; }
[data-theme="dark"] .referral-stats { background: var(--gray-100) !important; }

/* ─── Reservations Dark Mode ─── */
[data-theme="dark"] .reservation-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Catering Dark Mode ─── */
[data-theme="dark"] .catering-form { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── General Dark Mode Utility - Inline Style Overrides ─── */
/* Any element with inline burgundy color gets gold in dark mode */
[data-theme="dark"] [style*="color: #722F37"],
[data-theme="dark"] [style*="color:#722F37"],
[data-theme="dark"] [style*="color: #800020"],
[data-theme="dark"] [style*="color:#800020"],
[data-theme="dark"] [style*="color: var(--burgundy)"] {
    color: var(--gold) !important;
}
/* Any element with inline white/light background gets dark in dark mode */
[data-theme="dark"] [style*="background: white"],
[data-theme="dark"] [style*="background:white"],
[data-theme="dark"] [style*="background: #fff"],
[data-theme="dark"] [style*="background:#fff"],
[data-theme="dark"] [style*="background: #ffffff"],
[data-theme="dark"] [style*="background:#ffffff"],
[data-theme="dark"] [style*="background: #FFFFFF"] {
    background: var(--gray-100) !important;
}
/* Any element with inline dark text color gets light text in dark mode */
[data-theme="dark"] [style*="color: #333"],
[data-theme="dark"] [style*="color:#333"],
[data-theme="dark"] [style*="color: #555"],
[data-theme="dark"] [style*="color:#555"],
[data-theme="dark"] [style*="color: #666"],
[data-theme="dark"] [style*="color:#666"],
[data-theme="dark"] [style*="color: #888"],
[data-theme="dark"] [style*="color:#888"],
[data-theme="dark"] [style*="color: #999"],
[data-theme="dark"] [style*="color:#999"] {
    color: var(--text-secondary) !important;
}
/* Inline burgundy buttons get dark mode treatment */
[data-theme="dark"] [style*="background: #722F37"],
[data-theme="dark"] [style*="background:#722F37"],
[data-theme="dark"] [style*="background-color: #722F37"],
[data-theme="dark"] [style*="background-color:#722F37"],
[data-theme="dark"] [style*="background: var(--burgundy)"],
[data-theme="dark"] [style*="background-color: var(--burgundy)"] {
    background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important;
    background-color: #722F37 !important;
    color: var(--gold) !important;
}
/* Inline gold buttons stay gold but text becomes dark */
[data-theme="dark"] [style*="background: #A68A20"],
[data-theme="dark"] [style*="background:#A68A20"],
[data-theme="dark"] [style*="background: #c9a227"],
[data-theme="dark"] [style*="background:#c9a227"] {
    background: linear-gradient(135deg, #722F37 0%, #5A2429 100%) !important;
    color: var(--gold) !important;
}
/* Inline danger buttons */
[data-theme="dark"] [style*="background: red"],
[data-theme="dark"] [style*="background:red"],
[data-theme="dark"] [style*="background: #dc2626"],
[data-theme="dark"] [style*="background:#dc2626"] {
    background: #DC3545 !important;
    color: white !important;
}
/* Light background variants override */
[data-theme="dark"] [style*="background: #f8f9fa"],
[data-theme="dark"] [style*="background:#f8f9fa"],
[data-theme="dark"] [style*="background: #f5f5f5"],
[data-theme="dark"] [style*="background:#f5f5f5"],
[data-theme="dark"] [style*="background: #fdfdfd"],
[data-theme="dark"] [style*="background:#fdfdfd"],
[data-theme="dark"] [style*="background: #fffcf0"],
[data-theme="dark"] [style*="background:#fffcf0"],
[data-theme="dark"] [style*="background: #fff5f5"],
[data-theme="dark"] [style*="background:#fff5f5"],
[data-theme="dark"] [style*="background: #d4edda"],
[data-theme="dark"] [style*="background:#d4edda"],
[data-theme="dark"] [style*="background: #e8f5e9"],
[data-theme="dark"] [style*="background:#e8f5e9"],
[data-theme="dark"] [style*="background: #e3f2fd"],
[data-theme="dark"] [style*="background:#e3f2fd"],
[data-theme="dark"] [style*="background: #fff8e1"],
[data-theme="dark"] [style*="background:#fff8e1"],
[data-theme="dark"] [style*="background: #ffebee"],
[data-theme="dark"] [style*="background:#ffebee"],
[data-theme="dark"] [style*="background: #FFF3CD"],
[data-theme="dark"] [style*="background:#FFF3CD"],
[data-theme="dark"] [style*="background: #CCE5FF"],
[data-theme="dark"] [style*="background:#CCE5FF"],
[data-theme="dark"] [style*="background: #D4EDDA"],
[data-theme="dark"] [style*="background:#D4EDDA"],
[data-theme="dark"] [style*="background: #F8D7DA"],
[data-theme="dark"] [style*="background:#F8D7DA"],
[data-theme="dark"] [style*="background: #fef2f2"],
[data-theme="dark"] [style*="background:#fef2f2"] {
    background: var(--gray-100) !important;
}
/* Status badge inline style overrides for dark mode */
[data-theme="dark"] [style*="color: #856404"],
[data-theme="dark"] [style*="color:#856404"] { color: #FFC107 !important; }
[data-theme="dark"] [style*="color: #155724"],
[data-theme="dark"] [style*="color:#155724"] { color: #28A745 !important; }
[data-theme="dark"] [style*="color: #721c24"],
[data-theme="dark"] [style*="color:#721c24"] { color: #DC3545 !important; }
[data-theme="dark"] [style*="color: #004085"],
[data-theme="dark"] [style*="color:#004085"] { color: #17A2B8 !important; }
[data-theme="dark"] [style*="color: #c62828"],
[data-theme="dark"] [style*="color:#c62828"] { color: #DC3545 !important; }
[data-theme="dark"] [style*="color: #2e7d32"],
[data-theme="dark"] [style*="color:#2e7d32"] { color: #28A745 !important; }
[data-theme="dark"] [style*="color: #1565c0"],
[data-theme="dark"] [style*="color:#1565c0"] { color: #17A2B8 !important; }
[data-theme="dark"] [style*="color: #f57c00"],
[data-theme="dark"] [style*="color:#f57c00"] { color: #FFC107 !important; }
[data-theme="dark"] [style*="color: #dc2626"],
[data-theme="dark"] [style*="color:#dc2626"] { color: #DC3545 !important; }
/* Gold text on gold bg conflict fix */
[data-theme="dark"] [style*="color: #5a4a1a"],
[data-theme="dark"] [style*="color:#5a4a1a"] { color: #1a1a1a !important; }

/* ─── Gift Order Confirmation Dark Mode ─── */
[data-theme="dark"] .gift-order-confirm-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .gift-order-price { color: var(--gold) !important; }

/* ─── Careers Page Dark Mode ─── */
[data-theme="dark"] .career-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Contact Page Dark Mode ─── */
[data-theme="dark"] .contact-form-wrapper { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── About Page Dark Mode ─── */
[data-theme="dark"] .about-section-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Privacy & Terms Dark Mode ─── */
[data-theme="dark"] .legal-content { color: var(--text-secondary) !important; }

/* ─── Verification & Auth Alert Dark Mode ─── */
[data-theme="dark"] .auth-alert.error { background: rgba(220, 53, 69, 0.15) !important; color: #DC3545 !important; border-color: rgba(220, 53, 69, 0.3) !important; }
[data-theme="dark"] .auth-alert.error i { color: #DC3545 !important; }

/* ─── Forgot/Reset Password Dark Mode ─── */
[data-theme="dark"] .reset-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Email Verification Dark Mode ─── */
[data-theme="dark"] .verification-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }

/* ─── Subscription Pages Dark Mode ─── */
[data-theme="dark"] .subscription-card { background: var(--gray-100) !important; border-color: var(--gray-200) !important; }
[data-theme="dark"] .subscription-price { color: var(--gold) !important; }

/* ─── Inline style="color:#722F37" on any element ─── */
/* Override specific inline burgundy that appears in many pages */
[data-theme="dark"] span[style*="color: #722F37"],
[data-theme="dark"] span[style*="color:#722F37"],
[data-theme="dark"] div[style*="color: #722F37"],
[data-theme="dark"] div[style*="color:#722F37"],
[data-theme="dark"] p[style*="color: #722F37"],
[data-theme="dark"] p[style*="color:#722F37"],
[data-theme="dark"] h1[style*="color: #722F37"],
[data-theme="dark"] h1[style*="color:#722F37"],
[data-theme="dark"] h2[style*="color: #722F37"],
[data-theme="dark"] h2[style*="color:#722F37"],
[data-theme="dark"] h3[style*="color: #722F37"],
[data-theme="dark"] h3[style*="color:#722F37"],
[data-theme="dark"] i[style*="color: #722F37"],
[data-theme="dark"] i[style*="color:#722F37"],
[data-theme="dark"] a[style*="color: #722F37"],
[data-theme="dark"] a[style*="color:#722F37"] {
    color: var(--gold) !important;
}

/* ============================================
   MODERN RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Futuristic Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(114, 47, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

a:hover {
    color: var(--burgundy-dark);
}

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

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

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ============================================
   FUTURISTIC PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.preloader-logo span {
    color: var(--gold);
    filter: drop-shadow(0 0 20px var(--gold));
}

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

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    border-radius: 50%;
    animation: spinModern 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px var(--gold));
}

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

/* ============================================
   TOAST NOTIFICATIONS - GLASS MORPHISM
   ============================================ */
.toast-container {
    position: fixed;
    top: 90px;
    right: var(--spacing-md);
    z-index: var(--z-tooltip);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.toast {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--glass-shadow);
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 300px;
}

.toast.success { 
    background: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
    color: var(--success);
}

.toast.error { 
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: var(--danger);
}

.toast.warning { 
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #856404;
}

[data-theme="dark"] .toast.warning {
    color: var(--warning);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.app-content {
    flex: 1;
    padding-bottom: 120px;
    padding-left:15px;
    padding-right:15px;
}

/* ============================================
   GLASS MORPHISM HEADER - MOBILE ONLY
   ============================================ */
.app-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: var(--z-sticky);
    box-shadow: var(--glass-shadow);
}

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

.header-back {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    background: rgba(114, 47, 55, 0.05);
}

.header-back.visible {
    opacity: 1;
    visibility: visible;
}

.header-back:hover {
    background: rgba(114, 47, 55, 0.1);
    transform: translateX(-3px);
}

.app-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.app-logo .logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}
/* Light mode: show logo-light, hide logo-dark-mode */
.app-logo .logo-dark-mode,
.sidebar-logo .logo-dark-mode {
    display: none;
}
/* Dark mode: show logo-dark-mode, hide logo-light */
[data-theme="dark"] .app-logo .logo-light,
[data-theme="dark"] .sidebar-logo .logo-light {
    display: none;
}
[data-theme="dark"] .app-logo .logo-dark-mode,
[data-theme="dark"] .sidebar-logo .logo-dark-mode {
    display: block;
}

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

.header-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    background: transparent;
}

.header-btn:hover {
    background: rgba(114, 47, 55, 0.08);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.header-btn:active {
    transform: translateY(0) scale(0.95);
}

.header-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* Notification header badge - pill style */
.notification-header-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Theme toggle button in header */
.header-theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    background: transparent;
    cursor: pointer;
    border: none;
}

.header-theme-toggle:hover {
    background: rgba(114, 47, 55, 0.08);
    color: var(--burgundy);
    transform: translateY(-2px);
}

/* Sidebar theme toggle */
.sidebar-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: 0 1rem 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.2s;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-theme-toggle:hover {
    background: var(--gray-100);
    color: var(--burgundy);
}

[data-theme="dark"] .sidebar-theme-toggle {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

/* ============================================
   FUTURISTIC BOTTOM NAVIGATION - MOBILE ONLY
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 600px;
    height: 70px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: var(--z-fixed);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    position: relative;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all var(--transition-base);
}

.nav-item:hover {
    color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.nav-item.active {
    color: var(--burgundy);
}

.nav-item.active i {
    animation: navIconBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-glow-burgundy);
}

.nav-badge {
    position: absolute;
    top: 4px;
    right: 12px;
    min-width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

/* ============================================
   DESKTOP SIDEBAR - HIDDEN ON MOBILE
   ============================================ */
.desktop-sidebar {
    display: none;
}

/* ============================================
   HERO SECTION - MODERN OVERLAY
   ============================================ */
.home-hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.home-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(114,47,55,0.3) 0%, 
        rgba(114,47,55,0.7) 70%,
        rgba(114,47,55,0.95) 100%
    );
    backdrop-filter: blur(2px);
}

.home-hero-content {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 15px;
    padding: var(--spacing-xl) var(--spacing-lg);
    color: #FFFFFF;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-glow);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.home-hero h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.home-hero h1 span {
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.5));
}

.home-hero p {
    font-size: 0.95rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ============================================
   QUICK ACTIONS - GLASSMORPHISM CARDS
   ============================================ */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.quick-action-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.quick-action:hover .quick-action-icon {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.quick-action:active .quick-action-icon {
    transform: translateY(-4px) scale(1);
}

.quick-action-icon.red {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

.quick-action-icon.gold {
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.quick-action-icon.wine {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 50%, var(--burgundy-dark) 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

.quick-action-icon.grey {
    background: linear-gradient(135deg, #616161, #424242);
    color: #FFFFFF;
    box-shadow: var(--shadow-lg);
}

.quick-action span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

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

.section-header.centered {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.section-header.centered .section-title {
    font-size: 1.6rem;
}

.section-header.centered .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-link {
    font-size: 0.9rem;
    color: var(--burgundy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
}

.section-link:hover {
    gap: 8px;
}

/* ============================================
   SCROLL CONTAINER - SMOOTH SCROLLING
   ============================================ */
.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md) var(--spacing-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

/* ============================================
   CATEGORY PILLS - GLASSMORPHISM
   ============================================ */
.category-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    scroll-snap-align: start;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    text-decoration: none;
}

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

.category-pill.active {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
    transform: translateY(-2px);
}

/* ============================================
   HOME MENU SECTION - INLINE FILTERS
   ============================================ */
.home-menu-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.home-menu-filters {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    scrollbar-width: none;
}

.home-menu-filters::-webkit-scrollbar {
    display: none;
}

.home-menu-filter {
    flex-shrink: 0;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.home-menu-filter:hover {
    background: rgba(114, 47, 55, 0.05);
    border-color: var(--burgundy);
}

.home-menu-filter.active {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
}

/* Home Menu List Style */
.home-menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.home-menu-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    position: relative;
}

[data-theme="dark"] .home-menu-item {
    border-color: var(--gray-200);
}

.home-menu-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.home-menu-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.home-menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.home-menu-item:hover .home-menu-item-img img {
    transform: scale(1.1);
}

.home-menu-item-content {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
}

.home-menu-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-menu-item-category {
    font-size: 0.75rem;
    color: var(--burgundy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.home-menu-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
}

.home-menu-item-wishlist {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    background: var(--gray-100);
    transition: all var(--transition-base);
}

[data-theme="dark"] .home-menu-item-wishlist {
    background: var(--gray-200);
}

.home-menu-item-wishlist:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.home-menu-item-wishlist.active {
    color: var(--danger);
}

.home-menu-item-wishlist.active i {
    font-weight: 900;
}

.home-menu-item-add {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.home-menu-item-add:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

.home-menu-empty {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-muted);
}

.see-all-btn {
    display: block;
    text-align: center;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    color: var(--burgundy);
    font-weight: 600;
    transition: all var(--transition-base);
}

.see-all-btn:hover {
    color: var(--burgundy-dark);
}

/* ============================================
   FEATURED CARDS - MODERN DESIGN
   ============================================ */
.featured-card {
    flex-shrink: 0;
    width: 240px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
}

[data-theme="dark"] .featured-card {
    border-color: var(--gray-200);
}

.featured-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.featured-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.featured-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-card:hover .featured-img img {
    transform: scale(1.1) rotate(2deg);
}

.featured-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.featured-content {
    padding: var(--spacing-lg);
}

.featured-category {
    font-size: 0.75rem;
    color: var(--burgundy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.featured-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.featured-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.featured-rating i {
    color: var(--gold);
    font-size: 0.75rem;
    filter: drop-shadow(0 0 4px rgba(201, 162, 39, 0.3));
}

.featured-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy);
}

/* ============================================
   OFFER CARD - FUTURISTIC GRADIENT
   ============================================ */
.offer-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: 0 var(--spacing-md);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow-burgundy);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

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

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--burgundy-dark);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.offer-content {
    flex: 1;
    z-index: 1;
}

.offer-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.offer-content p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.offer-btn {
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
    z-index: 1;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 8px 20px rgba(201, 162, 39, 0.4);
}

/* ============================================
   POPULAR GRID - MODERN CARDS
   ============================================ */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.popular-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
}

[data-theme="dark"] .popular-card {
    border-color: var(--gray-200);
}

.popular-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.popular-img {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.popular-img::after {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
}

.popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.popular-card:hover .popular-img img {
    transform: scale(1.15);
}

.popular-content {
    padding: var(--spacing-md);
}

.popular-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.popular-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy);
}

.popular-add {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.popular-add:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

/* Wishlist button on popular cards */
.popular-wishlist {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.popular-wishlist:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.popular-wishlist.active {
    color: var(--danger);
}

/* ============================================
   MENU PAGE - ENHANCED CARDS
   ============================================ */
.menu-header {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
    text-align: center;
}

.menu-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.menu-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.menu-categories {
    margin-bottom: var(--spacing-lg);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.menu-item-card {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .menu-item-card {
    border-color: var(--gray-200);
}

.menu-item-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(4px);
}

.menu-item-img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-item-card:hover .menu-item-img img {
    transform: scale(1.1);
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: var(--radius-xl);
}

.menu-item-content {
    flex: 1;
    padding-right: 50px;
}

.menu-item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--burgundy);
}

.menu-item-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.menu-item-rating i {
    color: var(--gold);
    filter: drop-shadow(0 0 4px rgba(201, 162, 39, 0.3));
}

.menu-item-add {
    position: absolute;
    right: var(--spacing-md);
    bottom: var(--spacing-md);
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.menu-item-add:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

.menu-item-wishlist {
    position: absolute;
    right: var(--spacing-md);
    top: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

[data-theme="dark"] .menu-item-wishlist {
    background: var(--gray-200);
}

.menu-item-wishlist:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.menu-item-wishlist.active {
    color: var(--danger);
}

/* ============================================
   CART PAGE - MODERN STYLING
   ============================================ */
.page-header {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.page-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cart-items {
    padding: 0 var(--spacing-md);
}

.cart-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .cart-item {
    border-color: var(--gray-200);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-content {
    flex: 1;
}

.cart-item-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 1rem;
    color: var(--burgundy);
    font-weight: 700;
}

.cart-item-extras,
.cart-item-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--radius-full);
    padding: 4px;
}

[data-theme="dark"] .quantity-control {
    background: var(--gray-200);
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--bg-primary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.qty-btn:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    transform: scale(1.1);
}

.qty-value {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
}

.remove-btn {
    color: var(--danger);
    font-size: 0.9rem;
    padding: 8px;
    transition: all var(--transition-fast);
}

.remove-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--spacing-sm);
}

.discount-section {
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.discount-form {
    display: flex;
    gap: var(--spacing-sm);
}

.discount-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .discount-form input {
    border-color: var(--gray-300);
}

.discount-form input:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

.discount-applied {
    color: var(--success) !important;
    margin-top: 8px;
    padding: 10px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
}

.discount-error {
    color: var(--danger) !important;
    margin-top: 8px;
    padding: 10px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
}

.cart-summary {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: 0 var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .cart-summary {
    border-color: var(--gray-200);
}

.cart-summary h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.summary-row.total {
    border-top: 2px solid var(--gray-200);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-lg);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-row.discount {
    color: var(--success);
}

.cart-actions {
    padding: 0 var(--spacing-md) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* ============================================
   MODERN BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-burgundy);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--shadow-lg), var(--shadow-glow-burgundy);
    transform: translateY(-3px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #C82333);
    color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-lg);
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-xl), var(--shadow-glow-burgundy);
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   SEARCH MODAL - GLASSMORPHISM
   ============================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: var(--glass-bg);
    z-index: var(--z-modal);
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
}

.search-modal.active {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--glass-border);
}

.search-close {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.search-close:hover {
    background: rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
}

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

.search-results {
    height: calc(100% - 76px);
    overflow-y: auto;
    padding: var(--spacing-md);
}

.search-empty {
    text-align: center;
    padding: var(--spacing-4xl);
    color: var(--text-muted);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .search-result-item {
    border-color: var(--gray-300);
}

.search-result-item:hover {
    background: var(--gray-50);
}

[data-theme="dark"] .search-result-item:hover {
    background: var(--gray-200);
}

/* ============================================
   FORMS - MODERN DESIGN
   ============================================ */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    border-color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

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

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

.form-divider {
    height: 2px;
    background: var(--gradient-primary);
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-full);
    opacity: 0.2;
}

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

.toggle-switch {
    position: relative;
    width: 58px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 15px;
    bottom: 35px;
    background: linear-gradient(135deg, #C8C8C8, #B0B0B0);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(145deg, #FFFFFF, #F0F0F0);
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow-burgundy);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

/* ============================================
   AUTH PAGES - GLASSMORPHISM
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

.auth-container {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .auth-container {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.auth-logo {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(114, 47, 55, 0.2);
}

.auth-logo span {
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.4));
}

.auth-header h1 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-icon input {
    padding-left: 52px;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    padding: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-password:hover {
    color: var(--burgundy);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
}

.forgot-link {
    font-size: 0.95rem;
    color: var(--burgundy);
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--burgundy);
    font-weight: 700;
}

/* ============================================
   PROFILE PAGE - MODERN DESIGN
   ============================================ */
.profile-header {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--gradient-primary);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.profile-email {
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 1;
}

.loyalty-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .loyalty-card {
    border-color: var(--gray-200);
}

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

.loyalty-header h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
}

.loyalty-header .points {
    font-weight: 700;
    color: var(--burgundy);
}

.progress-bar {
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.loyalty-benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--burgundy);
    font-weight: 600;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    text-align: center;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .stat-card {
    border-color: var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

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

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.profile-menu {
    padding: 0 var(--spacing-md);
}

.profile-menu .menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .profile-menu .menu-item {
    border-color: var(--gray-200);
}

.profile-menu .menu-item:hover {
    background: var(--gray-50);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .profile-menu .menu-item:hover {
    background: var(--gray-200);
}

.menu-icon {
    width: 48px;
    height: 48px;
    background: rgba(114, 47, 55, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.menu-text {
    flex: 1;
}

.menu-title {
    font-weight: 600;
    display: block;
    font-size: 1rem;
}

.menu-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.profile-footer {
    padding: var(--spacing-xl) var(--spacing-md);
}

/* ============================================
   ORDERS PAGE
   ============================================ */
.order-tabs {
    display: flex;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-md);
    overflow-x: auto;
}

.order-tab {
    padding: 12px 24px;
    background: var(--bg-primary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-base);
}

[data-theme="dark"] .order-tab {
    border-color: var(--gray-300);
}

.order-tab.active {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
    box-shadow: var(--shadow-md), var(--shadow-glow-burgundy);
}

.orders-list {
    padding: 0 var(--spacing-md);
}

.order-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .order-card {
    border-color: var(--gray-200);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.order-number {
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-status {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pending { 
    background: linear-gradient(135deg, #FFF3CD, #FFE69C);
    color: #856404;
}

.status-processing, .status-confirmed, .status-preparing { 
    background: linear-gradient(135deg, #CCE5FF, #B8DAFF);
    color: #004085;
}

.status-ready, .status-out_for_delivery { 
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.status-delivered { 
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.status-cancelled { 
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
}

.order-items {
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .order-items {
    border-color: var(--gray-200);
}

.order-item-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.order-more {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
}

.order-total {
    font-size: 1rem;
    color: var(--text-secondary);
}

.order-total strong {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-left: 6px;
}

.order-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .app-header {
        height: 80px;
        padding: 0 var(--spacing-xl);
    }
    
    .app-logo .logo-img {
        height: 48px;
    }
    
    .header-btn {
        width: 48px;
        height: 48px;
    }
    
    .home-hero {
        height: 450px;
        border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    }
    
    .home-hero h1 {
        font-size: 3rem;
    }
    
    .quick-actions {
        max-width: 900px;
        margin: -70px auto 0;
        padding: var(--spacing-xl);
    }
    
    .quick-action-icon {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
    
    .section {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--spacing-2xl);
    }
    
    .featured-card {
        width: 280px;
    }
    
    .popular-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hide bottom nav on tablet */
    .bottom-nav {
        display: none;
    }
    
    /* Show header on tablet */
    .app-header {
        display: flex;
    }
    
    /* Adjust content padding */
    .app-content {
        padding-bottom: var(--spacing-xl);
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    /* Desktop Sidebar - Show only on desktop */
    .desktop-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: var(--sidebar-width);
        height: 100vh;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        background: var(--glass-bg);
        border-right: 1px solid var(--glass-border);
        z-index: var(--z-fixed);
        box-shadow: var(--shadow-lg);
    }
    
    .sidebar-header {
        padding: var(--spacing-xl);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .sidebar-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    .sidebar-logo .logo-img {
        height: 150px;
        width: auto;
        object-fit: contain;
    }
    
    .sidebar-nav {
        flex: 1;
        padding: var(--spacing-md);
        overflow-y: auto;
    }
    
    .sidebar-link {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        padding: 16px 20px;
        border-radius: var(--radius-lg);
        color: var(--text-secondary);
        font-weight: 600;
        transition: all var(--transition-base);
        margin-bottom: var(--spacing-xs);
        text-decoration: none;
    }
    
    .sidebar-link:hover {
        background: rgba(114, 47, 55, 0.08);
        color: var(--burgundy);
        transform: translateX(4px);
    }
    
    .sidebar-link.active {
        background: var(--gradient-primary);
        color: #FFFFFF;
        box-shadow: var(--shadow-md), var(--shadow-glow-burgundy);
    }
    
    .sidebar-link i {
        width: 24px;
        text-align: center;
        font-size: 1.2rem;
    }
    
    .sidebar-badge {
        margin-left: auto;
        background: var(--gradient-gold);
        color: var(--burgundy-dark);
        padding: 4px 12px;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        box-shadow: var(--shadow-glow);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
    }
    
    .sidebar-badge.cart-badge {
        background: var(--gradient-gold);
        color: var(--burgundy-dark);
    }
    
    .sidebar-divider {
        height: 1px;
        background: var(--glass-border);
        margin: var(--spacing-md) 0;
    }
    
    .sidebar-footer {
        padding: var(--spacing-md);
        border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    }
    
    .sidebar-promo {
        display: none;
    }
    
    .sidebar-promo h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .sidebar-promo p {
        font-size: 0.85rem;
        opacity: 0.95;
        margin-bottom: var(--spacing-md);
    }
    
    .app-badges {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .app-badge {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        background: rgba(255,255,255,0.2);
        padding: 10px 14px;
        border-radius: var(--radius-md);
        font-size: 0.8rem;
        color: #FFFFFF;
        font-weight: 600;
        backdrop-filter: blur(10px);
        transition: all var(--transition-fast);
        text-decoration: none;
    }
    
    .app-badge:hover {
        background: rgba(255,255,255,0.3);
        transform: translateX(4px);
    }
    
    /* Adjust container for sidebar */
    .app-container {
        margin-left: var(--sidebar-width);
    }
    
    /* Hide mobile header on desktop */
    .app-header {
        display: none;
    }
    
    .home-hero {
        height: 550px;
    }
    
    .home-hero h1 {
        font-size: 3.5rem;
    }
    
    .popular-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .home-hero {
        height: 650px;
    }
    
    .home-hero h1 {
        font-size: 4rem;
    }
    
    .popular-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Desktop Back Button */
.desktop-back-btn {
    display: none;
}
@media (min-width: 1024px) {
    .desktop-back-btn {
        display: flex;
        position: relative;
        margin-bottom: 10px;
        padding-left: 5px;
    }
    .desktop-back-btn button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--glass-bg);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        color: var(--burgundy);
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: var(--shadow-sm);
    }
    .desktop-back-btn button:hover {
        background: var(--burgundy);
        color: #fff;
        transform: translateX(-3px);
        box-shadow: var(--shadow-md);
    }
    .desktop-back-btn button i {
        font-size: 0.85rem;
    }
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.mb-0 { margin-bottom: 35px; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.hidden { display: none; }
.pb-safe { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* Apply animations to elements */
.animated-on-scroll {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ITEM PAGE
   ============================================ */
.item-page {
    padding-bottom: var(--spacing-2xl);
}

.item-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.item-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-wishlist-btn {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.item-wishlist-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.item-wishlist-btn.active {
    color: var(--danger);
}

.item-content {
    padding: var(--spacing-lg);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.item-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.item-category {
    font-size: 0.8rem;
    color: var(--burgundy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.item-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.item-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.item-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
}

.item-rating i {
    color: var(--gold);
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-lg);
}

.item-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.item-extras h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .extra-item {
    border-color: var(--gray-200);
}

.extra-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.extra-price {
    font-weight: 600;
    color: var(--burgundy);
}

.item-quantity {
    margin: var(--spacing-xl) 0;
}

.item-quantity h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quantity-selector .qty-btn {
    width: 48px;
    height: 48px;
}

.quantity-selector .qty-value {
    font-size: 1.2rem;
    min-width: 48px;
}

.special-instructions {
    margin-bottom: var(--spacing-xl);
}

.special-instructions textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    resize: none;
    height: 100px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .special-instructions textarea {
    border-color: var(--gray-300);
}

.special-instructions textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}

.add-to-cart-btn {
    position: fixed;
    bottom: 35px;
    left: 0;
    right: 15px;
    padding: var(--spacing-md);
    background: var(--bg-primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

@media (min-width: 1024px) {
    .add-to-cart-btn {
        left: var(--sidebar-width);
        border-radius: var(--radius-xl);
        margin: 0 var(--spacing-xl) var(--spacing-xl);
        position: sticky;
        bottom: var(--spacing-xl);
    }
}

.add-to-cart-btn .total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.add-to-cart-btn .btn {
    flex: 1;
    max-width: 200px;
}

/* Reviews Section */
.item-reviews {
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.item-reviews h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.review-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: var(--spacing-sm);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    padding-bottom: var(--spacing-2xl);
}

.checkout-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: 0 var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.checkout-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.address-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

[data-theme="dark"] .address-card {
    border-color: var(--gray-300);
}

.address-card.selected {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.address-card:hover {
    border-color: var(--burgundy);
}

.address-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

[data-theme="dark"] .address-icon {
    background: var(--gray-200);
}

.address-info {
    flex: 1;
}

.address-type {
    font-weight: 700;
    color: var(--text-primary);
}

.address-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

[data-theme="dark"] .payment-method {
    border-color: var(--gray-300);
}

.payment-method.selected {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.payment-method:hover {
    border-color: var(--burgundy);
}

.payment-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

[data-theme="dark"] .payment-icon {
    background: var(--gray-200);
}

.payment-info {
    flex: 1;
}

.payment-name {
    font-weight: 700;
    color: var(--text-primary);
}

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

/* ============================================
   SETTINGS PAGE
   ============================================ */
.settings-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.settings-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .settings-item {
    border-color: var(--gray-200);
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-info {
    flex: 1;
}

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

.settings-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   NOTIFICATIONS PAGE
   ============================================ */
.notifications-list {
    padding: 0 var(--spacing-md);
}

.notification-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: 5px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.notification-item.unread {
    border-left: 2px solid var(--burgundy);
    background:red;
    color:white;
}

.notification-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-icon.info {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info);
}

.notification-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.notification-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   WISHLIST PAGE
   ============================================ */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.wishlist-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.wishlist-img {
    height: 140px;
    overflow: hidden;
}

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

.wishlist-content {
    padding: var(--spacing-md);
}

.wishlist-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wishlist-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
}

.wishlist-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.wishlist-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}

.wishlist-remove {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    transition: all var(--transition-base);
}

.wishlist-remove:hover {
    transform: scale(1.1);
}

/* ============================================
   RESERVATIONS PAGE
   ============================================ */
.reservation-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.reservation-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.reservation-time {
    color: var(--text-secondary);
}

.reservation-details {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .reservation-details {
    border-color: var(--gray-200);
}

.reservation-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.reservation-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* ============================================
   ABOUT & INFO PAGES
   ============================================ */
.info-page {
    padding: var(--spacing-xl) var(--spacing-md);
}

.info-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.info-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.info-content ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.info-content li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.info-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

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

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

/* ============================================
   CAREERS PAGE
   ============================================ */
.jobs-list {
    padding: 0 var(--spacing-md);
}

.job-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.job-type {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.job-meta i {
    color: var(--text-muted);
    margin-right: 4px;
}

.immediate-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ============================================
   CATERING PAGE
   ============================================ */
.catering-options {
    display: grid;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.catering-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.catering-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.catering-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: #FFFFFF;
}

.catering-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.catering-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   COMPREHENSIVE INNER PAGES STYLING
   Version: 3.2.0 - Complete Inner Pages Design
   ============================================ */

/* ============================================
   TOGGLE SWITCH - FIXED WHITE ON WHITE
   ============================================ */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 34px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 15px;
    bottom: 35px;
    background: linear-gradient(135deg, #BDBDBD, #9E9E9E);
    border-radius: 34px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 2px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #722F37, #5A2429);
    box-shadow: 0 0 20px rgba(114, 47, 55, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.2);
}

/* Dark mode toggle */
[data-theme="dark"] .toggle-slider {
    background: linear-gradient(135deg, #505050, #3A3A3A);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .toggle-slider::before {
    background: linear-gradient(145deg, #FAFAFA, #E8E8E8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SETTINGS PAGE - MODERN DESIGN
   ============================================ */
.settings-page {
    padding-bottom: var(--spacing-2xl);
}

.settings-sections {
    padding: 0 var(--spacing-md);
}

.settings-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .settings-section {
    border-color: var(--gray-200);
}

.settings-section h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--burgundy);
    background: var(--gradient-glass);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .settings-section h3 {
    border-color: var(--gray-200);
}

.settings-section h3 i {
    width: 24px;
    text-align: center;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .setting-item {
    border-color: var(--gray-200);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item:hover {
    background: var(--gray-50);
}

[data-theme="dark"] .setting-item:hover {
    background: var(--gray-200);
}

.setting-item.static {
    background: transparent;
}

.setting-info {
    flex: 1;
}

.setting-title {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.setting-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.setting-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .setting-link {
    border-color: var(--gray-200);
}

.setting-link:last-child {
    border-bottom: none;
}

.setting-link:hover {
    background: var(--gray-50);
    padding-left: calc(var(--spacing-lg) + 6px);
}

[data-theme="dark"] .setting-link:hover {
    background: var(--gray-200);
}

.setting-link span {
    font-weight: 500;
}

.setting-link i {
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.setting-link:hover i {
    color: var(--burgundy);
    transform: translateX(4px);
}

.setting-link.text-danger span {
    color: var(--danger);
}

.settings-footer {
    padding: var(--spacing-xl) var(--spacing-md);
}

/* ============================================
   NOTIFICATIONS PAGE - MODERN DESIGN
   ============================================ */
.notifications-page {
    padding-bottom: var(--spacing-2xl);
}

.notifications-list {
    padding: 0 var(--spacing-md);
}

.notification-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

[data-theme="dark"] .notification-item {
    border-color: var(--gray-200);
}

.notification-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.notification-item.unread {
    background: rgba(255, 159, 75, 0.31);
    border: 1px solid red;
    color:white;
}
}

[data-theme="dark"] .notification-item.unread {
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold);
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.notification-icon.type-order {
    background: linear-gradient(135deg, #CCE5FF, #B8DAFF);
    color: #004085;
}

.notification-icon.type-promotion {
    background: linear-gradient(135deg, #FFF3CD, #FFE69C);
    color: #856404;
}

.notification-icon.type-reservation {
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.notification-icon.type-system {
    background: linear-gradient(135deg, #E2E3E5, #D3D6D8);
    color: #383D41;
}

.notification-icon.type-info {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

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

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

.notification-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mark-read-btn {
    width: 100px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--success);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.notification-item.unread:hover .mark-read-btn {
    opacity: 1;
}

.mark-read-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   RESERVATIONS PAGE - MODERN DESIGN
   ============================================ */
.reservations-page {
    padding-bottom: var(--spacing-2xl);
}

.reservation-form-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    margin: 0 var(--spacing-md) var(--spacing-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .reservation-form-card {
    border-color: var(--gray-200);
}

.reservation-form-card .form-header {
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: var(--spacing-lg);
}

.reservation-form-card .form-header h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    margin: 0;
}

.reservation-form {
    padding: var(--spacing-lg);
}

.upcoming-reservations {
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.upcoming-reservations h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.reservations-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.reservation-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .reservation-card {
    border-color: var(--gray-200);
}

.reservation-date {
    width: 60px;
    text-align: center;
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.reservation-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.reservation-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.reservation-info {
    flex: 1;
}

.time-guests {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 4px;
}

.time-guests span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.time-guests i {
    color: var(--burgundy);
}

.occasion {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.restaurant-info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    margin: 0 var(--spacing-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .restaurant-info-card {
    border-color: var(--gray-200);
}

.restaurant-info-card h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--burgundy);
}

.hours-list {
    margin-bottom: var(--spacing-md);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

[data-theme="dark"] .hours-row {
    border-color: var(--gray-200);
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--burgundy);
    width: 20px;
}

/* ============================================
   ADDRESSES PAGE - MODERN DESIGN
   ============================================ */
.addresses-page {
    padding-bottom: var(--spacing-2xl);
}

.addresses-list {
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.address-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

[data-theme="dark"] .address-card {
    border-color: var(--gray-200);
}

.address-card:hover {
    box-shadow: var(--shadow-md);
}

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

.address-type {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.address-type i {
    color: var(--burgundy);
}

.default-badge {
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.address-body {
    margin-bottom: var(--spacing-md);
}

.address-text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.address-city {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.address-instructions {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-100);
}

[data-theme="dark"] .address-instructions {
    border-color: var(--gray-200);
}

.address-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ============================================
   WISHLIST PAGE - MODERN DESIGN
   ============================================ */
.wishlist-page {
    padding-bottom: var(--spacing-2xl);
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.wishlist-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all var(--transition-base);
}

[data-theme="dark"] .wishlist-card {
    border-color: var(--gray-200);
}

.wishlist-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.wishlist-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    z-index: 2;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.wishlist-remove:hover {
    transform: scale(1.1);
    background: var(--danger);
    color: #FFFFFF;
}

.wishlist-img {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.wishlist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.wishlist-card:hover .wishlist-img img {
    transform: scale(1.1);
}

.wishlist-content {
    padding: var(--spacing-md);
}

.wishlist-category {
    font-size: 0.7rem;
    color: var(--burgundy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.wishlist-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wishlist-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   ABOUT PAGE - MODERN DESIGN
   ============================================ */
.about-page {
    padding-bottom: var(--spacing-2xl);
}

.about-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-content {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 15px;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #FFFFFF;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.about-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.about-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .about-card {
    border-color: var(--gray-200);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .value-item {
    border-color: var(--gray-200);
}

.value-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.award-item {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .award-item {
    border-color: var(--gray-200);
}

.award-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.award-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.award-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.team-member p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   CONTACT PAGE - MODERN DESIGN
   ============================================ */
.contact-page {
    padding-bottom: var(--spacing-2xl);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.contact-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

[data-theme="dark"] .contact-card {
    border-color: var(--gray-200);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

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

.contact-form-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-form-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .contact-form {
    border-color: var(--gray-200);
}

.map-section {
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.map-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

.social-section {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.social-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.tiktok {
    background: #000000;
}

[data-theme="dark"] .social-link.tiktok {
    background: #FFFFFF;
    color: #000000;
}

/* ============================================
   MODAL - MODERN DESIGN
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-2xl);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .modal-header {
    border-color: var(--gray-200);
}

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

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .modal-close {
    background: var(--gray-200);
}

.modal-close:hover {
    background: var(--danger);
    color: #FFFFFF;
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    padding: var(--spacing-lg);
    border-top: 1px solid var(--gray-100);
}

[data-theme="dark"] .modal-footer {
    border-color: var(--gray-200);
}

/* ============================================
   STATUS BADGES - UNIFIED
   ============================================ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pending {
    background: linear-gradient(135deg, #FFF3CD, #FFE69C);
    color: #856404;
}

.status-confirmed, .status-preparing {
    background: linear-gradient(135deg, #CCE5FF, #B8DAFF);
    color: #004085;
}

.status-ready, .status-delivered {
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.status-cancelled {
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
}

/* ============================================
   PAYMENT STATUS
   ============================================ */
.payment-status {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.payment-pending {
    background: var(--gray-100);
    color: var(--text-secondary);
}

.payment-paid {
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.payment-failed, .payment-refunded {
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
}

/* ============================================
   CHECKOUT PAGE IMPROVEMENTS
   ============================================ */
.checkout-page {
    padding-bottom: var(--spacing-2xl);
}

.checkout-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    margin: 0 var(--spacing-md) var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .checkout-section {
    border-color: var(--gray-200);
}

.checkout-section-header {
    background: var(--gradient-glass);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

[data-theme="dark"] .checkout-section-header {
    border-color: var(--gray-200);
}

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

.checkout-section-header i {
    color: var(--burgundy);
}

.checkout-section-body {
    padding: var(--spacing-lg);
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .delivery-option {
    border-color: var(--gray-300);
}

.delivery-option:hover {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.03);
}

.delivery-option.selected {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.delivery-option input {
    display: none;
}

.delivery-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.delivery-option.selected .delivery-radio {
    border-color: var(--burgundy);
    background: var(--burgundy);
}

.delivery-option.selected .delivery-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
}

.delivery-info {
    flex: 1;
}

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

.delivery-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.delivery-price {
    font-weight: 700;
    color: var(--burgundy);
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .time-slot {
    border-color: var(--gray-300);
}

.time-slot:hover {
    border-color: var(--burgundy);
}

.time-slot.selected {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE FIXES FOR INNER PAGES
   ============================================ */
@media (min-width: 768px) {
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .about-hero {
        height: 400px;
    }
    
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .checkout-page {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
    
    .checkout-section {
        margin: 0;
    }
}

/* ============================================
   WALLET PAGE - MODERN DESIGN
   ============================================ */
.wallet-page {
    padding-bottom: var(--spacing-2xl);
}

.wallet-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: 0 var(--spacing-md) var(--spacing-lg);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow-burgundy);
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

.wallet-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.wallet-balance {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.wallet-actions {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.wallet-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.points-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md) var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .points-card {
    border-color: var(--gray-200);
}

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

.points-header h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.points-header h3 i {
    color: var(--gold);
}

.points-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.points-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.redeem-section {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

[data-theme="dark"] .redeem-section {
    background: var(--gray-100);
}

.redeem-section label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.redeem-row {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.redeem-row input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .redeem-row input {
    border-color: var(--gray-300);
}

.redeem-row input:focus {
    outline: none;
    border-color: var(--burgundy);
}

.transactions-list {
    padding: 0 var(--spacing-md);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

[data-theme="dark"] .transaction-item {
    border-color: var(--gray-200);
}

.transaction-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.transaction-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.transaction-icon.credit {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
    color: var(--success);
}

.transaction-icon.debit {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    color: var(--danger);
}

.transaction-icon.points {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    color: var(--gold);
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.transaction-amount {
    font-weight: 700;
    font-size: 1rem;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--danger);
}

/* Quick amounts for deposit */
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.quick-amount {
    padding: 14px;
    text-align: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .quick-amount {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.quick-amount:hover {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.quick-amount.selected {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
}

/* Wallet info in checkout */
.wallet-balance-info {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.wallet-info-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.wallet-info-row .wallet-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    color: var(--burgundy-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wallet-info-row .wallet-details {
    flex: 1;
}

.wallet-info-row .wallet-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.wallet-info-row .wallet-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.wallet-sufficient {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.wallet-insufficient {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Points info in checkout */
.points-info-checkout {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.points-info-checkout i {
    color: var(--gold);
}

.points-info-checkout strong {
    color: var(--burgundy);
}

/* Notification types for wallet and points */
.notification-icon.type-wallet {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    color: var(--gold);
}

.notification-icon.type-points {
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.15), rgba(114, 47, 55, 0.05));
    color: var(--burgundy);
}

.notification-icon.type-payment {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
    color: var(--success);
}

/* ============================================
   EDIT PROFILE PAGE - MODERN DESIGN
   ============================================ */
.edit-profile-page {
    padding-bottom: var(--spacing-2xl);
}

.edit-profile-form {
    padding: 0 var(--spacing-md);
}

.edit-profile-form .form-group {
    margin-bottom: var(--spacing-lg);
}

.edit-profile-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.edit-profile-form input,
.edit-profile-form textarea,
.edit-profile-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

[data-theme="dark"] .edit-profile-form input,
[data-theme="dark"] .edit-profile-form textarea,
[data-theme="dark"] .edit-profile-form select {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.edit-profile-form input:focus,
.edit-profile-form textarea:focus,
.edit-profile-form select:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

.edit-profile-form input:disabled {
    background: var(--gray-100);
    color: var(--text-muted);
    cursor: not-allowed;
}

.edit-profile-form small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.edit-profile-form .form-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--spacing-xl) 0;
}

.edit-profile-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.edit-profile-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* ============================================
   LEGAL PAGES - PRIVACY & TERMS
   ============================================ */
.legal-page {
    padding-bottom: var(--spacing-3xl);
}

.legal-content {
    padding: 0 var(--spacing-md);
}

.legal-content section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .legal-content section {
    border-color: var(--gray-200);
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-100);
}

[data-theme="dark"] .legal-content h2 {
    border-color: var(--gray-200);
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    list-style: none;
    padding-left: var(--spacing-md);
}

.legal-content li {
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

.legal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: bold;
}

.legal-content li strong {
    color: var(--text-primary);
}

/* ============================================
   ORDER DETAILS / TRACKING PAGE
   ============================================ */
.order-details-page {
    padding-bottom: var(--spacing-2xl);
}

.order-status-header {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--gradient-primary);
    margin: 0 0 var(--spacing-lg) 0;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    color: #FFFFFF;
}

.order-status-header .status-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.order-status-header .status-icon.delivered {
    background: rgba(40, 167, 69, 0.3);
}

.order-status-header .status-icon.cancelled {
    background: rgba(220, 53, 69, 0.3);
}

.order-status-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-transform: capitalize;
}

.order-status-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Order Progress */
.order-progress {
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md) var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.order-progress .progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

[data-theme="dark"] .order-progress .progress-bar {
    background: var(--gray-300);
}

.order-progress .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
}

.progress-steps .step-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

[data-theme="dark"] .progress-steps .step-icon {
    background: var(--gray-300);
}

.progress-steps .step.completed .step-icon {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-burgundy);
}

.progress-steps .step span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.progress-steps .step.completed span {
    color: var(--burgundy);
}

/* Order Section */
.order-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .order-section {
    border-color: var(--gray-200);
}

.order-section h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .order-section h3 {
    border-color: var(--gray-200);
}

.delivery-info .address {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.delivery-info .instructions {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Order Items List */
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

[data-theme="dark"] .order-item-row {
    background: var(--gray-100);
}

.order-item-row .item-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-row .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-row .item-details {
    flex: 1;
    min-width: 0;
}

.order-item-row .item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.order-item-row .item-extras {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-item-row .item-qty {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-item-row .item-price {
    font-weight: 700;
    color: var(--burgundy);
    font-size: 0.95rem;
}

/* Payment Summary */
.payment-summary {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.payment-summary .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
}

.payment-summary .summary-row.discount {
    color: var(--success);
}

.payment-summary .summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-xs);
    border-top: 2px solid var(--gray-200);
}

.payment-method {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .payment-method {
    border-color: var(--gray-200);
}

.payment-method i {
    color: var(--burgundy);
    margin-right: var(--spacing-xs);
}

/* Order Actions Footer */
.order-actions-footer {
    display: flex;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.order-actions-footer .btn {
    flex: 1;
}

/* ============================================
   WALLET / BALANCE PAGE
   ============================================ */
.wallet-page {
    padding-bottom: var(--spacing-2xl);
}

.wallet-card {
    margin: 0 var(--spacing-md) var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

.wallet-card .wallet-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.wallet-card .wallet-balance {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.wallet-card .wallet-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.wallet-card .wallet-btn {
    flex: 1;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.wallet-card .wallet-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Points Card */
.points-card {
    margin: 0 var(--spacing-md) var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .points-card {
    border-color: var(--gray-200);
}

.points-card .points-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.points-card .points-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.points-card .points-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.points-card .redeem-section {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
}

[data-theme="dark"] .points-card .redeem-section {
    border-color: var(--gray-200);
}

.points-card .redeem-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.points-card .redeem-row {
    display: flex;
    gap: var(--spacing-sm);
}

.points-card .redeem-row input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.points-card .redeem-row button {
    padding: 12px 24px;
}

/* Transactions List */
.transactions-list {
    padding: 0 var(--spacing-md);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .transaction-item {
    border-color: var(--gray-200);
}

.transaction-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.transaction-icon.credit {
    background: linear-gradient(135deg, #D4EDDA, #C3E6CB);
    color: #155724;
}

.transaction-icon.debit {
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
    color: #721C24;
}

.transaction-icon.points {
    background: linear-gradient(135deg, #FFF3CD, #FFE69C);
    color: #856404;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.transaction-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--danger);
}

/* ============================================
   POINTS REDEMPTION INFO
   ============================================ */
.points-info-card {
    margin: 0 var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, #FFF3CD, #FFE69C);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    color: #856404;
}

.points-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.points-info-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.points-info-card .conversion-rate {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    font-weight: 700;
}

.points-info-card .conversion-rate i {
    font-size: 1.2rem;
}

/* ============================================
   DEPOSIT SECTION
   ============================================ */
.deposit-section {
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.deposit-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

[data-theme="dark"] .deposit-card {
    border-color: var(--gray-200);
}

.deposit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.quick-amount {
    padding: var(--spacing-md);
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .quick-amount {
    border-color: var(--gray-300);
}

.quick-amount:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.quick-amount.selected {
    background: var(--gradient-primary);
    border-color: var(--burgundy);
    color: #FFFFFF;
}

/* ============================================
   MODAL ENHANCEMENTS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content.modal-lg {
    max-width: 600px;
}

.modal-content.modal-sm {
    max-width: 360px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .modal-header {
    border-color: var(--gray-200);
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .modal-close {
    background: var(--gray-200);
}

.modal-close:hover {
    background: var(--danger);
    color: #FFFFFF;
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    padding: var(--spacing-lg);
    border-top: 1px solid var(--gray-100);
}

[data-theme="dark"] .modal-footer {
    border-color: var(--gray-200);
}

/* ============================================
   SETTINGS SECTION ENHANCED
   ============================================ */
.settings-section .setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

[data-theme="dark"] .settings-section .setting-item {
    border-color: var(--gray-200);
}

.settings-section .setting-item:last-child {
    border-bottom: none;
}

.settings-section .setting-item.static {
    background: var(--gray-50);
}

[data-theme="dark"] .settings-section .setting-item.static {
    background: var(--gray-100);
}

.setting-info {
    flex: 1;
    padding-right: var(--spacing-md);
}

.setting-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.setting-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.setting-value {
    font-weight: 600;
    color: var(--burgundy);
}

.setting-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .setting-link {
    border-color: var(--gray-200);
}

.setting-link:hover {
    background: var(--gray-50);
}

[data-theme="dark"] .setting-link:hover {
    background: var(--gray-100);
}

.setting-link.text-danger {
    color: var(--danger);
}

.settings-footer {
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* ============================================
   FORM ENHANCEMENTS
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ============================================
   FILE UPLOAD
   ============================================ */
.file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

[data-theme="dark"] .file-upload-area {
    border-color: var(--gray-400);
}

.file-upload-area:hover {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.02);
}

.file-upload-area i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.file-upload-area p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.file-upload-area small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.file-upload-area.dragover {
    border-color: var(--burgundy);
    background: rgba(114, 47, 55, 0.05);
}

.image-preview {
    margin-top: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.image-preview .remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--danger);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
}

/* ============================================
   RESPONSIVE FIXES FOR NEW PAGES
   ============================================ */
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .edit-profile-form .form-actions {
        flex-direction: row;
    }
    
    .order-actions-footer {
        padding: 0 var(--spacing-lg);
    }
    
    .progress-steps .step span {
        font-size: 0.8rem;
    }
}
**
 * Diomie Gourmet Kitchen - Futuristic Ultra-Modern Stylesheet
 * Version: 3.1.0 - Fixed dark mode, responsive design, and desktop sidebar
 */

/* ============================================
   CSS VARIABLES - ENHANCED
   ============================================ */
:root {
    /* Brand Colors - Your Original Palette */
    --burgundy: #722F37;
    --burgundy-dark: #5A2429;
    --burgundy-light: #8B3D47;
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #A68A20;
    --champagne: #F7E7CE;
    --wine: #722F37;
    --cream: #FFF8F0;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;
    
    /* Status Colors */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    
    /* Typography */
    --font-primary: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing System */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;
    
    /* Border Radius - More Futuristic */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    /* Shadows - Enhanced Depth */
    --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.04), 0 1px 3px rgba(114, 47, 55, 0.06);
    --shadow-md: 0 4px 16px rgba(114, 47, 55, 0.08), 0 2px 8px rgba(114, 47, 55, 0.06);
    --shadow-lg: 0 12px 40px rgba(114, 47, 55, 0.12), 0 4px 16px rgba(114, 47, 55, 0.08);
    --shadow-xl: 0 24px 60px rgba(114, 47, 55, 0.16), 0 8px 24px rgba(114, 47, 55, 0.12);
    --shadow-2xl: 0 40px 80px rgba(114, 47, 55, 0.2), 0 16px 40px rgba(114, 47, 55, 0.14);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);
    --shadow-glow-burgundy: 0 0 40px rgba(114, 47, 55, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Transitions - Smooth & Buttery */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(114, 47, 55, 0.1);
    
    /* Layout */
    --container-max: 1400px;
    --sidebar-width: 280px;
    --header-height: 70px;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 700;
    
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-muted: #9E9E9E;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
}

/* ============================================
   DARK THEME - COMPLETE OVERRIDE
   ============================================ */
[data-theme="dark"] {
    --burgundy: #9B4D57;
    --burgundy-dark: #722F37;
    --burgundy-light: #B85D68;
    --gold: #E8C547;
    --gold-light: #F0D060;
    --gold-dark: #D4AF37;
    --cream: #121212;
    --champagne: #1E1E1E;
    
    /* Neutrals - Inverted */
    --white: #1A1A1A;
    --gray-50: #1E1E1E;
    --gray-100: #252525;
    --gray-200: #303030;
    --gray-300: #3D3D3D;
    --gray-400: #525252;
    --gray-500: #757575;
    --gray-600: #9E9E9E;
    --gray-700: #BDBDBD;
    --gray-800: #E0E0E0;
    --gray-900: #F5F5F5;
    --black: #FFFFFF;
    
    /* Glass Morphism - Dark */
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-secondary: #BDBDBD;
    --text-muted: #757575;
    
    /* Background Colors */
    --bg-primary: #1A1A1A;
    --bg-secondary: #121212;
    --bg-tertiary: #1E1E1E;
    
    /* Shadows - Darker */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 197, 71, 0.3);
    --shadow-glow-burgundy: 0 0 40px rgba(232, 197, 71, 0.2);
    
    /* Gradients - Gold dominant with burgundy accent */
    --gradient-primary: linear-gradient(135deg, #E8C547 0%, #D4AF37 50%, #9B4D57 100%);
}

/* ============================================
   MODERN RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ============================================
   HIDDEN SCROLLBARS - Swipe-like Scrolling
   ============================================ */
/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container::-webkit-scrollbar,
.overflow-auto::-webkit-scrollbar,
.overflow-scroll::-webkit-scrollbar,
.scrollable::-webkit-scrollbar,
[style*="overflow"]:not([style*="hidden"])::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-container,
.overflow-auto,
.overflow-scroll,
.scrollable {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Global hidden scrollbar utility class */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Make specific containers scrollable with hidden scrollbars */
.menu-items-container,
.cart-items-container,
.order-items-container,
.items-list,
.transactions-list,
.notifications-list,
.categories-scroll,
.gallery-container,
.modal-body,
.dropdown-menu,
.sidebar-nav,
.scroll-x,
.scroll-y {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.menu-items-container::-webkit-scrollbar,
.cart-items-container::-webkit-scrollbar,
.order-items-container::-webkit-scrollbar,
.items-list::-webkit-scrollbar,
.transactions-list::-webkit-scrollbar,
.notifications-list::-webkit-scrollbar,
.categories-scroll::-webkit-scrollbar,
.gallery-container::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar,
.sidebar-nav::-webkit-scrollbar,
.scroll-x::-webkit-scrollbar,
.scroll-y::-webkit-scrollbar {
    display: none;
}

/* ============================================
   MOBILE HEADER BALANCE
   ============================================ */
.mobile-header-balance {
    position: absolute;
    top: 100%;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px 6px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    font-size: 10px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--glass-border);
    border-top: none;
    z-index: 99;
}

.balance-divider {
    position: absolute;
    top: 0;
    left: 8px;
    right: 8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    border: none;
    margin: 0;
}

.balance-label {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


[data-theme="dark"] .balance-label {
    color: #fff;
    font-weight: 600;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}



.balance-amount {
    color: var(--gold-dark);
    font-size: 10px;
}

[data-theme="dark"] .balance-amount {
    color: var(--gold);
    font-size: 10px;
}


/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-header-balance {
        display: none !important;
    }
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover {
    background: rgba(114, 47, 55, 0.08);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle:hover .hamburger span {
    background: var(--burgundy);
}

/* Mobile Slide Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

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

.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 999;
    overflow-y: auto;
}

.mobile-slide-menu.active {
    right: 0;
    transform: translateX(0);
}

.mobile-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-slide-menu-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--burgundy);
}

.mobile-slide-menu-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-slide-menu-close:hover {
    background: var(--burgundy);
    color: white;
}

.mobile-slide-menu-content {
    padding: var(--spacing-md);
}

.menu-section {
    margin-bottom: var(--spacing-lg);
}

.menu-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-base);
}

.menu-link:hover {
    background: rgba(114, 47, 55, 0.05);
    color: var(--burgundy);
}

.menu-link i {
    width: 20px;
    text-align: center;
    color: var(--burgundy);
}

/* Hide mobile menu toggle and slide menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-slide-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   DARK MODE ADDITIONAL FIXES
   ============================================ */

/* Prices use gold in dark mode */
[data-theme="dark"] .item-price,
[data-theme="dark"] .menu-item-price,
[data-theme="dark"] .cart-item-price,
[data-theme="dark"] .total-row span:last-child,
[data-theme="dark"] .grand-total span:last-child,
[data-theme="dark"] .subtotal-amount,
[data-theme="dark"] .price-display,
[data-theme="dark"] .delivery-fee-box .fee-value,
[data-theme="dark"] .wallet-amount,
[data-theme="dark"] .checkout-section .item-price,
[data-theme="dark"] .order-item-row .item-price {
    color: var(--gold) !important;
}

/* Our Story section - dark mode fix */
[data-theme="dark"] .founder-section-v2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%) !important;
}
[data-theme="dark"] .story-card {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--gray-300) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}
[data-theme="dark"] .story-title {
    color: var(--gold) !important;
}
[data-theme="dark"] .story-text {
    color: var(--text-secondary) !important;
}
[data-theme="dark"] .story-link {
    color: var(--gold) !important;
    background: rgba(232, 197, 71, 0.08) !important;
}
[data-theme="dark"] .story-link:hover {
    background: var(--gold) !important;
    color: var(--burgundy-dark) !important;
}
[data-theme="dark"] .founder-decor-1 {
    background: var(--burgundy) !important;
    opacity: 0.06 !important;
}
[data-theme="dark"] .founder-decor-2 {
    background: var(--gold) !important;
    opacity: 0.08 !important;
}
[data-theme="dark"] .values-card {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--gray-300) !important;
    color: var(--text-primary) !important;
}
[data-theme="dark"] .values-title {
    color: var(--gold) !important;
}
[data-theme="dark"] .values-list li {
    color: var(--text-secondary) !important;
}
