/* ============================================================
   ChowStation.ng — Editorial Menu-Index Design System
   Brand palette fixed: Black, White, Cool Grey, Linen, Flame Red.
   Signature element: dishes presented as a real printed-menu
   index (number, name, dotted leader, price) rather than photo
   cards, with a pinned running-total that tracks the cart live.
   ============================================================ */

:root {
    --c-black: #000000;
    --c-white: #FFFFFF;
    --c-grey: #A09FA3;
    --c-linen: #F9EFE8;
    --c-flame-bright: #F79022;
    --c-flame: #EE2328;
    --c-flame-deep: #931518;
    --c-flame-ember: #5A0D0F;
    --c-flame-glow: rgba(238, 35, 40, 0.4);

    --gradient-flame: linear-gradient(135deg, var(--c-flame-bright) 0%, var(--c-flame) 45%, var(--c-flame-deep) 78%, var(--c-flame-ember) 100%);
    --gradient-flame-horizontal: linear-gradient(90deg, var(--c-flame-deep) 0%, var(--c-flame) 35%, var(--c-flame-bright) 50%, var(--c-flame) 65%, var(--c-flame-deep) 100%);
    --gradient-flame-radial: radial-gradient(circle at 30% 20%, var(--c-flame-bright) 0%, var(--c-flame) 45%, var(--c-flame-deep) 100%);

    --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --space-3xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 44px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-instant: 0.15s;
    --duration-fast: 0.25s;
    --duration-base: 0.5s;
    --duration-slow: 0.9s;
    --duration-slower: 1.4s;

    --max-width: 1320px;
}

.theme-light {
    --bg: var(--c-white);
    --bg-elevated: var(--c-linen);
    --bg-deep: var(--c-black);
    --text-primary: var(--c-black);
    --text-secondary: var(--c-grey);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-row: #ececec;
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-strong: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-blur: 22px;
    --glass-dark-bg: rgba(20, 20, 20, 0.45);
    --glass-dark-border: rgba(255, 255, 255, 0.16);
    --flame-glass-bg: rgba(238, 35, 40, 0.92);
    --shadow-card: 0 1px 1px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.05), 0 24px 48px rgba(0,0,0,0.06);
    --shadow-elevated: 0 4px 12px rgba(0,0,0,0.08), 0 32px 64px rgba(0,0,0,0.12);
    --shadow-flame: 0 12px 32px rgba(238,35,40,0.28);
    --row-hover-tint: var(--c-linen);
}

.theme-dark {
    --bg: var(--c-black);
    --bg-elevated: #0c0c0c;
    --bg-deep: #000000;
    --text-primary: var(--c-white);
    --text-secondary: var(--c-grey);
    --border-subtle: rgba(255, 255, 255, 0.09);
    --border-row: rgba(255,255,255,0.1);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.14);
    --glass-blur: 24px;
    --glass-dark-bg: rgba(0, 0, 0, 0.55);
    --glass-dark-border: rgba(255, 255, 255, 0.1);
    --flame-glass-bg: rgba(238, 35, 40, 0.85);
    --shadow-card: 0 1px 1px rgba(0,0,0,0.4), 0 16px 40px rgba(0,0,0,0.5);
    --shadow-elevated: 0 4px 20px rgba(0,0,0,0.5), 0 40px 80px rgba(0,0,0,0.55);
    --shadow-flame: 0 16px 40px rgba(238,35,40,0.35);
    --row-hover-tint: rgba(238,35,40,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--duration-base) var(--ease), color var(--duration-base) var(--ease);
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url('/images/patterns/chowstation-pattern-black.png');
    background-repeat: repeat;
    background-size: 320px;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 600px) {
    body::before { background-size: 200px; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; color: var(--text-secondary); }
:focus-visible { outline: 2px solid var(--c-flame); outline-offset: 3px; border-radius: 4px; }
.mono { font-family: var(--font-mono); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-flame); margin-bottom: var(--space-sm);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--c-flame); border-radius: 50%; }
.empty-state { color: var(--text-secondary); padding: var(--space-lg); text-align: center; width: 100%; }
.empty-state a { color: var(--c-flame); font-weight: 600; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    padding: 0.9rem 1.7rem; border-radius: var(--radius-pill); border: none; cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-out-soft), box-shadow var(--duration-fast) var(--ease-out-soft),
                background-color var(--duration-fast) var(--ease-out-soft), border-color var(--duration-fast) var(--ease-out-soft);
    white-space: nowrap; position: relative; font-family: var(--font-body);
}
.btn:active { transform: scale(0.96); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--gradient-flame); color: var(--c-white); box-shadow: 0 1px 2px rgba(0,0,0,0.15), 0 8px 24px var(--c-flame-glow); }
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 14px 30px rgba(238,35,40,0.35); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-subtle); }
.btn-outline:hover { border-color: var(--c-flame); color: var(--c-flame); }
.btn-glass {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)) saturate(160%); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
    color: var(--text-primary); border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
}
.btn-glass:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.btn-glass-dark {
    background: var(--glass-dark-bg); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    color: var(--c-white); border: 1px solid var(--glass-dark-border);
}
.btn-glass-dark:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.28); }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.02rem; }
.btn-add-to-cart {
    width: 100%; background: var(--text-primary); color: var(--bg); border-radius: var(--radius-sm); padding: 0.75rem 1rem;
    transition: background-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease); font-family: var(--font-body);
}
.btn-add-to-cart:hover:not(:disabled) { background: var(--gradient-flame); color: var(--c-white); transform: translateY(-1px); }
.btn-add-to-cart-sm { padding: 0.55rem 0.95rem; font-size: 0.85rem; width: auto; }

/* ============================================================
   Preloader — homepage only, white background, centered logo
   ============================================================ */
#preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { height: 56px; width: auto; animation: preloader-breathe 2.2s var(--ease) infinite; }
@keyframes preloader-breathe { 0%,100% { opacity:0.4; transform:scale(0.96); } 50% { opacity:1; transform:scale(1.03); } }
body.is-loading { overflow: hidden; }
#main-content, .site-footer { opacity: 0; transform: translateY(8px); transition: opacity 0.8s var(--ease-out-soft) 0.1s, transform 0.8s var(--ease-out-soft) 0.1s; }
body.is-ready #main-content, body.is-ready .site-footer { opacity: 1; transform: translateY(0); }

