/* ==========================================================================
   🎨 PREMIUM WARM EARTHY DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. Foundational Design Tokens */
:root {
    /* Color Palette */
    --primary: #B85D3B;          /* Sizzling Terracotta / Burnt Orange */
    --primary-hover: #9E4C33;    /* Muted Deep Terracotta */
    --secondary: #D4AF37;        /* Warm Gold / Amber Accent */
    --bg-sand: #F7F3EE;          /* Creamy Sandstone / Linen Background */
    --bg-sand-light: #FDFBF8;    /* Pure Soft Alabaster */
    --text-dark: #2A1F1A;        /* Rich Earthy Espresso Brown */
    --text-light: #6E5A4E;       /* Warm Soft Clay / Muted Espresso */
    --card-bg: #FFFFFF;
    --card-border: #E8DFD5;      /* Subtle Earthy Linen Border */
    --whatsapp: #25D366;         /* Official WhatsApp Green */
    --whatsapp-hover: #1EBE57;
    --veg-green: #27AE60;
    --nonveg-red: #C0392B;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-marcellus: 'Marcellus', serif;
    
    /* Shadow & Glassmorphic Elevation */
    --shadow-sm: 0 4px 6px -1px rgba(42, 31, 26, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(42, 31, 26, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(42, 31, 26, 0.12);
    --shadow-premium: 0 30px 60px -15px rgba(42, 31, 26, 0.15);
    --glass-bg: rgba(253, 251, 248, 0.85);
    --glass-border: rgba(232, 223, 213, 0.6);
    
    /* Layout & Border Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Dynamic Themes --- */
body[data-theme="tuscan-vineyard"] {
    --primary: #881337;          /* Deep Tuscan Wine / Barolo Burgundy */
    --primary-hover: #700F2D;    /* Aged Reserve Merlot */
    --secondary: #D97706;        /* Sun-drenched Terracotta Gold */
    --bg-sand: #FDFBF7;          /* Travertine Stone White */
    --bg-sand-light: #FFFFFF;    /* Pure Alabaster */
    --text-dark: #2C181D;        /* Deep Wine Espresso */
    --text-light: #7A5A60;       /* Muted Vineyard Slate */
    --card-bg: #FFFFFF;
    --card-border: #EBE3E0;
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(235, 227, 224, 0.6);
}

body[data-theme="matcha-olive"] {
    --primary: #3F6212;          /* Rich Olive Grove / Ceremonial Matcha */
    --primary-hover: #36530F;    /* Deep Forest Olive */
    --secondary: #CA8A04;        /* Wildflower Honey */
    --bg-sand: #F7F9F6;          /* Crisp Sage Linen */
    --bg-sand-light: #FCFDFC;    /* Pure Morning Mist */
    --text-dark: #1A2315;        /* Deep Forest Bark */
    --text-light: #5A6555;       /* Muted Sage Clay */
    --card-bg: #FFFFFF;
    --card-border: #E3E8E1;
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(227, 232, 225, 0.6);
}

/* 2. Global Resets & Scrollbars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-sand);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-sand);
}
::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

button {
    font-family: var(--font-sans);
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

input, select {
    font-family: var(--font-sans);
    outline: none;
}

/* 3. Utility Styles */
.highlight-terracotta {
    color: var(--primary);
    font-family: var(--font-serif);
    font-style: italic;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 93, 59, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(184, 93, 59, 0.15);
    margin-bottom: 20px;
}

.dietary-tag, .dietary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.dietary-tag.veg {
    background: rgba(39, 174, 96, 0.08);
    color: var(--veg-green);
    border: 1px solid rgba(39, 174, 96, 0.15);
}
.dietary-tag.non-veg {
    background: rgba(192, 57, 43, 0.08);
    color: var(--nonveg-red);
    border: 1px solid rgba(192, 57, 43, 0.15);
}
.dietary-tag.vegan {
    background: rgba(39, 174, 96, 0.08);
    color: var(--veg-green);
    border: 1px solid rgba(39, 174, 96, 0.15);
}

.dietary-badge.veg {
    background: rgba(253, 251, 248, 0.95);
    color: var(--veg-green);
    border: 1px solid var(--veg-green);
    font-weight: 700;
    padding: 6px 12px;
}
.dietary-badge.non-veg {
    background: rgba(253, 251, 248, 0.95);
    color: var(--nonveg-red);
    border: 1px solid var(--nonveg-red);
    font-weight: 700;
    padding: 6px 12px;
}
.dietary-badge.vegan {
    background: rgba(253, 251, 248, 0.95);
    color: var(--veg-green);
    border: 1px solid var(--veg-green);
    font-weight: 700;
    padding: 6px 12px;
}

/* 4. Real-Time Ticker & Navigation */
.top-ticker {
    background: var(--primary);
    color: var(--bg-sand-light);
    height: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1000;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerLoop 30s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes tickerLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 900;
    padding: 15px 0;
    transition: var(--transition);
}

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

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

.brand-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(184, 93, 59, 0.08);
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 93, 59, 0.15);
}

.brand-title {
    font-family: var(--font-marcellus);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.brand-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-ai-host {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-sand-light);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(184, 93, 59, 0.2);
}

.btn-ai-host:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 93, 59, 0.3);
}