/* ============================================================
   Navbar — real liquid glass: frosted, blurred, consistent
   over any background (works the same on dark hero or white body)
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(10, 9, 8, 0.42);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background-color var(--duration-base) var(--ease), backdrop-filter var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.navbar.is-scrolled {
    background: rgba(8, 7, 6, 0.72);
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 32px rgba(0,0,0,0.18);
}
.navbar-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md);
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
    height: 68px; transition: height var(--duration-base) var(--ease);
    min-width: 0;
}
.navbar.is-scrolled .navbar-inner { height: 58px; }
.navbar-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.navbar-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.navbar-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--c-white); }
.navbar-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.navbar-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.72); transition: color var(--duration-fast) var(--ease); position: relative; }
.navbar-links a:hover, .navbar-links a.is-active { color: var(--c-white); }
.navbar-links a.is-active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: var(--c-flame); border-radius: 2px; }
.navbar-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.theme-toggle, .cart-toggle {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill);
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--c-white); position: relative; transition: background-color var(--duration-fast) var(--ease), transform var(--duration-instant) var(--ease);
}
.theme-toggle:hover, .cart-toggle:hover { background: rgba(238,35,40,0.25); transform: translateY(-1px); }
.icon-moon { display: none; }
.theme-dark .icon-sun { display: none; }
.theme-dark .icon-moon { display: block; }
.cart-count {
    position: absolute; top: -5px; right: -5px; background: var(--c-flame); color: var(--c-white);
    font-size: 0.65rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: 999px;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.navbar-cta {
    font-size: 0.82rem; font-weight: 700; color: var(--c-white); background: var(--c-flame);
    padding: 0.6rem 1.3rem; border-radius: var(--radius-pill); box-shadow: 0 8px 20px rgba(238,35,40,0.3);
    transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.navbar-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(238,35,40,0.42); }

/* ── Mobile nav toggle + panel ──────────────────────────────── */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; width: 36px; height: 36px; }
.mobile-menu-toggle span { width: 100%; height: 2px; background: var(--c-white); border-radius: 2px; transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease); }
.mobile-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dimmed backdrop behind the drawer — pure CSS, tracks #mobile-menu.is-open
   via the sibling selector below, so no extra JS is required for it. */
.mobile-menu-backdrop {
    position: fixed; inset: 0; z-index: 198;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--duration-base) var(--ease-out-soft), visibility var(--duration-base) var(--ease-out-soft);
}
#mobile-menu.is-open ~ .mobile-menu-backdrop {
    opacity: 1; visibility: visible; pointer-events: auto;
}

/* Off-canvas drawer — slides in from the LEFT edge, industry-standard
   width (not full-screen), so the dimmed page stays visible behind it. */
.mobile-menu {
    position: fixed; top: 0; left: 0; height: 100%;
    width: min(86vw, 380px);
    z-index: 199;
    background: rgba(8, 7, 6, 0.94);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.4);
    display: flex; flex-direction: column;
    padding: 96px var(--space-lg) var(--space-lg);
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform var(--duration-base) var(--ease-out-soft), visibility var(--duration-base) var(--ease-out-soft);
}
.mobile-menu.is-open { visibility: visible; transform: translateX(0); }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: auto; }
.mobile-menu a {
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--c-white);
    padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0; transform: translateX(-16px);
    transition: opacity var(--duration-base) var(--ease-out-soft), transform var(--duration-base) var(--ease-out-soft), color var(--duration-fast) var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateX(0); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.11s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.21s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.26s; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--c-flame); }
.mobile-menu .btn { align-self: stretch; justify-content: center; margin-top: var(--space-md); }
.mobile-menu-close {
    position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: var(--c-white);
    display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.4rem;
}

@media (max-width: 991px) {
    .navbar-links { display: none; }
    .navbar-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
}
@media (max-width: 480px) {
    .navbar-logo-text { display: none; }
    .navbar-logo img { height: 28px; }
    .navbar-inner { gap: 0.5rem; padding: 0 var(--space-sm); }
    .navbar-actions { gap: 0.65rem; }
}
html, body { overflow-x: hidden; max-width: 100%; }
@media (min-width: 992px) { .mobile-menu, .mobile-menu-backdrop { display: none; } }
@media (max-height: 480px) {
    .mobile-menu { padding: 76px var(--space-md) var(--space-md); }
    .mobile-menu a { font-size: 1.1rem; padding: 0.6rem 0; }
    .mobile-menu-links { margin-bottom: var(--space-md); gap: 0.1rem; }
}

/* ============================================================
   Hero — full-bleed crossfading photo, dimmed, single column
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--c-black); isolation: isolate; }
.hero-photo-stack { position: absolute; inset: 0; z-index: 0; }
.hero-photo-stack img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.4s var(--ease-out-soft);
}
.hero-photo-stack img.is-active { opacity: 1; }
.hero-dim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 38%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
}
.hero-body {
    position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; width: 100%;
    padding: 148px var(--space-md) var(--space-2xl); color: var(--c-white);
    display: flex; flex-direction: column; justify-content: space-between; flex: 1;
}
.hero-text-stack {
    position: relative;
    min-height: 400px; /* reserves space so absolutely-positioned slides don't collapse their parent */
}
.hero-slide-text {
    position: absolute; inset: 0; display: none;
}
.hero-slide-text.is-active { display: block; }
/* GSAP takes over opacity/transform via inline styles once it loads;
   this only matters for the no-JS/no-GSAP fallback path. */
@media (max-width: 640px) { .hero-text-stack { min-height: 320px; } }
.badge-availability {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--c-flame); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: var(--space-md); animation: fade-up var(--duration-slow) var(--ease-out-soft) both;
}
.badge-dot { width: 7px; height: 7px; background: var(--c-flame); border-radius: 50%; box-shadow: 0 0 0 0 var(--c-flame-glow); animation: badge-pulse 2.2s infinite; }
@keyframes badge-pulse { 70% { box-shadow: 0 0 0 9px rgba(238,35,40,0); } }
@keyframes marquee-flame-shift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.hero-headline { font-size: clamp(3rem, 7vw, 6.5rem); margin-bottom: var(--space-md); animation: fade-up var(--duration-slow) var(--ease-out-soft) 0.08s both; }
.hero-headline .accent {
    color: var(--c-flame); /* fallback for browsers without background-clip support */
    background: var(--gradient-flame);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtext { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 40ch; margin-bottom: var(--space-lg); animation: fade-up var(--duration-slow) var(--ease-out-soft) 0.16s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-foot { display: flex; align-items: flex-end; justify-content: flex-end; gap: var(--space-md); flex-wrap: wrap; animation: fade-up var(--duration-slower) var(--ease-out-soft) 0.3s both; }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-stat { text-align: right; }
.hero-stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; display: block; color: var(--c-white); }
.hero-stat .lbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media (max-width: 640px) {
    .hero-body { padding-top: 110px; padding-bottom: var(--space-lg); }
    .hero-foot { align-items: flex-start; flex-direction: column; }
    .hero-stat { text-align: left; }
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee { background: var(--gradient-flame-horizontal); background-size: 200% 100%; animation: marquee-flame-shift 8s ease-in-out infinite alternate; overflow: hidden; padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee-scroll 24s linear infinite; }
.marquee-track span { color: var(--c-white); font-family: var(--font-display); font-weight: 800; font-size: 1rem; margin: 0 24px; text-transform: uppercase; letter-spacing: 0.02em; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   Menu index — the signature element. Thumbnail always visible.
   ============================================================ */
.menu-index { background: var(--bg); padding: var(--space-2xl) var(--space-md); max-width: var(--max-width); margin: 0 auto; }
.menu-index-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--space-xl); gap: var(--space-md); flex-wrap: wrap; }
.menu-index-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.menu-index-head p { color: var(--text-secondary); max-width: 34ch; font-size: 0.95rem; }
.menu-tabs { display: flex; gap: 8px; margin-bottom: var(--space-lg); flex-wrap: wrap; }
.menu-tab {
    padding: 0.6rem 1.2rem; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle);
    font-size: 0.82rem; font-weight: 600; cursor: pointer; background: none; color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease); font-family: var(--font-body);
}
.menu-tab.is-active, .filter-chip.is-active { background: var(--c-black); color: var(--c-white); border-color: var(--c-black); }
.menu-tab:hover:not(.is-active) { border-color: var(--c-flame); color: var(--c-flame); }

.index-row {
    display: grid; grid-template-columns: 32px 88px 1fr auto auto; align-items: center; gap: var(--space-md);
    padding: 1.3rem 0; border-bottom: 1px solid var(--border-row); cursor: pointer;
    transition: background-color var(--duration-fast) var(--ease);
}
.index-row:hover { background: var(--row-hover-tint); }
.index-row-thumb { width: 88px; height: 88px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-card); }
.index-row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out-soft); }
.index-row:hover .index-row-thumb img { transform: scale(1.08); }
.index-row .idx { font-family: var(--font-mono); color: var(--text-secondary); font-size: 0.82rem; }
.index-row .name-col { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.index-row .name-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.55rem; min-width: 0; }
.index-row .dish-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; transition: color var(--duration-fast) var(--ease); }
.index-row:hover .dish-name { color: var(--c-flame); }
.index-row .prep-time-badge {
    display: inline-flex; align-items: center; gap: 0.25rem; flex-shrink: 0;
    font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
    color: var(--c-flame-bright); white-space: nowrap;
}
.index-row .prep-time-badge::before {
    content: ''; width: 12px; height: 12px; flex-shrink: 0;
    background-color: var(--c-flame-bright);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.index-row .dish-desc { display: block; color: var(--text-secondary); font-size: 0.86rem; line-height: 1.45; }
.index-row .price { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; white-space: nowrap; color: var(--text-primary); }
/* .add-btn is intentionally unscoped (not .index-row .add-btn) since it's
   reused standalone in the homepage drinks feature cards too. */
.add-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--text-primary);
    display: flex; align-items: center; justify-content: center; background: none; font-size: 1.3rem;
    color: var(--text-primary); transition: all var(--duration-fast) var(--ease); flex-shrink: 0; font-family: var(--font-body);
    cursor: pointer;
}
.add-btn:hover, .index-row:hover .add-btn { background: var(--gradient-flame-radial); border-color: var(--c-flame); color: var(--c-white); transform: rotate(90deg); }
.add-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; background: none !important; border-color: var(--border-subtle) !important; color: var(--text-secondary) !important; }
.index-row .badge-unavailable { font-size: 0.68rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 760px) {
    .index-row { grid-template-columns: 56px 1fr auto 44px; gap: var(--space-sm); align-items: center; }
    .index-row .idx { display: none; }
    .index-row-thumb { width: 56px; height: 56px; }
    .index-row .dish-name { font-size: 1.05rem; }
    .index-row .prep-time-badge { font-size: 0.72rem; }
    .index-row .dish-desc { font-size: 0.8rem; }
    .add-btn { width: 42px; height: 42px; font-size: 1.25rem; flex-shrink: 0; }
    .menu-index { padding: var(--space-xl) 20px; }
    .menu-index-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
    .index-row .price { font-size: 0.92rem; }
    .index-row .dish-name { font-size: 0.98rem; }
    .index-row .name-line { gap: 0.4rem; }
    .index-row .prep-time-badge { font-size: 0.68rem; }
}

.menu-index-footer-action { display: flex; justify-content: center; margin-top: var(--space-xl); }

.menu-rows { display: flex; flex-direction: column; }
.menu-category-groups { display: flex; flex-direction: column; gap: var(--space-lg); }
.menu-category-heading {
    font-size: 1.3rem; margin-bottom: var(--space-sm); padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--c-flame); display: inline-block;
}
.menu-rows > [data-reveal]:last-child .index-row,
.index-row:last-child { border-bottom: none; }

/* Pinned running total — signature companion to the index */
.running-total {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    background: var(--c-black); color: var(--c-white); border-radius: var(--radius-lg);
    padding: 1rem 1.4rem; display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    opacity: 0; transform: translateY(20px) scale(0.9); transition: all var(--duration-base) var(--ease-spring);
    pointer-events: none; cursor: pointer;
}
.running-total.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.running-total .rt-label { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; }
.running-total .rt-price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--c-flame); font-variant-numeric: tabular-nums; }
@media (max-width: 760px) { .running-total { right: 16px; bottom: 16px; padding: 0.8rem 1.1rem; } }