.btn-cart {
    position: relative;
    background: var(--card-bg);
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.btn-cart:hover {
    background: var(--bg-sand);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-bg);
}

/* 5. Floating AI Voice Welcome Widget */
.ai-voice-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 800;
    max-width: 320px;
    transition: var(--transition);
}

.ai-voice-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    overflow: hidden;
}

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

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--veg-green);
    border-radius: var(--radius-full);
    border: 2px solid var(--card-bg);
}

.ai-voice-info {
    display: flex;
    flex-direction: column;
}

.ai-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.ai-status {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-voice-toggle {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(184, 93, 59, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-voice-toggle:hover {
    background: var(--primary);
    color: white;
}

.audio-visualizer {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    padding: 0 10px;
    justify-content: center;
}

.audio-visualizer.active {
    display: flex;
}

.audio-visualizer .bar {
    width: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulseWave 1s ease-in-out infinite;
}

/* Give columns varied heights & delays */
.audio-visualizer .bar:nth-child(1) { height: 10%; animation-delay: 0.1s; }
.audio-visualizer .bar:nth-child(2) { height: 40%; animation-delay: 0.3s; }
.audio-visualizer .bar:nth-child(3) { height: 80%; animation-delay: 0.5s; }
.audio-visualizer .bar:nth-child(4) { height: 60%; animation-delay: 0.2s; }
.audio-visualizer .bar:nth-child(5) { height: 30%; animation-delay: 0.4s; }
.audio-visualizer .bar:nth-child(6) { height: 90%; animation-delay: 0.7s; }
.audio-visualizer .bar:nth-child(7) { height: 50%; animation-delay: 0.1s; }
.audio-visualizer .bar:nth-child(8) { height: 20%; animation-delay: 0.6s; }
.audio-visualizer .bar:nth-child(9) { height: 70%; animation-delay: 0.3s; }

@keyframes pulseWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

/* 6. Hero & Bestseller Section */
.hero-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-marcellus);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary-lg, .btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.btn-primary-lg {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 93, 59, 0.3);
}

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

.btn-secondary-lg:hover {
    background: var(--bg-sand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary);
}

/* "Today's Best Seller 🔥" Card */
.hero-bestseller-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.hero-bestseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px -20px rgba(42, 31, 26, 0.18);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF4500, var(--primary));
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bestseller-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.hero-bestseller-card:hover .bestseller-img {
    transform: scale(1.05);
}

.live-order-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(42, 31, 26, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bestseller-info {
    padding: 25px;
}

.bestseller-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.bestseller-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bestseller-price {
    font-family: var(--font-marcellus);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.bestseller-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.bestseller-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-quick-add {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 93, 59, 0.15);
}

.btn-quick-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 93, 59, 0.25);
}

/* 7. General Section Layout headers */
.section-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-marcellus);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* 8. AI Mood-Based Food Curator */
.mood-section {
    padding: 80px 0;
    background: var(--bg-sand-light);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.mood-chips-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.mood-chip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.mood-chip:hover, .mood-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 93, 59, 0.2);
}