/* ============================================================
   Split banner — dark + flame panels, giant numerals
   ============================================================ */
.split-banner { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: var(--space-2xl) var(--space-md); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 360px; }
.split-panel.is-dark { background: var(--c-black); color: var(--c-white); }
.split-panel.is-flame { background: var(--gradient-flame); color: var(--c-white); }
.split-panel .big-num { font-family: var(--font-mono); font-size: clamp(3.4rem, 7vw, 5.6rem); font-weight: 600; line-height: 0.9; }
.split-panel h3 { font-size: 1.5rem; margin: var(--space-sm) 0 0.7rem; color: var(--c-white); }
.split-panel p { opacity: 0.82; max-width: 36ch; font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.82); }
.split-panel .arrow {
    position: absolute; bottom: var(--space-md); right: var(--space-md); width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center;
    color: var(--c-white); transition: all var(--duration-fast) var(--ease);
}
.split-panel:hover .arrow { background: var(--c-white); color: var(--c-black); transform: rotate(45deg); }
@media (max-width: 860px) { .split-banner { grid-template-columns: 1fr; } .split-panel { padding: var(--space-xl) 24px; min-height: 280px; } }

/* ============================================================
   Special Offers / Friday Specials
   ============================================================ */
.offers-section { padding-bottom: var(--space-lg); }
.offers-head { margin-bottom: var(--space-lg); max-width: 56ch; }
.offers-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0.3rem 0 0.5rem; }
.offer-card {
    display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-elevated);
    border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card);
    transition: transform var(--duration-fast) var(--ease-out-soft), box-shadow var(--duration-fast) var(--ease-out-soft);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.offer-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.offer-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out-soft); }
.offer-card:hover .offer-card-image img { transform: scale(1.08); }
.offer-badge {
    position: absolute; top: var(--space-sm); left: var(--space-sm);
    background: var(--c-flame); color: var(--c-white); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
    box-shadow: 0 6px 16px rgba(238,35,40,0.35);
}
.offer-card-body { padding: var(--space-md); display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); }
.offer-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.offer-card-price { color: var(--c-flame); font-weight: 600; font-size: 1rem; white-space: nowrap; }

/* ============================================================
   Drinks feature strip (homepage) — horizontally scrollable
   ============================================================ */
.drinks-feature-section { padding-bottom: var(--space-lg); }
.drinks-feature-head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.drinks-feature-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-top: 0.3rem; }
.drinks-category-grid {
    display: flex; gap: var(--space-sm); overflow-x: auto; overflow-y: hidden;
    padding-bottom: var(--space-xs); scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.drinks-category-tile {
    position: relative; display: flex; align-items: flex-end; flex-shrink: 0;
    width: 150px; height: 150px; border-radius: var(--radius-md); overflow: hidden;
    background-size: cover; background-position: center; background-color: var(--bg-elevated);
    padding: var(--space-sm); isolation: isolate; scroll-snap-align: start;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform var(--duration-slow) var(--ease-out-soft), box-shadow var(--duration-slow) var(--ease-out-soft);
}
.drinks-category-tile::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 100%);
}
.drinks-category-tile:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.14); }
.drinks-category-tile-name {
    color: #fff; font-family: var(--font-display);
    font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1.15;
}

@media (max-width: 480px) {
    .drinks-category-tile { width: 128px; height: 128px; }
    .drinks-category-tile-name { font-size: 0.85rem; }
}
.drinks-feature-strip {
    display: flex; gap: var(--space-md); overflow-x: auto; padding: 0.3rem var(--space-md) var(--space-sm);
    margin: 0 calc(-1 * var(--space-md)); scroll-snap-type: x proximity; scrollbar-width: thin;
}
.drinks-feature-card {
    scroll-snap-align: start; flex: 0 0 auto; width: 160px;
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    padding: var(--space-sm); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem;
    position: relative; transition: transform var(--duration-fast) var(--ease-out-soft), box-shadow var(--duration-fast) var(--ease-out-soft);
    box-shadow: var(--shadow-card);
}
.drinks-feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elevated); }
.drinks-feature-image { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; background: var(--border-subtle); }
.drinks-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out-soft); }
.drinks-feature-card:hover .drinks-feature-image img { transform: scale(1.1); }
.drinks-feature-name { font-weight: 700; font-size: 0.88rem; }
.drinks-feature-price { color: var(--c-flame); font-size: 0.85rem; font-weight: 600; }
.drinks-feature-card .add-btn { width: 34px; height: 34px; font-size: 1.1rem; margin-top: 0.2rem; }
@media (max-width: 640px) { .drinks-feature-card { width: 140px; } .drinks-feature-image { width: 84px; height: 84px; } }

/* ============================================================
   Featured / Customer Favorites — broken offset grid
   ============================================================ */
.featured { padding: var(--space-2xl) var(--space-md); background: var(--bg-elevated); max-width: var(--max-width); margin: 0 auto; }
.featured-head { margin-bottom: var(--space-xl); }
.featured-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.feat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; transition: transform var(--duration-slow) var(--ease-out-soft); }
.feat-card:nth-child(2) { aspect-ratio: 3/5; transform: translateY(-40px); }
.feat-card:hover { transform: translateY(-8px) scale(1.01); }
.feat-card:nth-child(2):hover { transform: translateY(-48px) scale(1.01); }
.feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out-soft); }
.feat-card:hover img { transform: scale(1.08); }
.feat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-md); color: var(--c-white); }
.feat-overlay .fname { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.feat-overlay .fprice { font-family: var(--font-mono); color: var(--c-flame); font-size: 0.95rem; margin-top: 0.2rem; display: block; }
@media (max-width: 860px) {
    .feat-grid { grid-template-columns: 1fr; }
    .feat-card:nth-child(2) { transform: none; aspect-ratio: 3/4; }
    .feat-card:nth-child(2):hover { transform: translateY(-8px) scale(1.01); }
}

/* ============================================================
   About & Contact (kept, restyled to match new system)
   ============================================================ */
.section { max-width: var(--max-width); margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.section-header { margin-bottom: var(--space-lg); max-width: 56ch; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

/* Testimonials */
.testimonial-card {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
    padding: var(--space-md); transition: transform var(--duration-fast) var(--ease-out-soft);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-rating { display: flex; gap: 2px; color: var(--c-flame); margin-bottom: var(--space-sm); }
.testimonial-review { color: var(--text-primary); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--text-secondary); }

/* Menu/drinks page outer container */
.menu-page { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md) var(--space-2xl); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-elevated); }
.about-media img { aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s var(--ease-out-soft); }
.about-media:hover img { transform: scale(1.03); }
.about-copy h2 { margin-bottom: var(--space-sm); font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.about-copy p { margin-bottom: var(--space-sm); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-form label { font-size: 0.85rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
    padding: 0.8rem 1.05rem; font-family: var(--font-body); color: var(--text-primary); resize: vertical;
    transition: border-color var(--duration-fast) var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--c-flame); }
.contact-form-row { gap: var(--space-sm); }

.contact-teaser {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    padding: var(--space-xl); display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
    flex-wrap: wrap; box-shadow: var(--shadow-card);
}
.contact-teaser h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.3rem 0 var(--space-sm); }
.contact-teaser p { max-width: 44ch; }

/* ── Standalone Contact page ─────────────────────────────────── */
.contact-page { max-width: var(--max-width); margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.contact-info-grid { margin-bottom: var(--space-2xl); }
.contact-info-card {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md); display: flex; flex-direction: column; gap: 0.5rem;
    transition: transform var(--duration-fast) var(--ease-out-soft), box-shadow var(--duration-fast) var(--ease-out-soft);
    box-shadow: var(--shadow-card); height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.contact-info-card-static:hover { transform: none; box-shadow: var(--shadow-card); }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(238,35,40,0.1); color: var(--c-flame);
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.3rem;
}
.contact-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); }
.contact-info-value { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

.contact-form-card {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    padding: var(--space-xl); box-shadow: var(--shadow-card);
}
.contact-form-card h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 0.3rem 0 var(--space-md); }
.contact-form-success {
    background: rgba(34,197,94,0.1); color: #15803d; border-left: 3px solid #22c55e;
    padding: 0.85rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600;
    margin-bottom: var(--space-md);
}
.contact-map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); min-height: 380px; }
.contact-map-iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.contact-map-placeholder {
    width: 100%; height: 100%; min-height: 380px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-elevated); color: var(--text-secondary); font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-map-card { min-height: 320px; }
    .contact-map-iframe { min-height: 320px; }
}
@media (max-width: 600px) {
    .contact-form-card { padding: var(--space-lg); }
}

/* ============================================================
   Footer — simplified, matching the prototype exactly
   ============================================================ */
.site-footer { background: var(--c-black); color: var(--c-white); }

.footer-cta-band { border-bottom: 1px solid rgba(255,255,255,0.1); padding: var(--space-lg) var(--space-md); }
.footer-cta-inner {
    max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-lg); flex-wrap: wrap;
}
.footer-cta-band .eyebrow { color: var(--c-flame); }
.footer-big-line { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--c-white); margin-top: 0.25rem; }

.footer-inner-simple { max-width: var(--max-width); margin: 0 auto; padding: var(--space-xl) var(--space-md) var(--space-md); }
.footer-grid { margin-bottom: var(--space-lg); }
.footer-brand-col { padding-right: var(--space-md); }
.footer-logo-mark { height: 26px; width: auto; filter: brightness(0) invert(1); margin-bottom: var(--space-sm); }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.6; max-width: 32ch; margin-bottom: var(--space-sm); }
.footer-hours-pill {
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.73rem; font-weight: 700;
    color: var(--c-white); background: rgba(238,35,40,0.15); border: 1px solid rgba(238,35,40,0.3);
    padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
}
.footer-hours-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-flame); }

.footer-col-simple h5 { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: var(--space-sm); }
.footer-col-simple a, .footer-col-simple span { display: block; color: rgba(255,255,255,0.62); font-size: 0.86rem; margin-bottom: 0.5rem; transition: color var(--duration-fast) var(--ease); }
.footer-col-simple a:hover { color: var(--c-flame); }

.footer-social-row { display: flex; justify-content: center; gap: 0.6rem; padding: var(--space-sm) 0 var(--space-md); }
.footer-social-icon {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.75);
    transition: background-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), transform var(--duration-instant) var(--ease);
}
.footer-social-icon:hover { background: var(--c-flame); color: var(--c-white); border-color: var(--c-flame); transform: translateY(-2px); }

.footer-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-sm);
    display: flex; justify-content: space-between; font-size: 0.76rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 0.5rem;
}

@media (max-width: 600px) {
    .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Cart drawer & checkout modal — preserved from prior system
   ============================================================ */
.cart-drawer-overlay, .checkout-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
    z-index: 300; opacity: 0; visibility: hidden; transition: opacity var(--duration-base) var(--ease), visibility var(--duration-base) var(--ease);
}
.cart-drawer-overlay.is-visible, .checkout-modal-overlay.is-visible { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 100%);
    background: var(--bg); border-left: 1px solid var(--border-subtle);
    z-index: 301; display: flex; flex-direction: column; transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease-out-soft); box-shadow: var(--shadow-elevated);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md); border-bottom: 1px solid var(--border-subtle); }
.cart-drawer-header h3 { font-size: 1.15rem; }
#cart-drawer-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-primary); line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); }
.cart-empty { color: var(--text-secondary); text-align: center; padding: var(--space-lg) 0; }
.cart-line-item { display: flex; gap: var(--space-sm); align-items: center; background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 0.7rem; }
.cart-line-image { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: var(--border-subtle); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-details { flex: 1; min-width: 0; }
.cart-line-name { font-weight: 600; font-size: 0.9rem; display: block; }
.cart-line-options { font-size: 0.76rem; color: var(--c-flame-bright); display: block; margin-top: 0.1rem; }
.cart-line-price { font-size: 0.8rem; color: var(--text-secondary); }
.cart-line-qty { display: flex; align-items: center; gap: 0.4rem; }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-subtle); background: var(--bg); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-primary); transition: border-color var(--duration-fast) var(--ease); }
.cart-qty-btn:hover { border-color: var(--c-flame); color: var(--c-flame); }
.cart-qty-value { min-width: 1.4rem; text-align: center; font-size: 0.9rem; font-weight: 600; }
.cart-receipt { margin: 0 var(--space-md); background: var(--bg-elevated); border: 1px dashed var(--border-subtle); border-radius: var(--radius-sm); padding: var(--space-sm); }
.cart-receipt-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 0.4rem; }
.cart-receipt-text { font-family: var(--font-mono); font-size: 0.78rem; white-space: pre-wrap; margin: 0; color: var(--text-primary); max-height: 140px; overflow-y: auto; }
.cart-drawer-footer { padding: var(--space-md); border-top: 1px solid var(--border-subtle); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: var(--space-sm); }
.cart-checkout-btn { width: 100%; }
.checkout-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.97);
    width: min(460px, 92vw);
    max-height: min(88vh, 720px);
    display: flex; flex-direction: column;
    background: var(--bg); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    z-index: 302; opacity: 0; visibility: hidden;
    transition: opacity var(--duration-base) var(--ease-out-soft), transform var(--duration-base) var(--ease-spring), visibility var(--duration-base) var(--ease);
    box-shadow: var(--shadow-elevated);
}
.checkout-modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.checkout-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--space-md); border-bottom: 1px solid var(--border-subtle);
    flex: 0 0 auto; /* stays pinned, never shrinks or scrolls away */
}
#checkout-modal-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-primary); }