.mood-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.mood-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

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

.mood-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mood-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mood-card:hover .mood-card-image img {
    transform: scale(1.05);
}

.mood-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(253, 251, 248, 0.95);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--card-border);
}

.mood-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mood-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.mood-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mood-card-price {
    font-family: var(--font-marcellus);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.mood-card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.ai-curator-note {
    background: rgba(184, 93, 59, 0.05);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-add-combo {
    width: 100%;
    background: var(--card-bg);
    color: var(--primary);
    border: 1px dashed var(--primary);
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-combo:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
}

/* 9. Smart Menu Section */
.menu-section {
    padding: 80px 0;
}

.menu-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.menu-tab {
    background: var(--bg-sand);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tab:hover, .menu-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(184, 93, 59, 0.2);
}

.menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.dietary-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    box-shadow: var(--shadow-sm);
}

.menu-item-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

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

.menu-item-price {
    font-family: var(--font-marcellus);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-whatsapp-add {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-hover));
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

/* 10. Reels & Ambience Section + AI Review Summary */
.reels-section {
    background: var(--bg-sand-light);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 80px 0;
}

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

.reels-header-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.ai-review-summary-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 4px solid var(--primary);
}

.ai-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.ai-summary-text {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.ai-summary-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
}

.rating-highlight i {
    color: var(--secondary);
}

.recommend-badge i {
    color: var(--veg-green);
}

.reels-scroll-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reel-card {
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.reel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 31, 26, 0.9) 20%, rgba(42, 31, 26, 0.2) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0.9;
    transition: var(--transition);
}

.reel-card:hover .reel-thumbnail {
    transform: scale(1.05);
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

.reel-play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.reel-card:hover .reel-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.reel-caption {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 11. Online Table Booking Section */
.booking-section {
    padding: 100px 0;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch; /* Stretches left and right columns to equal height */
}

.booking-left-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.booking-image-side {
    position: relative;
    height: 280px; /* Reduced fixed height to accommodate the perks card below it */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    flex-shrink: 0;
}

.booking-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-location-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    flex-grow: 1; /* stretches to match the height of the right form */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.location-header .panel-section-title {
    margin-bottom: 0;
}

.location-landmark {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(184, 93, 59, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.location-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1); /* Matches the vintage cream luxurious look of the restaurant website */
}

.location-details-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.address-text strong {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.address-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.address-text p i {
    color: var(--primary);
    font-size: 0.85rem;
}

.btn-get-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-get-directions:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.location-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.btn-call-restaurant, .btn-wa-restaurant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: white;
}

.btn-call-restaurant {
    background: #2a1f1a;
}

.btn-call-restaurant:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-wa-restaurant {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-hover));
}

.btn-wa-restaurant:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.mt-4 {
    margin-top: 1.5rem;
}

.booking-perk-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.perk-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(184, 93, 59, 0.08);
    padding: 12px;
    border-radius: var(--radius-md);
}