/* ── Step indicator (1 ── 2) ─────────────────────────────── */
.checkout-step-indicator {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: var(--space-sm) var(--space-md) 0;
}
.step-dot {
    width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; font-family: var(--font-display);
    background: var(--bg-elevated); border: 1.5px solid var(--border-subtle); color: var(--text-secondary);
    transition: background-color var(--duration-fast) var(--ease-out-soft), color var(--duration-fast) var(--ease-out-soft), border-color var(--duration-fast) var(--ease-out-soft);
}
.step-dot.is-active { background: var(--gradient-flame); border-color: transparent; color: var(--c-white); }
.step-line { width: 40px; height: 2px; background: var(--border-subtle); }

.checkout-step-title {
    font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 0.2rem 0 0.4rem;
    color: var(--text-primary);
}
.checkout-section-label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin-top: 0.7rem; display: block;
}

.checkout-step-btn { width: 100%; margin-top: 0.5rem; }
.checkout-step2-actions { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.checkout-step2-actions .checkout-step-btn-back { flex: 0 0 auto; padding-left: 1.2rem; padding-right: 1.2rem; }
.checkout-step2-actions .checkout-submit-btn { flex: 1; margin-top: 0; }

.checkout-form {
    padding: var(--space-md);
    display: flex; flex-direction: column; gap: 0.6rem;
    flex: 1 1 auto;
    min-height: 0;      /* required for a flex child to actually scroll instead of overflowing */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Keep the submit button visible at the bottom of the scroll area while
   typing further up the form — small but meaningful usability win on
   shorter laptop screens. */
.checkout-submit-btn {
    width: 100%; margin-top: var(--space-sm);
    position: sticky; bottom: 0;
    box-shadow: 0 -12px 16px -8px var(--bg);
}
.checkout-submit-btn .channel-icon { background: rgba(255,255,255,0.25); color: var(--c-white); }

@media (max-height: 700px) {
    .checkout-modal { max-height: 92vh; }
}
@media (max-width: 600px) {
    .checkout-modal { width: 100vw; max-height: 100dvh; max-height: 100vh; top: 0; left: 0; transform: none; border-radius: 0; }
    .checkout-modal.is-open { transform: none; }
}

@media (max-width: 380px) {
    .checkout-step2-actions { flex-direction: column-reverse; }
    .checkout-step2-actions .checkout-step-btn-back { width: 100%; }
}

/* ============================================================
   Checkout form fields — labels, inputs, coupon row
   (RESTORED — accidentally dropped in a prior edit)
   ============================================================ */
.checkout-form label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-primary);
    margin-top: 0.2rem; display: block;
}
.checkout-form label .optional { font-weight: 400; color: var(--text-secondary); text-transform: none; letter-spacing: 0; }
.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form input[type="password"],
.checkout-form select {
    font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary);
    background: var(--bg-elevated); border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 0.75rem 0.9rem; width: 100%;
    box-sizing: border-box;
    transition: border-color var(--duration-fast) var(--ease-out-soft), background-color var(--duration-fast) var(--ease-out-soft);
}
.checkout-form select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.8rem center;
}
.checkout-form input::placeholder { color: var(--text-secondary); opacity: 0.7; }
.checkout-form input:focus, .checkout-form select:focus {
    outline: none; border-color: var(--c-flame); background: var(--bg);
}
.checkout-form-error { color: var(--c-flame-deep); font-size: 0.78rem; margin-top: -0.3rem; }

.coupon-row { margin-top: 0.3rem; }
.coupon-input-wrap { display: flex; gap: 0.5rem; }
.coupon-input-wrap input { flex: 1; min-width: 0; }
.input-uppercase { text-transform: uppercase; letter-spacing: 0.04em; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
.coupon-feedback { font-size: 0.78rem; margin: 0.4rem 0 0; color: var(--text-secondary); }
.coupon-feedback.is-success { color: #2e8b57; }
.coupon-feedback.is-error { color: var(--c-flame-deep); }

.checkout-final-preview { margin: 0.4rem 0 0; }

.cart-empty { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.cart-line-remove {
    background: none; border: none; color: var(--text-secondary); cursor: pointer;
    font-size: 0.75rem; text-decoration: underline; text-underline-offset: 2px;
    padding: 0; margin-top: 0.2rem; transition: color var(--duration-fast) var(--ease);
}
.cart-line-remove:hover { color: var(--c-flame-deep); }

/* ── Pickup / Delivery segmented toggle ────────────────────── */
.fulfillment-toggle {
    display: flex; gap: 0.4rem; background: var(--bg-elevated);
    border: 1.5px solid var(--border-subtle); border-radius: var(--radius-sm);
    padding: 0.3rem; margin-top: 0.4rem; flex-wrap: wrap;
}
.fulfillment-option {
    flex: 1 1 120px; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    background: none; border: none; border-radius: calc(var(--radius-sm) - 2px);
    padding: 0.6rem 0.5rem; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary); cursor: pointer; white-space: nowrap;
    transition: background-color var(--duration-fast) var(--ease-out-soft), color var(--duration-fast) var(--ease-out-soft);
}
.fulfillment-option svg { flex-shrink: 0; }
.fulfillment-option:hover { color: var(--text-primary); }
.fulfillment-option.is-active {
    background: var(--gradient-flame); color: #fff;
}

#delivery-fields { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
#delivery-fields > label:not(:first-child) { margin-top: 0.6rem; }

.pickup-note {
    font-size: 0.82rem; color: var(--text-secondary); background: var(--bg-elevated);
    border: 1px dashed var(--border-subtle); border-radius: var(--radius-sm);
    padding: 0.7rem 0.9rem; margin: 0.2rem 0 0;
}

/* ── Order breakdown (subtotal / discount / delivery / total) ── */
.checkout-order-breakdown {
    background: var(--bg-elevated); border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm); padding: 0.9rem 1rem; margin-top: 0.4rem;
    display: flex; flex-direction: column; gap: 0.45rem;
}
.breakdown-row {
    display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--text-secondary);
}
.breakdown-row-total {
    padding-top: 0.5rem; margin-top: 0.15rem; border-top: 1px solid var(--border-subtle);
    font-size: 1rem; font-weight: 700; color: var(--text-primary);
    font-family: var(--font-display, var(--font-body));
}
#breakdown-discount-row span:last-child { color: #2e8b57; }

/* All checkout form elements respect the modal's width on any screen —
   prevents native inputs/selects from overflowing their container,
   which is what caused the mobile layout break. */
.checkout-form, .checkout-form * { box-sizing: border-box; max-width: 100%; }

/* ============================================================
   Menu / Drinks page background pattern (ChowStation food doodle)
   Very low opacity so it reads as texture, not clutter — sits
   behind content via a pseudo-element so real page background
   colors and text remain fully legible on top.
   ============================================================ */
.menu-page, .drinks-page { position: relative; isolation: isolate; }
.menu-page::before, .drinks-page::before {
    content: '';
    position: absolute; inset: 0;
    background-repeat: repeat;
    background-size: 340px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}
.theme-light .menu-page::before, .theme-light .drinks-page::before {
    background-image: url('/images/patterns/chowstation-pattern-black.png');
}
.theme-dark .menu-page::before, .theme-dark .drinks-page::before {
    background-image: url('/images/patterns/chowstation-pattern-white.png');
    opacity: 0.07;
}

/* ============================================================
   Page header (menu/drinks pages)
   ============================================================ */
.page-header-dark { background: var(--c-black); color: var(--c-white); padding: 138px var(--space-md) var(--space-xl); position: relative; }
.page-header-photo {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    isolation: isolate;
}
.page-header-photo::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%);
}
.page-header-photo .page-header-dark-inner { position: relative; z-index: 1; }
.page-header-dark-inner { max-width: var(--max-width); margin: 0 auto; }
.page-header-dark h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: var(--space-sm); color: var(--c-white); }
.page-header-dark p { color: rgba(255,255,255,0.6); max-width: 50ch; }
.page-header-dark .eyebrow { color: var(--c-flame); }

/* Search/sort toolbar for the menu page, restyled to match index look */
.menu-toolbar { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-md); align-items: center; justify-content: space-between; }
.drinks-toolbar { justify-content: flex-start; margin-bottom: var(--space-lg); }
.menu-search { display: flex; align-items: center; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); padding: 0.3rem 0.3rem 0.3rem 1.15rem; flex: 1; max-width: 440px; }
.menu-search input { flex: 1; border: none; background: none; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary); outline: none; }
.menu-search button { background: var(--c-black); color: var(--c-white); border: none; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.menu-sort { display: flex; align-items: center; gap: 0.5rem; }
.menu-sort label { font-size: 0.85rem; color: var(--text-secondary); }
.menu-sort select { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 0.6rem 0.9rem; font-family: var(--font-body); color: var(--text-primary); }
.menu-filter-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.filter-chip { font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.05rem; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle); color: var(--text-secondary); transition: all var(--duration-fast) var(--ease); font-family: var(--font-body); background: none; cursor: pointer; }
.filter-chip:hover { border-color: var(--c-flame); color: var(--text-primary); }
.menu-results-summary { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-md); }
.menu-pagination { display: flex; justify-content: center; margin-top: var(--space-xl); }
.menu-pagination .pagination {
    display: flex; list-style: none; gap: 0.3rem; padding: 0.4rem; margin: 0; flex-wrap: wrap;
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
}
.menu-pagination .page-item .page-link {
    display: flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 0.85rem;
    border-radius: var(--radius-pill); border: none; background: transparent; color: var(--text-secondary);
    font-size: 0.88rem; font-weight: 700; font-family: var(--font-body);
    transition: background-color var(--duration-fast) var(--ease-out-soft), color var(--duration-fast) var(--ease),
                transform var(--duration-instant) var(--ease-spring);
}
.menu-pagination .page-item .page-link:hover { background: rgba(238,35,40,0.1); color: var(--c-flame); transform: translateY(-1px); }
.menu-pagination .page-item.active .page-link {
    background: var(--c-flame); color: var(--c-white); box-shadow: 0 6px 16px rgba(238,35,40,0.35);
    transform: scale(1.06);
}
.menu-pagination .page-item.active .page-link:hover { transform: scale(1.06); }
.menu-pagination .page-item.disabled .page-link { opacity: 0.32; cursor: not-allowed; }
.menu-pagination .page-item.disabled .page-link:hover { background: transparent; color: var(--text-secondary); transform: none; }
@media (max-width: 480px) {
    .menu-pagination .page-item .page-link { min-width: 36px; height: 36px; padding: 0 0.5rem; font-size: 0.82rem; }
}

/* Drinks page groups, in the index-row style for consistency */
.drinks-page { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md) var(--space-2xl); }
.drinks-group { margin-bottom: var(--space-xl); }
.drinks-group-title { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: var(--space-sm); }
.drinks-cta-section { padding-top: 0; }
.drinks-cta {
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-lg);
    display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); flex-wrap: wrap; box-shadow: var(--shadow-card);
}
.drinks-cta h2 { font-size: 1.55rem; margin: 0.3rem 0; }

/* ============================================================
   Scroll-reveal utility
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out-soft), transform 0.8s var(--ease-out-soft); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
/* ============================================================
   Signature Combos — public cards + customize modal
   ============================================================ */
.combos-section { padding-top: var(--space-lg); }
.combos-head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.combos-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-top: 0.3rem; }