.perk-info h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.perk-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.booking-form-side {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.booking-title {
    font-family: var(--font-marcellus);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select {
    border: 1px solid var(--card-border);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    background: var(--bg-sand-light);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 93, 59, 0.08);
}

/* Time & Seating Custom Pill Controls */
/* Premium Dropdown Styles */
.premium-dropdown {
    position: relative;
    width: 100%;
}

.premium-dropdown-trigger {
    border: 1px solid var(--card-border);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    background: var(--bg-sand-light);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.premium-dropdown:hover .premium-dropdown-trigger {
    border-color: var(--primary);
}

.premium-dropdown.active .premium-dropdown-trigger {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 93, 59, 0.08);
}

.premium-dropdown-trigger .arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.premium-dropdown.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.premium-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-dropdown.active .premium-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.dropdown-item i {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(184, 93, 59, 0.06);
    color: var(--primary);
}

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

.dropdown-item.active {
    background: var(--primary);
    color: white;
}

.dropdown-item.active i {
    color: white;
}

/* Interactive Clock Time Picker Styles */
.interactive-clock-selector-container {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    background: var(--bg-sand-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-top: 5px;
}

.bistro-clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bistro-clock-face {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 4px double var(--primary);
    background: var(--card-bg);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05), var(--shadow-sm);
}

.clock-pivot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: calc(50% - 1.5px);
    width: 3px;
    border-radius: var(--radius-full);
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.hour-hand {
    height: 32px;
    background: var(--primary);
    width: 3.5px;
    left: calc(50% - 1.75px);
}

.minute-hand {
    height: 45px;
    background: var(--text-dark);
    width: 1.5px;
    left: calc(50% - 0.75px);
}

/* Radical placement for clock hour digits */
.clock-digit {
    --scale: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.clock-digit:hover {
    color: var(--primary);
    --scale: 1.25;
}

.clock-digit.active {
    color: var(--primary);
    font-weight: 900;
    --scale: 1.15;
    text-shadow: 0 0 6px rgba(184, 93, 59, 0.3);
}

.clock-digit.d-12 { transform: translate(-50%, -50%) rotate(0deg) translateY(-42px) rotate(0deg) scale(var(--scale)); }
.clock-digit.d-1  { transform: translate(-50%, -50%) rotate(30deg) translateY(-42px) rotate(-30deg) scale(var(--scale)); }
.clock-digit.d-2  { transform: translate(-50%, -50%) rotate(60deg) translateY(-42px) rotate(-60deg) scale(var(--scale)); }
.clock-digit.d-3  { transform: translate(-50%, -50%) rotate(90deg) translateY(-42px) rotate(-90deg) scale(var(--scale)); }
.clock-digit.d-4  { transform: translate(-50%, -50%) rotate(120deg) translateY(-42px) rotate(-120deg) scale(var(--scale)); }
.clock-digit.d-5  { transform: translate(-50%, -50%) rotate(150deg) translateY(-42px) rotate(-150deg) scale(var(--scale)); }
.clock-digit.d-6  { transform: translate(-50%, -50%) rotate(180deg) translateY(-42px) rotate(-180deg) scale(var(--scale)); }
.clock-digit.d-7  { transform: translate(-50%, -50%) rotate(210deg) translateY(-42px) rotate(-210deg) scale(var(--scale)); }
.clock-digit.d-8  { transform: translate(-50%, -50%) rotate(240deg) translateY(-42px) rotate(-240deg) scale(var(--scale)); }
.clock-digit.d-9  { transform: translate(-50%, -50%) rotate(270deg) translateY(-42px) rotate(-270deg) scale(var(--scale)); }
.clock-digit.d-10 { transform: translate(-50%, -50%) rotate(300deg) translateY(-42px) rotate(-300deg) scale(var(--scale)); }
.clock-digit.d-11 { transform: translate(-50%, -50%) rotate(330deg) translateY(-42px) rotate(-330deg) scale(var(--scale)); }

.clock-time-badge {
    background: var(--primary);
    color: white;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Slots Scroll list on the right */
.clock-slots-scroll {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.slot-group-title {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.clock-slot-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.clock-slot-chip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.clock-slot-chip:hover {
    background: rgba(184, 93, 59, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.clock-slot-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
    .interactive-clock-selector-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.seating-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.seating-pill {
    background: var(--bg-sand);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seating-pill:hover {
    background: rgba(184, 93, 59, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.seating-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(184, 93, 59, 0.15);
}

.btn-submit-booking {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 93, 59, 0.2);
    margin-top: 10px;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 93, 59, 0.3);
}

/* 12. Footer Section */
.footer-section {
    background: var(--text-dark);
    color: var(--bg-sand-light);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(232, 223, 213, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    border-bottom: 1px solid rgba(253, 251, 248, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    color: white;
}

.footer-logo .brand-title {
    color: white;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 251, 248, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(253, 251, 248, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-marcellus);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(253, 251, 248, 0.7);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(253, 251, 248, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact p i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(253, 251, 248, 0.5);
}

/* 13. Dynamic Drawer Panels (Overlay + Core) */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 26, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.drawer-container {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -460px;
    width: 100%;
    max-width: 440px;
    background: var(--bg-sand-light);
    box-shadow: -10px 0 30px rgba(42, 31, 26, 0.15);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-overlay.active .drawer-container {
    right: 0;
}

.drawer-header {
    padding: 25px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
}

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

.whatsapp-header-icon {
    font-size: 2.2rem;
    color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.08);
    padding: 8px;
    border-radius: var(--radius-md);
}

.drawer-title {
    font-family: var(--font-marcellus);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.drawer-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-close-drawer {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-sand);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-close-drawer:hover {
    background: var(--primary);
    color: white;
}

/* WhatsApp Cart Drawer Inner Styles */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    background: var(--bg-sand);
}

.empty-cart-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--card-border);
    margin-bottom: 15px;
}

.empty-cart-state h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.empty-cart-state p {
    font-size: 0.82rem;
    margin-top: 4px;
    max-width: 220px;
}

.cart-item-row {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    padding-right: 20px;
}

.cart-item-price {
    font-family: var(--font-marcellus);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.cart-item-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-qty {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--bg-sand);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 1px solid var(--card-border);
}

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

.cart-item-qty-val {
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-remove-item {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-remove-item:hover {
    color: var(--nonveg-red);
}
.cart-footer {
    padding: 24px;
    background: #FFFDFC;
    border-top: 1px solid var(--card-border);
    box-shadow: 0 -12px 30px rgba(42, 31, 26, 0.08); /* Lifted upward shadow */
    z-index: 10;
}

/* Beautiful section headers inside cart drawer footer */
.cart-section-title {
    font-family: var(--font-marcellus);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(184, 93, 59, 0.1);
    padding-bottom: 6px;
    text-transform: capitalize;
}

.cart-section-title i {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Structured Calculations Container Card */
.billing-summary-box {
    background: var(--bg-sand-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 4px rgba(42, 31, 26, 0.02);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.cart-summary-row.total-row {
    font-family: var(--font-marcellus);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px dashed rgba(184, 93, 59, 0.25);
    padding-top: 10px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Beautiful white card box separating user details inputs */
.order-details-box {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 22px;
    box-shadow: 0 4px 12px rgba(42, 31, 26, 0.02);
}

.order-details-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-details-box label {
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.order-details-box label i {
    color: var(--primary);
}

.order-details-box input {
    width: 100%;
    border: 1px solid var(--card-border);
    background: var(--bg-sand-light);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: var(--transition);
}

.order-details-box input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 93, 59, 0.15);
}

.btn-whatsapp-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-hover));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.checkout-note {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

/* --- separated Step-based Cart Drawer Styling --- */
.cart-total-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-sand-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    margin-top: 5px;
}

.total-summary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.total-summary-info .total-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.total-summary-info .total-value {
    font-family: var(--font-marcellus);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-cart-buy {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(184, 93, 59, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184, 93, 59, 0.25);
}

.btn-cart-add-details-bottom {
    width: 100%;
    margin-top: 10px;
    background: rgba(184, 93, 59, 0.08);
    color: var(--primary);
    border: 1px dashed var(--primary);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart-add-details-bottom:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.cart-checkout-details-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    background: var(--bg-sand);
    display: flex;
    flex-direction: column;
}

.back-to-cart-wrapper {
    margin-bottom: 20px;
}

.btn-back-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.btn-back-to-cart:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(184, 93, 59, 0.03);
}

/* 14. Booking Success Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 26, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-container {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.modal-success-header {
    background: rgba(39, 174, 96, 0.05);
    border-bottom: 1px solid var(--card-border);
    padding: 30px;
    text-align: center;
}

.modal-success-icon {
    font-size: 3rem;
    color: var(--veg-green);
    margin-bottom: 15px;
}

.modal-success-header h3 {
    font-family: var(--font-marcellus);
    font-size: 1.4rem;
    color: var(--text-dark);
}

.modal-success-body {
    padding: 30px;
    text-align: center;
}

.modal-success-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.reservation-summary-card {
    background: var(--bg-sand);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.summary-item strong {
    color: var(--text-dark);
}

.modal-perk-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.modal-success-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp-confirm {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-hover));
    color: white;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-whatsapp-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-secondary-sm {
    background: var(--bg-sand);
    border: 1px solid var(--card-border);
    color: var(--text-dark);
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
}

/* 15. Responsive Styling & Mobile Elements */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    height: 65px;
    z-index: 1000;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -4px 20px rgba(42, 31, 26, 0.08);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-nav-item i {
    font-size: 1.15rem;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--primary);
}

.cart-nav-item {
    position: relative;
}

.mobile-cart-badge {
    position: absolute;
    top: 6px;
    right: 20%;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-sand-light);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .reels-scroll-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-image-side {
        height: 380px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 110px; /* Leave generous breathing room above the mobile bottom navigation bar */
    }
    .navbar {
        padding: 12px 0;
    }
    .nav-links {
        display: none; /* Hide default desktop link bar */
    }
    .btn-ai-host span {
        display: none; /* Hide button text to fit small navbar sizes */
    }
    .hero-section {
        padding: 40px 0 60px 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .btn-primary-lg, .btn-secondary-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
        background: var(--card-bg);
        padding: 18px;
        border-radius: var(--radius-md);
        border: 1px solid var(--card-border);
        box-shadow: var(--shadow-sm);
    }
    .bestseller-image-wrapper {
        height: 240px;
    }
    .bestseller-info {
        padding: 22px;
    }
    .bestseller-title {
        font-size: 1.3rem;
    }
    .bestseller-price {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    .mood-section, .menu-section, .reels-section, .booking-section {
        padding: 50px 0;
    }
    .mood-chips-container, .menu-category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 5px 20px;
        margin-top: 20px;
        margin-bottom: 25px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .mood-chips-container::-webkit-scrollbar, .menu-category-tabs::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    .mood-chip, .menu-tab {
        padding: 8px 18px;
        font-size: 0.85rem;
        flex-shrink: 0; /* Prevents chips from squishing in horizontal scroll */
    }
    .mood-grid, .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    .mood-card-image, .menu-item-img-wrapper {
        height: 180px; /* Sleek, punchy image height optimized for phone screens */
    }
    .mood-card-content, .menu-item-content {
        padding: 18px; /* Balanced internal padding for mobile cards */
    }
    .mood-card-title, .menu-item-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .mood-card-price, .menu-item-price {
        font-size: 1.25rem;
    }
    .mood-card-desc, .menu-item-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    .ai-curator-note {
        padding: 10px 12px;
        font-size: 0.78rem;
        margin-bottom: 18px;
    }
    .btn-add-combo, .btn-whatsapp-add {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    .reels-header-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    .reels-scroll-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    .reel-card {
        height: 320px;
    }
    .booking-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
    .booking-left-panel {
        gap: 20px;
        height: auto;
    }
    .booking-image-side {
        height: auto;
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }
    .booking-image-side img {
        border-radius: var(--radius-lg);
        height: 240px;
        box-shadow: var(--shadow-md);
        margin-bottom: 20px;
    }
    .booking-perk-card {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }
    .booking-location-panel {
        padding: 22px;
    }
    .booking-form-side {
        padding: 30px 22px;
    }
    .booking-title {
        font-size: 1.8rem;
    }
    .footer-section {
        padding: 60px 0 40px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
    .ai-voice-widget {
        bottom: 85px; /* Safely above the mobile navbar */
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 14px 20px;
    }
    .mobile-bottom-nav {
        display: grid;
    }
    .drawer-container {
        max-width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .booking-form-side {
        padding: 25px 20px;
    }
    .reels-scroll-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   🍽️ Gourmet Food Details Modal Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 31, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

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

.food-modal-container {
    background: var(--bg-sand-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 850px;
    position: relative;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .food-modal-container {
    transform: translateY(0) scale(1);
}

.btn-close-food-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(42, 31, 26, 0.08);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

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

.food-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.food-modal-left {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.food-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-modal-left .dietary-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: var(--shadow-md);
}

.food-modal-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-modal-right .food-title {
    font-family: var(--font-marcellus);
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.food-modal-right .food-price {
    font-family: var(--font-marcellus);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.food-modal-right .food-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.food-modal-pairing-box {
    background: rgba(184, 93, 59, 0.05);
    border-left: 4px solid var(--primary);
    padding: 18px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
}

.pairing-header {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pairing-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.food-modal-actions {
    display: flex;
    gap: 15px;
}

.food-modal-actions .btn-primary-lg {
    width: 100%;
    justify-content: center;
}

/* Mobile responsive styles for the Food Modal */
@media (max-width: 768px) {
    .food-modal-container {
        width: 92%;
        max-width: 440px;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: var(--radius-lg); /* Beautiful rounded corners on all 4 sides */
        position: relative; /* Restores normal flex centering inside modal-overlay */
        bottom: auto;
        margin: auto;
        transform: translateY(30px) scale(0.95);
        box-shadow: var(--shadow-premium);
    }
    
    .modal-overlay.active .food-modal-container {
        transform: translateY(0) scale(1);
    }
    
    .food-modal-content {
        grid-template-columns: 1fr;
    }
    
    .food-modal-left {
        min-height: 220px;
        height: 220px;
    }
    
    .food-modal-right {
        padding: 25px 20px;
    }
    
    .food-modal-right .food-title {
        font-size: 1.6rem;
    }
    
    .food-modal-right .food-price {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .food-modal-right .food-desc {
        font-size: 0.88rem;
        margin-bottom: 15px;
    }
    
    .food-modal-pairing-box {
        margin-bottom: 20px;
        padding: 12px 15px;
    }
}

/* ==========================================================================
   👤 FEATURE 9: Premium Simulated Google SSO & User Profile
   ========================================================================== */
.user-profile-widget {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    background: rgba(184, 93, 59, 0.05);
    transform: translateY(-1px);
}

.logged-in-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logged-in-avatar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(184, 93, 59, 0.3);
}

.logged-in-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Inputs & Select Dropdowns */
.form-input {
    width: 100%;
    padding: 12px 15px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(184, 93, 59, 0.2);
    outline: none;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A1F1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

/* Navbar Mini Dropdown */
.profile-dropdown-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    padding: 12px 0;
    z-index: 9999;
    animation: dropdownFade 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.profile-dropdown-menu.active {
    display: flex;
}

.profile-dropdown-header {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.profile-dropdown-header strong {
    font-family: var(--font-marcellus);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.profile-dropdown-header span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.profile-dropdown-divider {
    height: 1px;
    background: var(--card-border);
    margin: 8px 0;
}

.profile-dropdown-item {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.profile-dropdown-item i {
    width: 16px;
    color: var(--primary);
}

.profile-dropdown-item:hover {
    background: rgba(184, 93, 59, 0.04);
    padding-left: 24px;
}

.profile-dropdown-item.logout {
    color: #ef4444;
}

.profile-dropdown-item.logout i {
    color: #ef4444;
}

.profile-dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.05);
}

/* Custom Theme Picker Widget */
.custom-theme-picker {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    background: transparent;
    border: none;
    transition: var(--transition);
    user-select: none;
}

.custom-theme-picker:hover {
    background: rgba(184, 93, 59, 0.03);
    padding-left: 20px;
}

.custom-theme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.theme-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-icon-pulse {
    width: 16px;
    color: var(--primary);
    animation: palettePulse 2s infinite ease-in-out;
}

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

.theme-header-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.theme-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-theme-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(184, 93, 59, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    border: 1px solid rgba(184, 93, 59, 0.2);
    transition: var(--transition);
}

.theme-chevron {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-theme-picker.open .theme-chevron {
    transform: rotate(180deg);
}

.custom-theme-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.custom-theme-picker.open .custom-theme-options {
    max-height: 350px;
    opacity: 1;
    margin-top: 12px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid transparent;
}

.theme-option:hover {
    background: var(--bg-sand);
    border-color: var(--card-border);
    transform: translateX(4px);
}

.theme-option.active {
    background: var(--bg-sand-light);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.theme-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.8), 0 0 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.theme-option:hover .theme-dot {
    transform: scale(1.2);
}

.theme-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    flex-grow: 1;
}

.theme-option.active .theme-name {
    font-weight: 700;
    color: var(--primary);
}

.theme-check {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.theme-option.active .theme-check {
    opacity: 1;
    transform: scale(1);
}



/* Simulated Google Auth Dialog styling */
.google-auth-container {
    background: white;
    color: #202124;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.google-auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.google-g-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.google-auth-header h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #202124;
}

.google-auth-header p {
    font-size: 0.88rem;
    color: #5f6368;
    margin-top: 4px;
}

.google-auth-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.google-account-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.google-account-option:hover {
    background: #f8f9fa;
    border-color: #aecbfa;
}

.account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.account-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.account-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #3c4043;
}

.account-email {
    font-size: 0.78rem;
    color: #5f6368;
}

.google-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #70757a;
    font-size: 0.78rem;
}

.google-auth-divider::before, .google-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dadce0;
}

.google-auth-divider::before {
    margin-right: 10px;
}

.google-auth-divider::after {
    margin-left: 10px;
}

.google-custom-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.google-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    color: #202124;
    transition: var(--transition);
}

.google-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
}

.google-submit-btn {
    width: 100%;
    padding: 12px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.google-submit-btn:hover {
    background: #1557b0;
}

/* Culinary Profile Hub Modal */
.profile-modal-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.profile-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-avatar-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
}

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

.profile-header-meta {
    text-align: left;
}

.profile-title {
    font-family: var(--font-marcellus);
    font-size: 1.6rem;
    color: var(--text-dark);
}

.profile-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 2px;
}

.profile-badge-sso {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 25px;
    gap: 15px;
}

.profile-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: var(--transition);
}

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

.profile-tab-btn.active {
    color: var(--primary);
    font-weight: 700;
}

.profile-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.profile-tabs-content {
    min-height: 250px;
}

.profile-pane {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.profile-pane.active {
    display: block;
}

.profile-pref-form {
    text-align: left;
}

.pref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}

/* History Ledger item card inside profile */
.profile-ledger-card {
    background: rgba(184, 93, 59, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ledger-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ledger-title {
    font-family: var(--font-marcellus);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.ledger-subtitle {
    font-size: 0.78rem;
    color: var(--text-light);
}

.ledger-price {
    font-weight: 700;
    color: var(--primary);
}

.ledger-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.ledger-status.pending { background: rgba(229,169,59,0.1); color: var(--accent-secondary); }
.ledger-status.approved, .ledger-status.completed { background: rgba(16,185,129,0.1); color: #10b981; }
.ledger-status.cancelled { background: rgba(239,68,68,0.1); color: #ef4444; }
.ledger-status.preparing { background: rgba(99,102,241,0.1); color: #6366f1; }

/* Real Google SSO button styling */
.google-real-sso-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #1f1f1f;
    border: 1px solid #dadce0;
    padding: 12px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.google-real-sso-btn:hover {
    background: #f7f9fa;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.google-real-sso-btn:active {
    transform: translateY(0);
}

/* --- FEATURE 12: Universal Smooth Animated Custom Dropdown System --- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

.custom-select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 10, 8, 0.45);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0 14px;
    height: 42px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.custom-select-header:hover {
    border-color: var(--accent-primary);
    background: rgba(184, 93, 59, 0.08);
    box-shadow: 0 0 12px rgba(184, 93, 59, 0.15);
}

.custom-select-wrapper.open .custom-select-header {
    border-color: var(--accent-primary);
    background: rgba(184, 93, 59, 0.12);
    box-shadow: 0 0 16px rgba(184, 93, 59, 0.2);
}

.custom-select-chevron {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.open .custom-select-chevron {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(22, 16, 14, 0.95);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    max-height: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
}

.custom-select-wrapper.open .custom-select-options {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 6px;
}

.custom-select-option {
    padding: 10px 14px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-option:hover {
    background: rgba(184, 93, 59, 0.2);
    color: #fff;
    padding-left: 18px;
}

.custom-select-option.selected {
    background: rgba(184, 93, 59, 0.35);
    color: var(--accent-secondary);
    font-weight: 700;
}

/* Custom scrollbar for options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}