.combos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-md); }
.combo-card {
    display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-elevated); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card);
    transition: transform var(--duration-slow) var(--ease-out-soft), box-shadow var(--duration-slow) var(--ease-out-soft);
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.14); }
.combo-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.combo-card-image img { width: 100%; height: 100%; object-fit: cover; }
.combo-card-badge {
    position: absolute; top: 12px; left: 12px; background: var(--gradient-flame); color: var(--c-white);
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 0.3rem 0.65rem; border-radius: var(--radius-pill);
}
.combo-card-body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.combo-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.combo-card-desc { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.45; flex: 1; }
.combo-card-footer { display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); margin-top: 0.3rem; }
.combo-card-price { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; }
.combo-customize-btn {
    padding: 0.55rem 1.1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--text-primary);
    background: none; font-weight: 600; font-size: 0.85rem; cursor: pointer; color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease); font-family: var(--font-body);
}
.combo-customize-btn:hover { background: var(--gradient-flame-radial); border-color: var(--c-flame); color: var(--c-white); }
.combo-card-sold-out { font-size: 0.68rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }

/* Customize modal — built dynamically in JS, styles below target the
   classes cart.js assigns when it constructs the modal. */
.combo-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998;
    opacity: 0; pointer-events: none; transition: opacity var(--duration-fast) var(--ease);
}
.combo-modal-overlay.is-visible { opacity: 1; pointer-events: auto; }
.combo-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%);
    width: min(480px, 92vw); max-height: 86vh; overflow-y: auto;
    background: var(--bg); border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    z-index: 9999; opacity: 0; pointer-events: none; transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.combo-modal.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.combo-modal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-md); padding: var(--space-md) var(--space-md) 0; }
.combo-modal-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.combo-modal-price { font-family: var(--font-mono); color: var(--c-flame); font-weight: 600; margin-top: 0.2rem; }
.combo-modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-secondary); line-height: 1; padding: 4px; }
.combo-modal-body { padding: var(--space-md); }
.combo-modal-group { margin-bottom: var(--space-md); }
.combo-modal-group-label { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.5rem; display: block; }
.combo-modal-choice {
    display: flex; align-items: center; gap: 0.55rem; padding: 0.55rem 0.7rem; border-radius: var(--radius-md);
    border: 1.5px solid var(--border-subtle); margin-bottom: 0.4rem; cursor: pointer; transition: all var(--duration-fast) var(--ease);
}
.combo-modal-choice:hover { border-color: var(--c-flame); }
.combo-modal-choice input[type="radio"] { accent-color: var(--c-flame); width: 16px; height: 16px; flex-shrink: 0; }
.combo-modal-choice.is-selected { border-color: var(--c-flame); background: var(--row-hover-tint); }
.combo-modal-footer { padding: var(--space-md); border-top: 1px solid var(--border-subtle); }
.combo-modal-error { color: var(--c-flame); font-size: 0.82rem; margin-bottom: var(--space-sm); display: none; }
.combo-modal-error.is-visible { display: block; }
.combo-modal-add-btn {
    width: 100%; padding: 0.85rem; border-radius: var(--radius-pill); border: none;
    background: var(--gradient-flame); color: var(--c-white); font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: transform var(--duration-fast) var(--ease);
}
.combo-modal-add-btn:hover { transform: translateY(-1px); }

@media (max-width: 480px) {
    .combos-grid { grid-template-columns: repeat(auto-fill, minmax(48%, 1fr)); gap: var(--space-sm); }
    .combo-card-name { font-size: 1rem; }
}

/* ============================================================
   Admin combo option-group repeater
   ============================================================ */
.combo-group-row {
    border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm); background: var(--bg-elevated);
}
.combo-group-row-header { display: flex; gap: var(--space-sm); align-items: center; margin-bottom: var(--space-sm); }
.combo-group-row-header .combo-group-name { flex: 1; font-weight: 600; }
.combo-choices-wrap { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-sm); padding-left: var(--space-md); }
.combo-choice-row { display: flex; gap: 0.5rem; align-items: center; }
.combo-choice-row input { flex: 1; }
.combo-remove-choice {
    background: none; border: 1px solid var(--border-subtle); border-radius: 50%; width: 26px; height: 26px;
    cursor: pointer; color: var(--text-secondary); font-size: 1rem; line-height: 1; flex-shrink: 0;
}
.combo-remove-choice:hover { border-color: var(--c-flame); color: var(--c-flame); }

/* ============================================================
   Admin — simple pill tabs (used by Feedback / Feedback Questions)
   ============================================================ */
.admin-tabs { display: flex; gap: 0.5rem; }
.admin-tabs a {
    padding: 0.5rem 1.1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--border-subtle);
    font-weight: 600; font-size: 0.85rem; color: var(--text-primary); text-decoration: none;
    transition: all var(--duration-fast) var(--ease);
}
.admin-tabs a:hover { border-color: var(--c-flame); }
.admin-tabs a.is-active { background: var(--gradient-flame); border-color: transparent; color: #fff; }

/* ============================================================
   "Added to cart" toast — replaces auto-opening the drawer on
   every add, so browsing isn't interrupted each time.
   ============================================================ */
.cart-added-toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--gradient-flame); color: #fff; font-weight: 600; font-size: 0.88rem;
    padding: 0.75rem 1.4rem; border-radius: var(--radius-pill); box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    opacity: 0; pointer-events: none; z-index: 9997;
    transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
    white-space: nowrap; max-width: 90vw; overflow: hidden; text-overflow: ellipsis;
}
.cart-added-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 480px) {
    .cart-added-toast { bottom: 16px; font-size: 0.82rem; padding: 0.65rem 1.1rem; }
}

/* Drinks quick-jump chip — visually distinct from real category
   filters since it scrolls to a section rather than filtering */
#drinks-teaser { scroll-margin-top: 20px; }
.filter-chip-drinks {
    border-color: var(--c-flame-bright) !important;
    color: var(--c-flame-bright) !important;
}
.filter-chip-drinks:hover { background: var(--c-flame-bright); color: #fff !important; }

/* Mid-menu drinks teaser section */
.drinks-teaser-section {
    margin: var(--space-xl) 0; padding: var(--space-lg) 0;
    border-top: 1px dashed var(--border-subtle); border-bottom: 1px dashed var(--border-subtle);
}
.drinks-teaser-cta { text-align: center; margin-top: var(--space-md); }