/* ============================================
   SPICY MANGO KITCHEN — Light Theme
   Modern. Clean. Highly readable.
   ============================================ */

:root {
  /* Color palette — warm light theme */
  --color-bg: #FAF7F1;            /* warm off-white page background */
  --color-bg-soft: #FFFFFF;        /* pure white section background */
  --color-bg-card: #FFFFFF;        /* card surface */
  --color-cream: #1A1A1A;          /* (repurposed) primary text color */
  --color-cream-dim: #4A4A4A;      /* secondary text */
  --color-mango: #B8451A;          /* primary accent — muted terracotta, less neon */
  --color-mango-light: #D9602F;
  --color-turmeric: #B89540;        /* muted gold accent */
  --color-chili: #8B1F1F;           /* muted spicy red */
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-glass: rgba(0, 0, 0, 0.03);
  --color-shadow: rgba(0, 0, 0, 0.08);
  --color-hero-bg: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 50%, var(--color-chili) 100%);
  --color-input-bg: #FFFFFF;
  --color-input-border: rgba(0, 0, 0, 0.08);
  --color-overlay: rgba(255, 255, 255, 0.85);
  --color-overlay-solid: #FFFFFF;
  --color-nav-bg: rgba(250, 247, 241, 0.85);
  --color-nav-bg-scrolled: rgba(255, 255, 255, 0.92);
  --color-cta-text: #1A1A1A;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(232, 90, 31, 0.25);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --t-theme: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   Dark theme — warm "tandoor at night" feel
   ============================================ */
[data-theme="dark"] {
  --color-bg: #14100D;            /* deep warm dark, not pure black */
  --color-bg-soft: #1C1814;        /* slightly lighter dark section */
  --color-bg-card: #221C16;        /* dark card surface */
  --color-cream: #F5EDE0;          /* warm off-white primary text */
  --color-cream-dim: #B8AB9A;      /* secondary text */
  --color-mango: #D9602F;          /* muted terracotta for dark bg */
  --color-mango-light: #E27848;
  --color-turmeric: #C9A04D;
  --color-chili: #A83338;
  --color-text: #F5EDE0;
  --color-text-muted: #998A78;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(255, 255, 255, 0.03);
  --color-shadow: rgba(0, 0, 0, 0.4);
  --color-hero-bg: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 50%, var(--color-chili) 100%);
  --color-input-bg: #1C1814;
  --color-input-border: rgba(255, 255, 255, 0.1);
  --color-overlay: rgba(20, 16, 13, 0.85);
  --color-overlay-solid: #14100D;
  --color-nav-bg: rgba(20, 16, 13, 0.85);
  --color-nav-bg-scrolled: rgba(20, 16, 13, 0.95);
  --color-cta-text: #14100D;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5), 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(255, 107, 44, 0.4);
}

/* Smooth theme transition for body */
body, .nav, .nav.scrolled, .cart-drawer, .mobile-menu,
.order-card, .dish-card, .value-card, .category-card, .testimonial,
.newsletter-inner, .gallery-tile, .menu-item, .btn, input, select, textarea {
  transition: var(--t-theme);
}

@media (prefers-reduced-motion: reduce) {
  body, .nav, .nav.scrolled, .cart-drawer, .mobile-menu,
  .order-card, .dish-card, .value-card, .category-card, .testimonial,
  .newsletter-inner, .gallery-tile, .menu-item, .btn, input, select, textarea {
    transition: none;
  }
}

/* System pref auto-dark on first visit (no preference set yet) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #14100D;
    --color-bg-soft: #1C1814;
    --color-bg-card: #221C16;
    --color-cream: #F5EDE0;
    --color-cream-dim: #B8AB9A;
    --color-mango: #D9602F;
    --color-mango-light: #E27848;
    --color-turmeric: #C9A04D;
    --color-chili: #A83338;
    --color-text: #F5EDE0;
    --color-text-muted: #998A78;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-shadow: rgba(0, 0, 0, 0.4);
    --color-hero-bg: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 50%, var(--color-chili) 100%);
    --color-input-bg: #1C1814;
    --color-input-border: rgba(255, 255, 255, 0.1);
    --color-overlay: rgba(20, 16, 13, 0.85);
    --color-overlay-solid: #14100D;
    --color-nav-bg: rgba(20, 16, 13, 0.85);
    --color-nav-bg-scrolled: rgba(20, 16, 13, 0.95);
    --color-cta-text: #14100D;
  }
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  color: var(--color-text);
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mango);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--color-mango);
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: var(--space-2xl) 0; }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 1rem;
  color: var(--color-text-muted);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-mango);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 90, 31, 0.3);
}

.btn-primary:hover {
  background: var(--color-mango-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 90, 31, 0.4);
}

.btn-secondary {
  background: var(--color-bg-soft);
  color: var(--color-cream);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-cream);
  color: #fff;
  border-color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-cream);
  padding: 0.75rem 1.5rem;
}

.btn-ghost:hover { color: var(--color-mango); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-mango);
  transition: gap var(--t-fast);
  font-size: 0.95rem;
}

.btn-arrow:hover { gap: 1rem; }

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--t-base);
  background: var(--color-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled {
  background: var(--color-nav-bg-scrolled);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-cream);
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 50%, var(--color-chili) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 16px rgba(232, 90, 31, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transform: rotate(-4deg);
  transition: transform var(--t-base);
}

.logo:hover .logo-mark { transform: rotate(0) scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-text-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--color-cream);
  line-height: 1;
}

.logo-text-main .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--color-mango);
}

.logo-text-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1;
  margin-top: 1px;
}

@media (max-width: 480px) {
  .logo-text-tagline { display: none; }
  .logo { gap: 0.5rem; }
}

.nav-links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-cream);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-mango);
  transition: width var(--t-base);
  border-radius: 2px;
}

.nav-link:hover { color: var(--color-mango); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--color-mango); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: all var(--t-base);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100vh;
  background: var(--color-bg-soft);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--t-base);
  border-left: 1px solid var(--color-border);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu .nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-cream);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 2rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Hero (light theme) — no background image
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--color-hero-bg);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/></svg>");
  pointer-events: none;
  opacity: 0.5;
}

.hero-bg {
  display: none;
}

.hero-grain {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 30px rgba(255, 255, 255, 0.3);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 580px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* On mobile, hide the secondary CTA — keep only the primary 'Order Online' action */
@media (max-width: 640px) {
  .hero-actions .btn-secondary { display: none; }
  .hero-actions { margin-bottom: 2rem; }
  .hero-stats { gap: 1rem; padding-top: 1.5rem; margin-top: 1.5rem; }
  .hero-stats .num { font-size: 1.6rem; }
  .hero-stats .label { font-size: 0.7rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-stat .num span {
  color: var(--color-turmeric);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #fff, transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--color-mango);
  color: #fff;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track span::after {
  content: '✦';
  font-style: normal;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   About / Story
   ============================================ */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
  }
}

.about-images {
  position: relative;
  aspect-ratio: 4/5;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img:hover img { transform: scale(1.05); }

.about-img-1 {
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  z-index: 1;
}

.about-img-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  z-index: 2;
  border: 4px solid #fff;
}

.about-badge {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-mango);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 1rem;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  to { transform: translateY(-50%) rotate(360deg); }
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  animation: spin-slow-rev 20s linear infinite;
}

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

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--color-cream);
}

.about-content h2 .italic {
  font-style: italic;
  color: var(--color-mango);
}

.about-content p {
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(232, 90, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mango);
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
}

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

/* ============================================
   Featured Dishes
   ============================================ */
.featured {
  background: var(--color-bg-soft);
  position: relative;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
}

.dish-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--t-base);
  cursor: pointer;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-mango);
}

.dish-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.dish-card:hover .dish-card-bg img { transform: scale(1.08); }

.dish-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}

.dish-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  background: var(--color-mango);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.dish-tag.chili { background: var(--color-chili); }
.dish-tag.turmeric { background: var(--color-turmeric); color: #1A1A1A; }

.dish-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
}

.dish-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.dish-content h3 a { color: inherit; }
.dish-content h3 a:hover { color: var(--color-mango-light); }

.dish-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-turmeric);
}

.dish-spice {
  display: flex;
  gap: 3px;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.spice-dots {
  display: flex;
  gap: 2px;
}

.spice-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-mango);
}

.spice-dots span.muted { background: rgba(255, 255, 255, 0.25); }

/* ============================================
   How to Order
   ============================================ */
.order-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .order-options { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .order-options { grid-template-columns: repeat(4, 1fr); }
}

.order-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-mango);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.order-card:hover {
  border-color: var(--color-mango);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.order-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(232, 90, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-mango);
}

.order-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.order-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--color-text-muted);
}

.order-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-mango);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.order-card-cta::after {
  content: '→';
  transition: transform var(--t-fast);
}

.order-card:hover .order-card-cta::after { transform: translateX(4px); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  color: var(--color-turmeric);
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mango), var(--color-chili));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cream);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cta-banner-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--color-mango) 0%, var(--color-chili) 100%);
  text-align: center;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 600;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-banner .btn {
  background: #fff;
  color: var(--color-mango);
  border-color: #fff;
}

.cta-banner .btn:hover {
  background: var(--color-cream);
  color: #fff;
}

/* ============================================
   Page Header (inner pages) — no background image
   ============================================ */
.page-header {
  position: relative;
  padding: 9rem 0 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-mango) 0%, #FF8C42 100%);
  color: #fff;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(212, 160, 23, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.page-header-bg {
  display: none;
}

.page-header > .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.page-header h1 .italic {
  font-style: italic;
  color: #fff;
  font-weight: 500;
  opacity: 0.95;
}

.page-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.page-header .eyebrow {
  color: rgba(255, 255, 255, 0.95);
}

.page-header .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Menu Page
   ============================================ */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.menu-filter-btn {
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-cream);
  background: var(--color-bg-soft);
  transition: all var(--t-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-filter-btn:hover {
  border-color: var(--color-mango);
  color: var(--color-mango);
}

.menu-filter-btn.active {
  background: var(--color-mango);
  color: #fff;
  border-color: var(--color-mango);
  box-shadow: 0 4px 14px rgba(232, 90, 31, 0.3);
}

.menu-category {
  margin-bottom: 5rem;
}

.menu-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.menu-category-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.menu-category-header h2 .num {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-mango);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-style: normal;
  background: rgba(232, 90, 31, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.menu-category-header p {
  font-size: 0.95rem;
  max-width: 400px;
  text-align: right;
  color: var(--color-text-muted);
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .menu-items { grid-template-columns: repeat(2, 1fr); gap: 1rem 3rem; }
}

/* ============================================
   Menu Item — Light theme, more readable
   ============================================ */
.menu-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--color-border);
  cursor: pointer;
  transition: padding var(--t-fast), background var(--t-fast);
  border-radius: var(--radius-md);
}

.menu-item:hover {
  background: var(--color-glass);
  border-radius: var(--radius-md);
}

.menu-item-img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-sm);
}

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

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

.menu-item-content {
  flex-grow: 1;
  min-width: 0;
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.menu-item-name a {
  color: inherit;
  transition: color var(--t-fast);
}

.menu-item-name a:hover { color: var(--color-mango); }

.menu-item-name .dots {
  display: none; /* remove dotted line — cleaner */
}

.menu-item-name .price {
  font-family: var(--font-display);
  color: var(--color-mango);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.diet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  font-size: 0.7rem;
  color: var(--color-turmeric);
  font-family: var(--font-body);
  font-weight: 700;
  border: 1.5px solid var(--color-turmeric);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.spice-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--color-chili);
  margin-top: 0.4rem;
  margin-right: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.spice-level .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-chili);
}

.spice-level .dot.empty { background: rgba(184, 36, 42, 0.18); }

/* ============================================
   Order / Reservations Page
   ============================================ */
.order-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .order-page-grid { grid-template-columns: 1.2fr 1fr; }
}

.platform-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.platform-card:hover {
  border-color: var(--color-mango);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.platform-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  padding: 0.5rem;
}

.platform-logo.uber { background: #000000; }
.platform-logo.doordash { background: #FF3008; }
.platform-logo.pickup { background: linear-gradient(135deg, var(--color-mango), var(--color-chili)); }
.platform-logo.dinein { background: linear-gradient(135deg, var(--color-turmeric), var(--color-mango)); color: #fff; }

.platform-info h3 {
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
}

.platform-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.platform-info .meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-mango);
  font-weight: 500;
}

.platform-arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--color-mango);
  transition: transform var(--t-fast);
}

.platform-card:hover .platform-arrow { transform: translateX(4px); }

/* ============================================
   Forms (cleaner inputs/selects)
   ============================================ */
.reservation-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.reservation-form h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.reservation-form .form-sub {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.95rem 1.1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-cream);
  transition: all var(--t-fast);
  width: 100%;
  font-weight: 500;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(232, 90, 31, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mango);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 90, 31, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E85A1F' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(212, 160, 23, 0.1);
  border: 1.5px solid var(--color-turmeric);
  border-radius: var(--radius-md);
  color: var(--color-turmeric);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-success.show { display: block; }

/* ============================================
   Info strip
   ============================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

.info-card:hover {
  border-color: var(--color-mango);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(232, 90, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mango);
}

.info-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-mango);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--color-cream);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.info-card p + p { margin-top: 0.5rem; }
.info-card a:hover { color: var(--color-mango); }

.map-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.contact-form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table td {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
  color: var(--color-cream);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-mango);
  font-weight: 600;
}

.hours-table tr:last-child td { border-bottom: none; }

.hours-table td:first-child { color: var(--color-text); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-soft);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  max-width: 320px;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  transition: all var(--t-fast);
}

.footer-social:hover {
  background: var(--color-mango);
  border-color: var(--color-mango);
  color: #fff;
  transform: translateY(-2px);
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--color-mango); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom a:hover { color: var(--color-mango); }

/* ============================================
   Scroll reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
::selection {
  background: var(--color-mango);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-mango); }

/* ============================================
   Cart UI (light theme)
   ============================================ */
.cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1.5px solid var(--color-border);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  margin-right: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.cart-toggle:hover {
  background: var(--color-mango);
  border-color: var(--color-mango);
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--color-mango);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: transform var(--t-fast);
}

.cart-badge.bump { animation: cart-bump 0.4s ease; }

@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

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

/* Cart drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(4px);
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 440px);
  height: 100vh;
  background: var(--color-bg-soft);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-base);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--color-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--t-fast);
}

.cart-close:hover {
  background: var(--color-chili);
  color: #fff;
  border-color: var(--color-chili);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--color-text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-empty h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

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

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.cart-item-name a {
  color: inherit;
}

.cart-item-name a:hover { color: var(--color-mango); }

.cart-item-price {
  font-size: 0.85rem;
  color: var(--color-mango);
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--color-mango);
  color: #fff;
  border-color: var(--color-mango);
}

.qty-display {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  color: var(--color-cream);
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: auto;
  align-self: flex-start;
  transition: color var(--t-fast);
}

.cart-item-remove:hover { color: var(--color-chili); }

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cart-summary-row.total {
  font-size: 1.15rem;
  color: var(--color-cream);
  font-weight: 600;
  font-family: var(--font-display);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--color-border);
}

.cart-summary-row.total .price {
  color: var(--color-mango);
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-drawer-footer .btn { width: 100%; }

.cart-drawer-footer .btn + .btn {
  margin-top: 0.5rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.cart-drawer-footer .btn + .btn:hover {
  background: var(--color-glass);
  color: var(--color-cream);
  transform: none;
  box-shadow: none;
}

/* Add to cart button on menu */
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-mango);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 90, 31, 0.25);
}

.add-to-cart-btn:hover {
  background: var(--color-mango-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 90, 31, 0.35);
}

.add-to-cart-btn.added {
  background: var(--color-turmeric);
  color: #1A1A1A;
  animation: pulse 0.4s ease;
}

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

.add-to-cart-btn svg { width: 14px; height: 14px; }

.dish-card .add-to-cart-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.menu-item .add-to-cart-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.menu-item .add-to-cart-controls .add-to-cart-btn {
  flex: 1;
  min-width: 100px;
}

/* ============================================
   Checkout page
   ============================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }
}

.checkout-section {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.checkout-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-section .section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-mango);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-section .section-sub {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  margin-left: 44px;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .payment-options { grid-template-columns: 1fr 1fr; }
}

.payment-option {
  position: relative;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option-card {
  padding: 1.25rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.payment-option input:checked + .payment-option-card {
  border-color: var(--color-mango);
  background: rgba(232, 90, 31, 0.05);
}

.payment-option-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-option-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.order-summary {
  position: sticky;
  top: 100px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.order-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-cream);
}

.order-summary-items {
  max-height: 320px;
  overflow-y: auto;
  margin: 0 -0.5rem;
  padding: 0 0.5rem;
}

.order-summary-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
  align-items: center;
}

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

.order-summary-item-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

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

.order-summary-item-info {
  flex: 1;
  min-width: 0;
}

.order-summary-item-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.order-summary-item-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.order-summary-item-price {
  font-size: 0.9rem;
  color: var(--color-mango);
  font-weight: 600;
  flex-shrink: 0;
}

.order-summary-totals {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.confirm-banner {
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--color-turmeric);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-cream);
}

.confirm-banner strong { color: var(--color-turmeric); }
.confirm-banner code {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ============================================
   Dish detail page (light theme) — no background image
   ============================================ */
.dish-hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 100%);
  color: #fff;
}

.dish-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.dish-hero-bg {
  display: none;
}

.dish-hero .container { position: relative; z-index: 1; }

.dish-hero-content {
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--t-fast);
  font-weight: 500;
}

.breadcrumb a:hover { color: var(--color-mango); }

.breadcrumb-sep { opacity: 0.5; }

.breadcrumb-current { color: var(--color-mango); font-weight: 600; }

.dish-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.dish-hero .dish-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.dish-price-large {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.dish-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dish-tag-pill {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.dish-tag-pill.spice { background: rgba(255, 255, 255, 0.95); color: var(--color-chili); border-color: transparent; }
.dish-tag-pill.veg { background: var(--color-turmeric); color: #1A1A1A; border-color: transparent; }

.dish-hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-bottom: 2rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.5); }
.breadcrumb-current { color: #fff; font-weight: 600; }

.dish-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dish-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .dish-content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.dish-section {
  margin-bottom: 2.5rem;
}

.dish-section h2 {
  font-size: 1.75rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.dish-section h2::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-mango);
  border-radius: 2px;
}

.dish-section p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.dish-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dish-info-list .info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}

.dish-info-list .info-row .label {
  color: var(--color-text-muted);
}

.dish-info-list .info-row .value {
  color: var(--color-cream);
  font-weight: 600;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.ingredient-chip {
  padding: 0.7rem 1rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--color-cream);
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.dish-order-card {
  position: sticky;
  top: 100px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.dish-order-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
  font-weight: 600;
}

.dish-order-card .price-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-mango);
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.dish-order-card .qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.dish-order-card .qty-row .qty-btn {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.dish-order-card .qty-row .qty-display {
  min-width: 44px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.related-dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .related-dishes { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .related-dishes { grid-template-columns: 1fr; }
}

.related-dish {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-fast);
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.related-dish:hover {
  border-color: var(--color-mango);
  transform: translateX(4px);
}

.related-dish img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-dish-info {
  flex: 1;
  min-width: 0;
}

.related-dish-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.related-dish-price {
  font-size: 0.8rem;
  color: var(--color-mango);
  font-weight: 600;
}

/* ============================================
   FAQ accordion (better visual)
   ============================================ */
details.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

details.faq-item[open] {
  border-color: var(--color-mango);
  box-shadow: var(--shadow-md);
}

details.faq-item > summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

details.faq-item > summary::after {
  content: '';
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2.5'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--t-base);
}

details.faq-item[open] > summary::after {
  background: var(--color-mango);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  border-color: var(--color-mango);
  transform: rotate(180deg);
}

details.faq-item > div {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text);
}

details.faq-item p {
  margin: 0;
  line-height: 1.65;
  color: var(--color-text);
}

details.faq-item p a {
  color: var(--color-mango);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   Promo code UI
   ============================================ */
.promo-input-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.promo-input {
  flex: 1;
  padding: 0.7rem 0.95rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--t-fast);
}

.promo-input:focus {
  outline: none;
  border-color: var(--color-mango);
  background: #fff;
}

.promo-apply-btn {
  padding: 0.7rem 1.2rem;
  background: var(--color-cream);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.promo-apply-btn:hover { background: var(--color-mango); }

.promo-message {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}

.promo-message.error { color: var(--color-chili); }
.promo-message.success { color: var(--color-turmeric); font-weight: 600; }

.promo-applied {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(212, 160, 23, 0.1);
  border: 1.5px solid var(--color-turmeric);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.promo-applied strong {
  color: var(--color-turmeric);
  font-size: 0.95rem;
  display: block;
  letter-spacing: 0.05em;
}

.promo-applied .promo-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

.promo-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color var(--t-fast);
}

.promo-remove:hover { color: var(--color-chili); }

.promo-discount-row { color: var(--color-turmeric); font-weight: 600; }

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-cream);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-toast svg { color: var(--color-mango); flex-shrink: 0; }
.cart-toast strong { color: var(--color-mango); }

/* ============================================
   UI Upgrade v2 — accent-italic helper,
   hero food image, trust strip, categories,
   gallery, visit preview, polish
   ============================================ */

/* Reusable accent for inline italic mango accent in h2s (replaces inline style=) */
.accent-italic {
  font-style: italic;
  color: var(--color-mango);
  font-weight: 600;
}

/* ============================================
   Hero v2 — layered with food image
   ============================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #1a1a1a;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo:hover img { transform: scale(1.04); }

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero-photo-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-photo-caption strong {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}

.hero-floating-card {
  position: absolute;
  background: var(--color-overlay-solid);
  color: #1A1A1A;
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 3;
  font-size: 0.85rem;
  color: #1a1a1a;
  font-weight: 600;
  animation: floatY 4s ease-in-out infinite;
}

.hero-floating-card.top {
  top: 2rem;
  right: -1rem;
}

.hero-floating-card.bottom {
  bottom: 4rem;
  left: -1.5rem;
  animation-delay: -2s;
}

.hero-floating-card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-mango), var(--color-chili));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hero-floating-card small {
  display: block;
  font-size: 0.7rem;
  color: #6b6b6b;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 90, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mango);
  flex-shrink: 0;
}

.trust-badge small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ============================================
   Categories quick-browse grid
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
}

.category-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  transition: opacity var(--t-base);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--t-slow);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-mango);
}

.category-card:hover img { transform: scale(1.08); }

.category-card-label {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.15;
}

.category-card-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.category-card-emoji {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ============================================
   "From Our Kitchen" gallery mosaic
   ============================================ */
.gallery {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .gallery { padding: var(--space-2xl) 0; }
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px;
    gap: 1rem;
  }
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform var(--t-base);
}

.gallery-tile.tall {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery-tile.tall {
    grid-row: span 1;
    grid-column: span 2;
  }
}

.gallery-tile:hover { transform: scale(1.02); }

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

.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-tile-overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}

.gallery-cta-row {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.gallery-cta-row small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gallery-cta-row small a {
  color: var(--color-mango);
  font-weight: 600;
}

/* ============================================
   Visit preview (homepage)
   ============================================ */
.visit-preview {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.visit-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 90, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-info-block h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.visit-info-block h3 span {
  width: 36px;
  height: 36px;
  background: rgba(232, 90, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mango);
}

.visit-info-block p,
.visit-info-block a {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text);
}

.visit-info-block a { color: var(--color-mango); font-weight: 500; }
.visit-info-block a:hover { text-decoration: underline; }

.visit-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.92rem;
}

.visit-hours-list li:last-child { border-bottom: none; }

.visit-hours-list .day { font-weight: 500; color: var(--color-cream); }
.visit-hours-list .time { color: var(--color-text-muted); font-variant-numeric: tabular-nums; }

.visit-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: #eee;
}

.visit-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-map-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--color-overlay-solid);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
  max-width: 240px;
}

.visit-map-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-cream);
}

.visit-map-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem 0;
}

.visit-map-card a {
  font-size: 0.82rem;
  color: var(--color-mango);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================
   CTA banner v2 — image + glow
   ============================================ */
.cta-banner-v2 {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--color-hero-bg);
  color: #fff;
  overflow: hidden;
}

.cta-banner-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-v2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/></svg>");
  pointer-events: none;
  opacity: 0.5;
}

.cta-banner-v2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-banner-v2-inner {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.cta-banner-v2 h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cta-banner-v2 h2 .accent-italic { color: #fff; opacity: 0.95; }

.cta-banner-v2 p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  max-width: 540px;
}

.cta-banner-v2 .btn {
  background: #fff;
  color: var(--color-mango);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  padding: 1.05rem 2rem;
  font-size: 1rem;
  white-space: nowrap;
}

.cta-banner-v2 .btn:hover {
  background: var(--color-cream);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-banner-v2-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-banner-v2-meta { align-items: flex-end; text-align: right; }
}

.cta-banner-v2-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
}

.newsletter-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-mango), var(--color-turmeric), var(--color-chili));
}

.newsletter h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-input-bg);
  color: var(--color-cream);
  transition: border-color var(--t-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-mango);
}

.newsletter-form button {
  padding: 0.95rem 1.6rem;
  background: var(--color-mango);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form button:hover { background: var(--color-mango-light); }

.newsletter-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* ============================================
   Subtle nav-cta pulse
   ============================================ */
@keyframes pulse-mango {
  0%, 100% { box-shadow: 0 4px 14px rgba(232, 90, 31, 0.3), 0 0 0 0 rgba(232, 90, 31, 0.4); }
  50% { box-shadow: 0 4px 14px rgba(232, 90, 31, 0.3), 0 0 0 8px rgba(232, 90, 31, 0); }
}

.nav-cta .btn-primary {
  animation: pulse-mango 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta .btn-primary { animation: none; }
  .hero-floating-card { animation: none; }
  .gallery-tile:hover { transform: none; }
}

/* ============================================
   Section eyebrow with left dash upgrade
   ============================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-mango);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-mango);
}

/* ============================================
   Press / accolades strip
   ============================================ */
.press-strip {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
}

.press-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 3rem;
}

.press-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
}

.press-strip-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-cream);
  opacity: 0.65;
  transition: opacity var(--t-fast);
  letter-spacing: -0.01em;
}

.press-strip-logo:hover { opacity: 1; }

.press-strip-logo em {
  font-style: italic;
  color: var(--color-mango);
}

/* ============================================
   Footer v2 polish
   ============================================ */
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover { color: var(--color-mango); }

/* ============================================
   Nav active state
   ============================================ */
.nav-link[aria-current="page"] {
  color: var(--color-mango);
}

.nav-link[aria-current="page"]::after { width: 100%; }

/* ============================================
   Dark mode toggle
   ============================================ */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(232, 90, 31, 0.1);
  color: var(--color-mango);
  transform: rotate(15deg);
}

.theme-toggle svg { width: 18px; height: 18px; }

.theme-toggle .sun,
.theme-toggle .moon {
  position: absolute;
  transition: opacity var(--t-base), transform var(--t-base);
}

[data-theme="dark"] .theme-toggle .sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

:root:not([data-theme="dark"]) .theme-toggle .sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
:root:not([data-theme="dark"]) .theme-toggle .moon { opacity: 1; transform: rotate(0) scale(1); }

/* Dark mode specific tweaks */
[data-theme="dark"] .hero .accent {
  background: rgba(255, 255, 255, 0.95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero-stat .num,
[data-theme="dark"] .hero-stat .label {
  color: #fff;
}

[data-theme="dark"] .hero-sub {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .marquee {
  background: #1a0e08;
  color: var(--color-cream);
}

[data-theme="dark"] .marquee-track {
  color: var(--color-cream);
}

[data-theme="dark"] .about-img-2 {
  border-color: var(--color-bg-soft);
}

[data-theme="dark"] .dish-tag.turmeric {
  color: #14100D;
}

[data-theme="dark"] .promo-input {
  background: var(--color-input-bg);
  color: var(--color-cream);
  border-color: var(--color-input-border);
}

[data-theme="dark"] .nav-cta .btn-secondary {
  background: var(--color-bg-soft);
  color: var(--color-cream);
  border-color: var(--color-border);
}

[data-theme="dark"] .nav-cta .btn-secondary:hover {
  background: var(--color-cream);
  color: var(--color-bg);
  border-color: var(--color-cream);
}

[data-theme="dark"] .logo-mark {
  box-shadow: 0 4px 14px rgba(255, 107, 44, 0.4);
}

[data-theme="dark"] .menu-toggle span {
  background: var(--color-cream);
}

[data-theme="dark"] .btn-secondary {
  background: var(--color-bg-soft);
  color: var(--color-cream);
  border-color: var(--color-border);
}

[data-theme="dark"] .btn-secondary:hover {
  background: var(--color-cream);
  color: var(--color-bg);
  border-color: var(--color-cream);
}

[data-theme="dark"] .testimonial {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .faq-item {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .order-card {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .dish-card {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .value-card {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .menu-item {
  background: var(--color-bg-card);
  color: var(--color-text);
}

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

[data-theme="dark"] .dish-order-card {
  background: var(--color-bg-card);
  color: var(--color-text);
}

[data-theme="dark"] .related-dish {
  background: var(--color-bg-card);
  color: var(--color-text);
}

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

[data-theme="dark"] .admin-body {
  background: var(--color-bg);
  color: var(--color-text);
}

[data-theme="dark"] .footer {
  background: var(--color-bg-soft);
}

[data-theme="dark"] img {
  opacity: 0.92;
}

/* Image lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  backdrop-filter: blur(8px);
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--t-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}


/* ============================================
   WhatsApp floating widget
   ============================================ */
.wa-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: all var(--t-base);
  text-decoration: none;
  cursor: pointer;
}

.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #1DA851;
}

.wa-fab svg { width: 30px; height: 30px; }

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-cream);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wa-fab-label::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--color-cream);
}

.wa-fab:hover .wa-fab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 768px) {
  .wa-fab {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem;
  }
  .wa-fab svg { width: 26px; height: 26px; }
  .wa-fab-label { display: none; }
}

/* WA preview tooltip */
.wa-preview {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  width: 300px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 89;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all var(--t-base);
}

.wa-preview.open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wa-preview-head {
  background: #075E54;
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  background: var(--color-mango);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wa-preview-head strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.wa-preview-head small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-preview-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.wa-preview-body {
  padding: 1rem;
  background: #ECE5DD;
  color: #303030;
}

[data-theme="dark"] .wa-preview-body {
  background: #2A2520;
  color: var(--color-cream);
}

.wa-preview-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  background: var(--color-bg-card);
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  border-top-left-radius: 4px;
  display: inline-block;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.wa-preview-cta {
  display: block;
  padding: 0.85rem;
  text-align: center;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background var(--t-fast);
}

.wa-preview-cta:hover { background: #1DA851; }

@media (max-width: 480px) {
  .wa-preview {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 5.5rem;
  }
}

/* ============================================
   Reorder card (home page)
   ============================================ */
.reorder-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(232, 90, 31, 0.08), rgba(212, 160, 23, 0.05));
  border: 1.5px solid var(--color-mango);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232, 90, 31, 0.1);
}

.reorder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-mango);
}

.reorder-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-mango);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.reorder-card-info {
  flex: 1;
  min-width: 0;
}

.reorder-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.2;
}

.reorder-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.reorder-card-btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reorder-card { flex-wrap: wrap; padding: 1rem; }
  .reorder-card-info { flex-basis: calc(100% - 60px); }
  .reorder-card-btn { width: 100%; margin-top: 0.5rem; }
}

/* ============================================
   Loyalty stamp card widget
   ============================================ */
.loyalty-card {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFEDD5 100%);
  border: 1.5px solid var(--color-mango);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .loyalty-card {
  background: linear-gradient(135deg, #1F1812 0%, #2A1F16 100%);
}

.loyalty-card::after {
  content: '🥭';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 6rem;
  opacity: 0.06;
  transform: rotate(15deg);
}

.loyalty-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.loyalty-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  font-weight: 700;
  line-height: 1.1;
}

.loyalty-card-head small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.loyalty-card-badge {
  background: var(--color-mango);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.loyalty-stamp {
  aspect-ratio: 1/1;
  background: var(--color-bg-soft);
  border: 1.5px dashed var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--t-base);
}

.loyalty-stamp.filled {
  background: var(--color-mango);
  border-style: solid;
  border-color: var(--color-mango);
  color: #fff;
  font-size: 1.1rem;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(232, 90, 31, 0.3);
}

.loyalty-card-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .loyalty-stamps { grid-template-columns: repeat(9, 1fr); gap: 0.25rem; }
  .loyalty-stamp { font-size: 0.7rem; }
  .loyalty-stamp.filled { font-size: 0.85rem; }
}

/* Cart-drawer loyalty mini */
.loyalty-mini {
  background: linear-gradient(135deg, rgba(232, 90, 31, 0.1), rgba(212, 160, 23, 0.05));
  border: 1px solid var(--color-mango);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.loyalty-mini-icon {
  font-size: 1.4rem;
}

.loyalty-mini-text {
  flex: 1;
  line-height: 1.3;
}

.loyalty-mini-text strong { color: var(--color-cream); display: block; }

.loyalty-mini-text small { color: var(--color-text-muted); font-size: 0.78rem; }

.loyalty-mini-dots {
  display: flex;
  gap: 3px;
}

.loyalty-mini-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}

.loyalty-mini-dots span.on { background: var(--color-mango); }

/* ============================================
   OUR STORY PAGE — premium editorial layout
   ============================================ */

/* Hero — clean, no image */
.story-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-mango) 0%, #FF8C42 50%, var(--color-chili) 100%);
  color: #fff;
  padding: 8rem 0 4rem;
}

.story-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.story-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.story-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.story-hero .eyebrow::before { background: rgba(255, 255, 255, 0.85); }

.story-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.story-hero h1 .accent-italic {
  color: #fff;
  font-style: italic;
  font-weight: 500;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 620px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.story-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 2rem;
}

.story-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-hero-meta-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.story-hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  font-style: italic;
}

/* Pull-quote / editorial spread */
.editorial-quote {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.editorial-quote::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--color-mango);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.editorial-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: -0.01em;
}

.editorial-quote-attr {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Numbered story sections (editorial chapters) — no images */
.story-chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 900px) {
  .story-chapter {
    grid-template-columns: 0.3fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .story-chapter.reverse {
    grid-template-columns: 0.3fr 1fr;
  }
}

.story-chapter-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  line-height: 0.9;
  letter-spacing: -0.05em;
  opacity: 0.9;
  user-select: none;
}

.story-chapter-num small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: normal;
}

.story-chapter-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

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

.story-chapter-image:hover img {
  transform: scale(1.04);
}

.story-chapter-image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.3;
}

[data-theme="dark"] .story-chapter-image-tag {
  background: rgba(20, 16, 13, 0.85);
}

.story-chapter-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.story-chapter-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.story-chapter-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.15em 0.15em 0 0;
  color: var(--color-mango);
}

.story-chapter-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--color-mango);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-cream);
}

.story-chapter-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Big number ticker on story */
.story-ticker {
  background: var(--color-bg-soft);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.story-ticker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .story-ticker-grid { grid-template-columns: repeat(4, 1fr); }
}

.story-ticker-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-mango);
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.02em;
}

.story-ticker-item .label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Timeline — scroll-driven */
.story-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 0;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .story-timeline::before { left: 1.5rem; }
}

.story-timeline-item {
  position: relative;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 4rem;
  }
}

.story-timeline-item:nth-child(even) .story-timeline-text { order: 1; }
.story-timeline-item:nth-child(even) .story-timeline-image { order: 2; }

.story-timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--color-mango);
  border: 4px solid var(--color-bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--color-mango);
}

@media (max-width: 768px) {
  .story-timeline-item::before { left: 1.5rem; transform: translate(-50%, -50%); }
}

.story-timeline-year {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.story-timeline-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.story-timeline-text p {
  color: var(--color-text);
  line-height: 1.7;
}

.story-timeline-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sourcing map / ingredients grid */
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.sourcing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: left;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.sourcing-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--color-mango);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all var(--t-base);
}

.sourcing-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-mango);
  box-shadow: var(--shadow-md);
}

.sourcing-card:hover::after {
  width: 120px;
  height: 120px;
  opacity: 0.1;
}

.sourcing-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.sourcing-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--color-cream);
}

.sourcing-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.sourcing-card .source {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-mango);
}

/* Team grid — editorial */
.team-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .team-editorial { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-editorial { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  text-align: center;
  position: relative;
}

.team-card-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  filter: grayscale(20%);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(232, 90, 31, 0.3));
  pointer-events: none;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--color-cream);
}

.team-card-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mango);
  margin-bottom: 0.85rem;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Awards / recognition */
.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.recognition-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

@media (min-width: 768px) {
  .recognition-item { grid-template-columns: 200px 1fr auto; gap: 2rem; align-items: center; }
}

.recognition-pub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-cream);
  font-style: italic;
}

.recognition-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.recognition-quote::before {
  content: '"';
  color: var(--color-mango);
  font-weight: 700;
  font-size: 1.3em;
}

.recognition-quote::after {
  content: '"';
  color: var(--color-mango);
  font-weight: 700;
  font-size: 1.3em;
}

.recognition-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Final manifesto / closing */
.story-manifesto {
  background: var(--color-bg-soft);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.story-manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 90, 31, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.story-manifesto-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story-manifesto h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.story-manifesto p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.story-manifesto p.lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-cream);
  margin-bottom: 2.5rem;
}

.story-signature {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--color-mango);
  transform: rotate(-3deg);
}

/* ============================================
   Google Reviews widget
   ============================================ */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 2rem 2.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

@media (min-width: 700px) {
  .reviews-summary {
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
  }
}

.reviews-summary-score {
  text-align: center;
  padding-right: 1.5rem;
  border-right: 1px solid var(--color-border);
}

@media (max-width: 699px) {
  .reviews-summary-score { border-right: none; border-bottom: 1px solid var(--color-border); padding-right: 0; padding-bottom: 1.5rem; }
}

.reviews-summary-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-cream);
  letter-spacing: -0.02em;
}

.reviews-summary-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.reviews-summary-meta {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reviews-summary-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.reviews-summary-bar-row {
  display: grid;
  grid-template-columns: 30px 1fr 50px;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.bar-label { font-weight: 600; color: var(--color-cream); }

.bar {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FBBC05, #F9AB00);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.bar-num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 500;
}

.reviews-summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-cream);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.reviews-summary-cta:hover {
  background: var(--color-mango);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 90, 31, 0.3);
}

.reviews-summary-cta svg { flex-shrink: 0; }

/* Add Google logo alignment to testimonial-author */
.testimonial-author {
  flex-wrap: wrap;
}
.testimonial-author .testimonial-google {
  margin-left: auto;
  opacity: 0.85;
}

/* ============================================
   CATERING PAGE
   ============================================ */
.catering-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .catering-packages { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.package-card {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-mango);
}

.package-card.featured {
  background: linear-gradient(180deg, var(--color-bg-card), var(--color-bg-soft));
  border-color: var(--color-mango);
  box-shadow: 0 8px 32px rgba(232, 90, 31, 0.12);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-mango);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.package-price {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.package-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-mango);
  font-weight: 700;
  font-style: italic;
  margin: 0 0.15rem;
}

.package-price small {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.package-card-head p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.package-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  color: var(--color-mango);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Event types grid — always 3 per line on desktop, stacks on mobile */
.event-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .event-types { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .event-types { grid-template-columns: repeat(3, 1fr); }
}

.event-type {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
}

.event-type:hover {
  transform: translateY(-3px);
  border-color: var(--color-mango);
  box-shadow: var(--shadow-sm);
}

.event-type-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.event-type h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.event-type p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* How steps */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}

.how-step {
  position: relative;
  padding: 2rem 0 0;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.how-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Catering form */
.catering-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.catering-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .catering-form-grid { grid-template-columns: 1fr; }
  .catering-form { padding: 1.5rem; }
}

.form-group-full { grid-column: 1 / -1; }

.catering-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-input-bg);
  color: var(--color-cream);
  border: 1.5px solid var(--color-input-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t-fast);
}

.catering-form input:focus,
.catering-form select:focus,
.catering-form textarea:focus {
  outline: none;
  border-color: var(--color-mango);
  box-shadow: 0 0 0 4px rgba(232, 90, 31, 0.1);
}

.catering-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catering-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream);
  transition: all var(--t-fast);
}

.catering-check:hover { border-color: var(--color-mango); }

.catering-check input { margin: 0; accent-color: var(--color-mango); }

.catering-check input:checked + * { color: var(--color-mango); }

.catering-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.catering-form-submit small {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.catering-form-submit a {
  color: var(--color-mango);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catering-form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.catering-form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-mango);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(232, 90, 31, 0.3);
}

.catering-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.catering-form-success p {
  color: var(--color-text);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}

.catering-form-success a {
  color: var(--color-mango);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   BLOG / JOURNAL
   ============================================ */

/* Featured post (top of blog index) */
.featured-post {
  display: grid;
  grid-template-columns: 1fr;
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .featured-post { grid-template-columns: 1.2fr 1fr; }
}

.featured-post-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

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

.featured-post:hover .featured-post-image img { transform: scale(1.05); }

.featured-post-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.featured-post-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.featured-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-mango);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

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

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

.blog-card-content {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-tag {
  color: var(--color-mango);
  font-weight: 700;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-mango);
  margin-top: auto;
  transition: gap var(--t-fast);
}

/* Single post layout */
.post {
  background: var(--color-bg);
}

.post-header {
  padding: 9rem 0 3rem;
  text-align: center;
}

.post-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.post-breadcrumb a { color: var(--color-text-muted); }
.post-breadcrumb a:hover { color: var(--color-mango); }
.post-breadcrumb .current { color: var(--color-cream); font-weight: 600; }

.post-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.post-tag {
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mango);
}

.post-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.post-lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mango), var(--color-chili));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.post-author strong {
  display: block;
  color: var(--color-cream);
  font-size: 0.95rem;
}

.post-author small {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.post-meta-right {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.post-hero-image {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.post-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-hero-image figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.75rem;
}

.post-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1180px;
  padding-bottom: 5rem;
}

@media (min-width: 1000px) {
  .post-body { grid-template-columns: minmax(0, 1fr) 320px; gap: 4rem; }
}

.post-content {
  max-width: 720px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}

.post-content p { margin-bottom: 1.5rem; }

.post-content .post-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.15em 0.15em 0 0;
  color: var(--color-mango);
}

.post-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 3rem 0 1.25rem;
  color: var(--color-cream);
  line-height: 1.25;
}

.post-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-cream);
}

.post-content ul, .post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 3px solid var(--color-mango);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--color-cream);
}

.post-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.post-signature {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-mango);
}

.post-content strong { color: var(--color-cream); font-weight: 600; }

/* Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
  align-self: start;
}

.post-sidebar-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.post-sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.post-sidebar-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.post-sidebar-dish {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.5rem;
  transition: all var(--t-fast);
}

.post-sidebar-dish:hover { background: rgba(232, 90, 31, 0.08); }

.post-sidebar-dish img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.post-sidebar-dish strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-cream);
}

.post-sidebar-dish span {
  font-size: 0.78rem;
  color: var(--color-mango);
  font-weight: 600;
}

.post-sidebar-cta {
  background: linear-gradient(180deg, var(--color-bg-card), var(--color-bg-soft));
  border-color: var(--color-mango);
  text-align: center;
}

.post-sidebar-cta .eyebrow { justify-content: center; }

/* Author + related */
.post-author-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.post-author-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mango), var(--color-chili));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.post-author-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-cream);
}

.post-author-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .post-author-card { flex-direction: column; text-align: center; }
}

.post-related {
  max-width: 1000px;
  margin: 0 auto;
}

.post-related h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-cream);
}

.post-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) { .post-related-grid { grid-template-columns: repeat(3, 1fr); } }

.post-related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-fast);
}

.post-related-card:hover { border-color: var(--color-mango); transform: translateX(4px); }

.post-related-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.post-related-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-cream);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.post-related-card span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================
   Express checkout (Apple Pay / Google Pay)
   ============================================ */
.express-checkout {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.apple-pay-btn,
.gpay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  min-height: 50px;
  letter-spacing: -0.01em;
}

.apple-pay-btn {
  background: #000;
  color: #fff;
}

.apple-pay-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.apple-pay-btn svg { display: block; }

.gpay-btn {
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
}

[data-theme="dark"] .gpay-btn {
  background: #2a2a2a;
  color: #f5f5f5;
  border-color: #444;
}

.gpay-btn:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .gpay-btn:hover {
  background: #333;
}

.express-checkout-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.express-checkout-divider::before,
.express-checkout-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

@media (max-width: 480px) {
  .apple-pay-btn,
  .gpay-btn { font-size: 1rem; padding: 0.85rem 1rem; }
}

/* Also show Apple Pay / Google Pay as a "quick order" button on the cart drawer */
.cart-drawer-express {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.cart-drawer-express .apple-pay-btn,
.cart-drawer-express .gpay-btn {
  flex: 1;
  font-size: 0.95rem;
  padding: 0.75rem 0.5rem;
  min-height: 44px;
}

/* ============================================
   DEALS SECTION (Pizza Hut style)
   ============================================ */
.deals-section {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.deals-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 90, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.deals-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.deals-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.deals-section-head p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .deals-grid { grid-template-columns: repeat(3, 1fr); } }

.deal-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.deal-card.featured {
  background: linear-gradient(180deg, var(--color-bg-card), var(--color-bg-soft));
  border-color: var(--color-mango);
  box-shadow: 0 8px 32px rgba(232, 90, 31, 0.15);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-mango);
}

.deal-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-mango);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.deal-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.deal-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-cream);
  line-height: 1.15;
}

.deal-card > p {
  color: var(--color-text);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.deal-choices {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.deal-choices li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.deal-choices li:last-child { border-bottom: none; }

.deal-choices strong {
  color: var(--color-cream);
  font-weight: 600;
}

.deal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1.5px solid var(--color-border);
  margin-top: auto;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.deal-price-was {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.deal-price-now {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  letter-spacing: -0.01em;
}

.deal-add {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================
   DEALS SECTION — distinct promotional banner
   ============================================ */
.deals-section {
  background: linear-gradient(135deg, #1A1208 0%, #2A1810 50%, #1A0A0A 100%);
  border-radius: 20px;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 4rem;
  border: 2px solid var(--color-mango);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232, 90, 31, 0.15);
}

[data-theme="dark"] .deals-section {
  background: linear-gradient(135deg, #0F0A05 0%, #1F140A 50%, #0F0606 100%);
  border-color: var(--color-mango);
}

.deals-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 90, 31, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.deals-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.deals-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.deals-section-head .eyebrow {
  background: var(--color-mango);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.deals-section-head .eyebrow::before { display: none; }

.deals-section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.deals-section-head h2 .accent-italic {
  color: var(--color-turmeric);
}

.deals-section-head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.deals-skip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--t-fast);
  position: relative;
  z-index: 2;
}

.deals-skip-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-mango);
}

.deal-card {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(232, 90, 31, 0.2);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}

[data-theme="dark"] .deal-card {
  background: #1F1812;
  border-color: rgba(232, 90, 31, 0.3);
  color: var(--color-cream);
}

.deal-card.featured {
  background: linear-gradient(180deg, #FFF8E7 0%, #FFEDD5 100%);
  border-color: var(--color-mango);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(232, 90, 31, 0.3);
}

[data-theme="dark"] .deal-card.featured {
  background: linear-gradient(180deg, #2A1F16 0%, #1F1408 100%);
}

/* ============================================
   DEALS PAGE — narrow card style (like the menu)
   ============================================ */
.deals-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.deal-card-narrow {
  position: relative;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.deal-card-narrow:hover {
  border-color: var(--color-mango);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.deal-card-narrow.featured {
  background: linear-gradient(180deg, #FFF8E7 0%, #FFEDD5 100%);
  border-color: var(--color-mango);
  border-width: 2px;
}

[data-theme="dark"] .deal-card-narrow {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

[data-theme="dark"] .deal-card-narrow.featured {
  background: linear-gradient(180deg, #2A1F16 0%, #1F1408 100%);
  border-color: var(--color-mango);
}

.deal-card-narrow .deal-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-mango);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.deal-card-narrow-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 5rem; /* leave room for the badge */
}

.deal-card-narrow .deal-emoji {
  font-size: 2.25rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.deal-card-narrow h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--color-cream);
  margin-bottom: 0.2rem;
}

.deal-card-narrow .deal-short {
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 0;
  font-weight: 500;
}

.deal-card-narrow .deal-choices {
  list-style: none;
  padding: 0.75rem 0 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  border-top: 1px dashed var(--color-border);
}

.deal-card-narrow .deal-choices li {
  padding: 0.3rem 0;
}

.deal-card-narrow .deal-choices strong {
  color: var(--color-cream);
  font-weight: 600;
}

.deal-card-narrow .deal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1.5px solid var(--color-border);
  margin-top: 0.25rem;
}

.deal-card-narrow .deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.deal-card-narrow .deal-price-was {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.deal-card-narrow .deal-price-now {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  letter-spacing: -0.01em;
}

.deal-card-narrow .deal-add {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

.deals-cross-link {
  text-align: center;
  padding: 2.5rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.deals-cross-link a {
  color: var(--color-mango);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 480px) {
  .deal-card-narrow { padding: 1.25rem; }
  .deal-card-narrow-head { padding-right: 0; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .deal-card-narrow .deal-badge { position: static; align-self: flex-start; margin-bottom: 0.25rem; }
  .deal-card-narrow .deal-price-row { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .deal-card-narrow .deal-add { width: 100%; }
  .deal-card-narrow .deal-price { justify-content: center; }
}

/* ============================================
   Deals callout (on the menu page)
   ============================================ */
.deals-callout {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-mango);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.deals-callout::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-mango);
}

.deals-callout-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(232, 90, 31, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deals-callout-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.deals-callout-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.2;
}

.deals-callout-text span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.deals-callout .btn {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .deals-callout { flex-wrap: wrap; padding: 1rem; }
  .deals-callout-icon { width: 48px; height: 48px; font-size: 2rem; }
  .deals-callout .btn { width: 100%; }
}

/* ============================================
   Narrow container — for menu, deals, etc.
   ============================================ */
.container-narrow {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
  .container-narrow { max-width: 100%; }
}

/* ============================================
   Deal configurator modal
   ============================================ */
.deal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.deal-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.deal-modal {
  position: relative;
  background: var(--color-bg-card);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.96);
  transition: transform var(--t-base);
}

.deal-modal-overlay.open .deal-modal {
  transform: translateY(0) scale(1);
}

.deal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.deal-modal-close:hover {
  background: var(--color-mango);
  color: #fff;
  border-color: var(--color-mango);
  transform: rotate(90deg);
}

.deal-modal-emoji {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.deal-modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.25rem;
  color: var(--color-cream);
  line-height: 1.2;
}

.deal-modal-sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.deal-modal-choices {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.deal-choice-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.deal-choice-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.deal-choice-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-cream);
}

.deal-choice-minmax {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-mango);
}

.deal-choice-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

@media (min-width: 480px) {
  .deal-choice-options { grid-template-columns: 1fr 1fr; }
}

.deal-choice-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-cream);
  transition: all var(--t-fast);
  position: relative;
}

.deal-choice-option:hover {
  border-color: var(--color-mango);
  background: rgba(232, 90, 31, 0.05);
}

.deal-choice-option input {
  margin: 0;
  accent-color: var(--color-mango);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.deal-choice-option input:checked + .deal-choice-option-name {
  color: var(--color-mango);
  font-weight: 600;
}

.deal-choice-option:has(input:checked) {
  border-color: var(--color-mango);
  background: rgba(232, 90, 31, 0.08);
}

.deal-choice-option-name {
  flex: 1;
  line-height: 1.2;
}

.deal-choice-check {
  display: none;
}

.deal-modal-validation {
  background: rgba(184, 36, 42, 0.1);
  color: var(--color-chili);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

.deal-modal-validation.show { display: block; }

.deal-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid var(--color-border);
  margin-top: 0.5rem;
}

.deal-modal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-mango);
  letter-spacing: -0.01em;
}

.deal-modal-footer .btn {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.deal-modal-footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .deal-modal { padding: 2rem 1.25rem 1.5rem; }
  .deal-modal-title { font-size: 1.4rem; }
  .deal-modal-footer { flex-direction: column; align-items: stretch; }
  .deal-modal-footer .btn { width: 100%; }
  .deal-modal-price { text-align: center; }
}

/* Choices summary on deal card */
.deal-choices-summary {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--color-border);
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* Deal choice counter (X of Y selected) */
.deal-choice-header {
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.deal-choice-counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-mango);
  background: rgba(232, 90, 31, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  min-height: 1.1em;
}

.deal-choice-counter.full {
  background: var(--color-mango);
  color: #fff;
}

/* ============================================
   Cart item: deal customizations
   ============================================ */
.cart-item-deal-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-mango);
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-right: 0.4rem;
}

.cart-item-custom {
  margin: 0.4rem 0 0.5rem;
  font-size: 0.78rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-custom summary {
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  font-weight: 600;
  color: var(--color-mango);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
}

.cart-item-custom summary::before {
  content: '▸';
  display: inline-block;
  font-size: 0.7rem;
  transition: transform var(--t-fast);
}

.cart-item-custom[open] summary::before { transform: rotate(90deg); }

.cart-item-custom summary::-webkit-details-marker { display: none; }

.cart-item-custom ul {
  list-style: none;
  padding: 0 0.6rem 0.5rem 1.4rem;
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

.cart-item-custom li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.2rem 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.cart-custom-group {
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-custom-items {
  color: var(--color-cream);
}

/* ============================================
   Deal configurator — quantity stepper (multi)
   ============================================ */
.deal-choice-qty {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem !important;
  background: var(--color-bg-card) !important;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.deal-choice-qty.has-qty {
  border-color: var(--color-mango) !important;
  background: rgba(232, 90, 31, 0.05) !important;
}

.deal-choice-qty .deal-choice-option-name {
  flex: 1;
  font-size: 0.9rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 2px;
  flex-shrink: 0;
}

.qty-stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--color-cream);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  line-height: 1;
}

.qty-stepper-btn:hover:not(:disabled) {
  background: var(--color-mango);
  color: #fff;
}

.qty-stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-stepper-display {
  min-width: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-cream);
  font-variant-numeric: tabular-nums;
}

.deal-choice-qty.has-qty .qty-stepper-display {
  color: var(--color-mango);
}

@media (max-width: 480px) {
  .deal-choice-qty .deal-choice-option-name { font-size: 0.85rem; }
  .qty-stepper-btn { width: 28px; height: 28px; }
}


/* ============================================
   MOBILE FIXES — 2026-06-06
   Hide admin on mobile, fix horizontal scroll,
   collapse checkout, hide non-essential home sections
   ============================================ */

/* ---- 1. Admin link: desktop only ---- */
.nav-admin-link { display: none; }

@media (min-width: 900px) {
  .nav-admin-link { display: inline-flex; }
}

/* Mobile nav: show a "Menu" pill where admin was */
.nav-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cream);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  text-decoration: none;
  background: var(--color-glass);
}

@media (min-width: 900px) {
  .nav-menu-link { display: none; }
}

/* ---- 2. Fix nav overflow on mobile ----
   nav-cta is a flex row that contains: theme-toggle, admin (or menu), cart,
   Order Now button, hamburger. On mobile that overflows. Shrink the gap and
   hide the Order Now button text on small screens (the hamburger is enough). */
@media (max-width: 900px) {
  .nav-inner { gap: 0.5rem; }
  .nav-cta { gap: 0.4rem; flex-shrink: 1; min-width: 0; }
  .nav-cta > * { flex-shrink: 0; }
}

@media (max-width: 480px) {
  /* Hide the "Order Now" button text on very small screens — keep the cart icon only */
  .nav-cta .btn-primary { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .logo-text-tagline { display: none; }
  .logo { gap: 0.5rem; font-size: 1.05rem; }
}

/* Hard kill any horizontal scroll on small screens */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
* { box-sizing: border-box; }
img, video, svg { max-width: 100%; height: auto; }
.hero h1, .section h1, .section h2, .section h3 { overflow-wrap: break-word; word-wrap: break-word; }

/* ---- 3. Home page: hide "Our Story" + "Pick a category" on mobile ---- */
.hide-mobile { display: none !important; }

@media (min-width: 768px) {
  .hide-mobile { display: revert !important; }
}

/* ---- 4. Menu page: hide section description on mobile for tiffin/dosa/uttapam ---- */
.menu-cat-desc { display: none; }

@media (min-width: 768px) {
  .menu-cat-desc { display: block; }
}

/* ---- 5. Checkout: collapse promo + tax, make checkout button always visible ---- */
@media (max-width: 768px) {
  /* On mobile, disable the desktop sticky-on-top behavior */
  .order-summary { position: static; top: auto; }
  .order-summary h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
  .order-summary-items { max-height: none; }
  .order-summary-totals { font-size: 0.9rem; }
  .order-summary-totals .cart-summary-row { padding: 0.2rem 0; }

  /* Hide the promo-code input + tax breakdown on mobile so cart items get more space.
     On mobile the "Total" row still shows, so the customer sees the final amount. */
  [data-checkout-promo] { display: none; }
  [data-checkout-promo] + .order-summary-totals .cart-summary-row:not(.total) {
    /* keep subtotal + pickup, hide tax */
  }
  [data-checkout-promo] + .order-summary-totals [data-checkout-tax] {
    /* hide the HST row */
  }
  [data-checkout-promo] + .order-summary-totals .cart-summary-row:has([data-checkout-tax]) {
    display: none;
  }

  /* Hide the pickup-location footer block to save space */
  .order-summary > div:last-child:not(.order-summary-totals):not(.order-summary-items) {
    display: none;
  }

  /* Make the form-submit sticky at the bottom of the viewport so the checkout
     button is ALWAYS visible, no matter how long the form is. */
  .form-submit {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: var(--color-bg);
    padding: 0.85rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }
  .form-submit .btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }
}

/* ---- 6. Cart drawer footer: collapse promo/tax on mobile too ---- */
@media (max-width: 480px) {
  .cart-drawer-footer {
    padding: 0.75rem;
  }
  /* Show the promo-code input on mobile (it was hidden before — user wanted
     it visible so they can apply codes without leaving the cart drawer). */
  .promo-input-row { display: flex !important; gap: 0.4rem; }
  .promo-input-row .promo-input {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }
  .promo-input-row .promo-apply-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  [data-promo-section] { margin-bottom: 0.5rem; }

  /* Hide the HST tax row in the cart drawer (it's now baked into "Total with tax") */
  [data-cart-tax] { display: none; }
  .cart-summary-row:has([data-cart-tax]) { display: none; }

  /* Hide the Subtotal row (the "Total with tax" line shows the final amount) */
  [data-cart-subtotal] { /* but keep it visible if no tax was applied */ }

  .cart-summary-row { font-size: 0.85rem; padding: 0.2rem 0; }
  .cart-summary-row.total { font-size: 1rem; padding-top: 0.5rem; }

  /* Make the checkout button prominent in the drawer */
  .cart-drawer-footer .btn-primary { padding: 0.85rem; font-size: 1rem; }

  /* Give the cart items more vertical space */
  .cart-items { max-height: 50vh; }
}

/* ============================================
   EMERGENCY PATCH v2 — 2026-06-06 15:34
   Force-fixes for iOS Safari horizontal scroll
   and section hiding
   ============================================ */

/* Lock the entire page to viewport width on mobile — use clip not hidden
   because iOS Safari sometimes ignores overflow-x: hidden. */
@media (max-width: 900px) {
  html, body {
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important;
    -webkit-overflow-scrolling: touch;
  }
  body > * {
    max-width: 100vw !important;
    overflow-x: clip !important;
  }
  /* Force-wrap the hero h1 so it never overflows */
  .hero h1 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
  }
  /* The hero h1's container shouldn't allow child overflow */
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Don't allow any inline element to push the layout */
  .hero-stat {
    min-width: 0 !important;
  }
  /* Trust strip — make sure badges wrap */
  .trust-strip-inner {
    flex-wrap: wrap !important;
    gap: 0.75rem 1.5rem !important;
  }
  /* Categories grid — force 2 columns max */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
  .category-card {
    min-width: 0 !important;
  }
  /* Featured dish grid */
  .dish-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  .dish-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* Force-hide the mobile-only-hidden sections — this is a duplicate of
   the earlier .hide-mobile rule but with stronger specificity. */
@media (max-width: 767px) {
  section.hide-mobile,
  .section.hide-mobile,
  [class*="hide-mobile"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* The Order Now button and similar large nav items on mobile — force shrink */
@media (max-width: 480px) {
  .nav-cta .btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
  .nav-cta { gap: 0.25rem !important; }
  .nav-cta > * { flex-shrink: 0; }
}

/* ============================================
   MOBILE-ONLY CTA BAR (home page, below hero)
   ============================================ */
.mobile-cta-bar { display: none; }

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding: 1rem 0 0;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-cream);
  transition: all 0.15s;
  min-height: 64px;
}
.mobile-cta-btn:active { transform: scale(0.98); }
.mobile-cta-btn svg { flex-shrink: 0; color: var(--color-mango); }
.mobile-cta-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-cta-btn strong { font-size: 0.95rem; font-weight: 700; }
.mobile-cta-btn small { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.1rem; }
.mobile-cta-primary { background: var(--color-mango); border-color: var(--color-mango); color: #fff; }
.mobile-cta-primary svg { color: #fff; }
.mobile-cta-primary small { color: rgba(255,255,255,0.85); }

/* ============================================
   TRUST STRIP — improved mobile layout
   Compact 2x2 grid with bigger icons
   ============================================ */
@media (max-width: 767px) {
  .trust-strip { padding: 1rem 0; }
  .trust-strip-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 0 1rem;
  }
  .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0.85rem 0.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }
  .trust-badge-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .trust-badge-icon svg { width: 22px !important; height: 22px !important; }
  .trust-badge span { font-size: 0.85rem !important; font-weight: 700; }
  .trust-badge small { font-size: 0.7rem !important; opacity: 0.8; }
}

/* ============================================
   FEATURED DISH CARDS — square on mobile
   ============================================ */
@media (max-width: 767px) {
  .dish-card {
    aspect-ratio: 1/1 !important;
  }
  .dish-card-content, .dish-content { padding: 0.85rem; }
  .dish-content h3 { font-size: 1.1rem; }
}

/* ============================================
   CHECKOUT — reverse layout (order items first)
   On mobile: items on top, form below
   On desktop: items on left, form on right
   ============================================ */

/* Mobile: reorder via flex/order */
@media (max-width: 1023px) {
  .checkout-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }
  .checkout-grid form { order: 2; }
  .checkout-grid aside { order: 1; }
  .checkout-grid aside .order-summary {
    position: static !important;
    top: auto !important;
  }
}

/* Desktop: reverse columns — order summary on LEFT, form on RIGHT */
@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr 1.3fr !important;
  }
  .checkout-grid form { order: 2; }
  .checkout-grid aside { order: 1; }
}

/* ============================================
   show-mobile-only — only visible on mobile
   ============================================ */
.show-mobile-only { display: none !important; }

@media (max-width: 767px) {
  .show-mobile-only { display: block !important; }
}

/* ============================================
   HERO MOBILE ACTIONS — Call us + Uber Eats + DoorDash
   Shown only on mobile, directly below the Order for Pickup button
   ============================================ */
.hero-mobile-actions { display: none; }

@media (max-width: 767px) {
  .hero-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .hero-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.15s;
    backdrop-filter: blur(8px);
  }
  .hero-mobile-action:active { transform: scale(0.98); }
  .hero-mobile-action svg { color: var(--color-mango); flex-shrink: 0; }
  .hero-mobile-action-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 0.4rem;
    align-items: center;
  }
  .hero-mobile-action-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .hero-mobile-action-uber,
  .hero-mobile-action-doordash {
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    gap: 0.3rem;
  }
  .hero-mobile-action-uber svg,
  .hero-mobile-action-doordash svg { color: #fff; }
}

/* ============================================
   TRUST STRIP — tighten bottom padding on mobile
   to remove the empty space before next section
   ============================================ */
@media (max-width: 767px) {
  .trust-strip { padding: 1rem 0 0.5rem; }
}

/* ============================================
   FEATURED DISH CARDS — image on top, text on solid panel
   Replaces the "text overlay on image" approach that's hard to read
   ============================================ */
@media (max-width: 767px) {
  .dish-card {
    aspect-ratio: auto !important;
    display: flex;
    flex-direction: column;
  }
  .dish-card-bg {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    aspect-ratio: 16/11;
    flex-shrink: 0;
  }
  .dish-card-bg img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .dish-card-bg::after {
    /* Remove the gradient overlay on mobile — the text is below the image now */
    display: none;
  }
  .dish-content {
    color: var(--color-cream) !important;
    padding: 1rem 1.1rem 1.1rem !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .dish-content h3 {
    font-size: 1.15rem !important;
    line-height: 1.25;
  }
  .dish-content p {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
  }
  .dish-tag {
    top: 0.6rem !important;
    left: 0.6rem !important;
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
  }
  .dish-meta {
    margin-top: 0.4rem;
  }
  .add-to-cart-btn {
    margin-top: auto;
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   HERO MOBILE ACTIONS v2 — Call us + Uber Eats + DoorDash
   One row, three buttons, all on mobile
   ============================================ */
.hero-mobile-actions { display: none; }

@media (max-width: 767px) {
  .hero-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .hero-mobile-action-row-call {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
  }
  .hero-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.15s;
    backdrop-filter: blur(8px);
    min-height: 44px;
  }
  .hero-mobile-action:active { transform: scale(0.97); }
  .hero-mobile-action svg { color: var(--color-mango); flex-shrink: 0; }
  .hero-mobile-action-call svg { color: var(--color-mango); }
  .hero-mobile-action-uber,
  .hero-mobile-action-doordash {
    padding: 0.8rem 0.4rem;
    font-size: 0.8rem;
  }
  .hero-mobile-action-uber svg,
  .hero-mobile-action-doordash svg { color: #fff; }
  .hero-mobile-action-uber {
    background: #06C167; /* Uber Eats green */
    border-color: #06C167;
  }
  .hero-mobile-action-doordash {
    background: #FF3008; /* DoorDash red */
    border-color: #FF3008;
  }
}

/* ============================================
   HERO SCROLL HINT — hide on mobile (was distracting)
   ============================================ */
@media (max-width: 767px) {
  .hero-scroll { display: none !important; }
}

/* ============================================
   TRUST STRIP — final mobile polish
   Removed 2 badges, now just 4. Tighten spacing.
   ============================================ */
@media (max-width: 767px) {
  .trust-strip {
    padding: 0.75rem 0 0.25rem !important;
  }
  .trust-strip-inner {
    gap: 0.5rem !important;
  }
  .trust-badge {
    padding: 0.7rem 0.4rem !important;
  }
}

/* ============================================
   GOOGLE REVIEWS — fix "Write a review" button contrast
   Was: cream background + white text (unreadable)
   Fix: mango background + white text (works in both modes)
   ============================================ */
.reviews-summary-cta {
  background: var(--color-mango) !important;
  color: #fff !important;
  font-weight: 600;
}
.reviews-summary-cta:hover {
  background: #d04e15 !important;
}

/* ============================================
   CART DRAWER — fix iOS background scroll bleed
   The drawer opens with body { overflow: hidden } but
   iOS Safari ignores that. Use position:fixed trick.
   ============================================ */
body.cart-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  top: 0;
}
body.cart-open {
  /* preserve scroll position via JS by setting top */
}

/* Cart drawer: contain internal scroll, kill rubber-band */
.cart-drawer {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.cart-drawer.open .cart-drawer-footer {
  overscroll-behavior: contain;
}

/* Cart drawer promo: more space between promo and subtotal */
.cart-drawer [data-promo-section] {
  margin-bottom: 0.75rem;
}
.promo-input-row { margin-bottom: 0.5rem; }
.promo-applied { margin-bottom: 0.5rem; }

/* ============================================
   ORDER PAGE — move the pickup (checkout) option to LAST
   So users see delivery options first
   ============================================ */

/* ============================================
   PLATFORM CARDS — featured (pickup) styling
   The "Order Online for Pickup" card stands out
   ============================================ */
.platform-card-featured {
  border-color: var(--color-mango) !important;
  background: linear-gradient(135deg, rgba(232, 90, 31, 0.08), rgba(232, 90, 31, 0.02)) !important;
}
.platform-card-featured .platform-logo.pickup {
  background: var(--color-mango) !important;
  color: #fff !important;
}
.platform-best-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  background: var(--color-mango);
  color: #fff;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ============================================
   ORDER SUMMARY BREAKDOWN — collapsible
   Total shows by default. Tap "Show price breakdown"
   to expand and see Subtotal + Tax.
   Works in BOTH the cart drawer and the checkout page.
   ============================================ */
.order-summary-breakdown,
.cart-drawer-breakdown {
  border-top: 1px dashed var(--color-border);
  margin-top: 0.5rem;
  padding-top: 0.4rem;
}

.order-summary-breakdown > summary,
.cart-drawer-breakdown > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  user-select: none;
  transition: color 0.15s;
}
.order-summary-breakdown > summary::-webkit-details-marker,
.cart-drawer-breakdown > summary::-webkit-details-marker { display: none; }
.order-summary-breakdown > summary::marker,
.cart-drawer-breakdown > summary::marker { display: none; content: ''; }
.order-summary-breakdown > summary svg,
.cart-drawer-breakdown > summary svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.order-summary-breakdown[open] > summary svg,
.cart-drawer-breakdown[open] > summary svg {
  transform: rotate(180deg);
}
.order-summary-breakdown > summary:hover,
.cart-drawer-breakdown > summary:hover {
  color: var(--color-mango);
}

/* When closed, the rows inside the details are hidden */
.order-summary-breakdown > .cart-summary-row,
.cart-drawer-breakdown > .cart-summary-row {
  display: none;
}
.order-summary-breakdown[open] > .cart-summary-row,
.cart-drawer-breakdown[open] > .cart-summary-row {
  display: flex;
  font-size: 0.85rem;
  padding: 0.2rem 0;
}

/* ============================================
   CART DRAWER — aggressive mobile spacing fix
   Kill the huge gap between promo code and total
   ============================================ */
@media (max-width: 480px) {
  .cart-drawer-footer {
    padding: 0.65rem 0.85rem 0.85rem !important;
    border-top: 1px solid var(--color-border);
  }
  .cart-drawer-footer [data-promo-section] {
    margin-bottom: 0.4rem !important;
  }
  .cart-drawer-footer .promo-input-row {
    margin-bottom: 0.3rem !important;
    gap: 0.3rem;
  }
  .cart-drawer-footer .promo-input-row .promo-input {
    padding: 0.55rem 0.65rem;
    font-size: 0.85rem;
  }
  .cart-drawer-footer .promo-input-row .promo-apply-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }
  .cart-drawer-footer .promo-message {
    margin: 0.25rem 0;
    font-size: 0.78rem;
    min-height: 0;
  }
  .cart-drawer-footer .cart-summary-row {
    margin-bottom: 0.15rem !important;
    padding: 0.15rem 0 !important;
  }
  .cart-drawer-footer .cart-summary-row.total {
    padding-top: 0.4rem !important;
    padding-bottom: 0.2rem !important;
    font-size: 1.05rem;
  }
  .cart-drawer-footer .cart-drawer-breakdown {
    margin-top: 0.15rem !important;
    padding-top: 0.15rem !important;
    border-top: 1px dashed var(--color-border);
  }
  .cart-drawer-footer .cart-drawer-breakdown > summary {
    padding: 0.4rem 0 !important;
    font-size: 0.78rem;
  }
  .cart-drawer-footer .cart-drawer-breakdown[open] > .cart-summary-row {
    padding: 0.1rem 0 !important;
  }
}

/* ============================================
   TRUST STRIP — full-width mobile cards
   Kill the side padding and bottom gap
   ============================================ */
@media (max-width: 767px) {
  .trust-strip {
    padding: 0.5rem 0 !important;
  }
  .trust-strip > .container,
  .trust-strip-inner {
    padding: 0 0.65rem !important;
    max-width: 100% !important;
  }
  .trust-strip-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  .trust-badge {
    padding: 0.85rem 0.5rem !important;
    gap: 0.4rem !important;
  }
  .trust-badge-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .trust-badge-icon svg { width: 19px !important; height: 19px !important; }
  .trust-badge span { font-size: 0.82rem !important; }
  .trust-badge small { font-size: 0.65rem !important; }
}

/* ============================================
   SECTION PADDING — tighten on mobile
   Default section has 6rem top/bottom — too much
   on mobile. Reduce to 2rem.
   ============================================ */
@media (max-width: 767px) {
  .section { padding: 2rem 0 !important; }
  /* The section that comes right after the trust strip should be even tighter */
  .trust-strip + .section,
  .trust-strip + div + .section,
  .section.featured { padding-top: 1.5rem !important; }
}

/* ============================================
   COLOR RESTRAINT — dial back the orange
   The user feels there's too much mango everywhere.
   Keep it for PRIMARY CTAs only, not every icon/accent.
   ============================================ */

/* Trust strip icons: use neutral cream instead of orange */
.trust-badge-icon {
  background: rgba(255, 251, 235, 0.06) !important; /* soft cream tint */
  color: var(--color-cream) !important;
}
[data-theme="dark"] .trust-badge-icon {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* "Write a review" button: make it outline/neutral instead of orange */
.reviews-summary-cta {
  background: transparent !important;
  color: var(--color-cream) !important;
  border: 1.5px solid var(--color-border) !important;
  font-weight: 500 !important;
}
.reviews-summary-cta:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--color-cream) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* "Best for you" tag on order page: more subtle */
.platform-best-tag {
  background: var(--color-bg-card) !important;
  color: var(--color-cream) !important;
  border: 1px solid var(--color-border) !important;
}

/* Featured card "Order Online for Pickup" card: less orange tint */
.platform-card-featured {
  background: var(--color-bg-card) !important;
  border-color: var(--color-border) !important;
}
.platform-card-featured .platform-logo.pickup {
  background: var(--color-bg-elevated, #1a1a1a) !important;
  color: var(--color-cream) !important;
  border: 1px solid var(--color-border);
}

/* Mobile hero secondary actions: less mango, more neutral */
.hero-mobile-action svg {
  color: var(--color-cream) !important;
}
.hero-mobile-action-call svg {
  color: var(--color-mango) !important; /* keep phone icon mango for recognition */
}

/* ============================================
   TRUST STRIP — truly edge-to-edge on mobile
   Remove ALL horizontal padding so cards span the
   full screen width
   ============================================ */
@media (max-width: 767px) {
  .trust-strip {
    padding: 0.4rem 0 !important;
    margin: 0 !important;
  }
  /* Kill the container padding for the trust strip */
  .trust-strip > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  .trust-strip-inner {
    padding: 0 0.4rem !important;
    gap: 0.4rem !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-badge {
    padding: 0.7rem 0.4rem !important;
    border-radius: 0.5rem !important;
  }
}

/* Kill the gap after trust strip — was still 96px+ */
.trust-strip + .section,
.section.featured {
  margin-top: 0 !important;
  padding-top: 1.25rem !important;
}
.trust-strip {
  margin-bottom: 0 !important;
  padding-bottom: 0.4rem !important;
}

/* ============================================
   KILL SPACE FROM HIDDEN REORDER / LOYALTY SECTIONS
   These are hidden by default but their parents have inline
   padding that creates ~100px of empty space between the
   trust strip and the featured section.
   ============================================ */
.container:has(> [hidden]),
.section:has(> [hidden]) {
  display: none !important;
}

/* ============================================
   STRIP ORANGE FROM SECONDARY ELEMENTS
   The brand color should be reserved for PRIMARY CTAs only
   ============================================ */

/* Dish tags: use neutral background, only color the icon inside */
.dish-tag {
  background: rgba(26, 26, 26, 0.85) !important;
  color: var(--color-cream) !important;
  border: 1px solid var(--color-border);
}
.dish-tag.chili {
  background: rgba(26, 26, 26, 0.85) !important;
}
.dish-tag.turmeric {
  background: rgba(26, 26, 26, 0.85) !important;
}

/* Section eyebrows: the orange line — make it charcoal */
.eyebrow {
  color: var(--color-text-muted) !important;
}
.eyebrow::before {
  background: var(--color-text-muted) !important;
}

/* Featured card hover — was orange border, now neutral */
.dish-card:hover {
  border-color: var(--color-border) !important;
}

/* Stats numbers — the "50+", "25min" had orange highlights. Tone them down */
.hero-stat .num span {
  color: var(--color-cream) !important;
}

/* Hero photo caption — the orange dot, etc */
.hero-photo-caption {
  color: var(--color-cream);
}

/* Press-strip / gallery / visit preview — keep neutral */

/* Footer link hover */
.footer-links a:hover {
  color: var(--color-cream) !important;
}

/* WhatsApp FAB — keep green (it's WhatsApp's brand color, not ours) */

/* Reduce the orange "MOST LOVED" / "Browse the menu" eyebrow lines */
.section-eyebrow,
.section-header .eyebrow {
  color: var(--color-text-muted) !important;
  letter-spacing: 0.15em;
}
.section-eyebrow::before,
.section-header .eyebrow::before {
  background: var(--color-text-muted) !important;
  opacity: 0.5;
}

/* The Mango wordmark in the logo: keep italic but tone down */
.logo-text-main em,
.logo-text em {
  color: var(--color-mango);
  font-style: italic;
  font-weight: 500;
}

/* Deal card "Pick 2 starters" / "Pick 4 biryanis" hint text */
.deal-card .deal-choice-hint,
.deal-card small {
  color: var(--color-text-muted);
}


/* ============================================
   HERO TRUST BADGES — Halal + Vegetarian in hero
   Two small pills below the stats
   ============================================ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-trust-badge svg {
  color: var(--color-mango);
  flex-shrink: 0;
}
.hero-trust-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-trust-badge strong {
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-trust-badge small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
}

/* On mobile, keep them as 2 horizontal pills */
@media (max-width: 480px) {
  .hero-trust {
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .hero-trust-badge {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.65rem;
    gap: 0.45rem;
  }
  .hero-trust-badge svg { width: 16px; height: 16px; }
  .hero-trust-badge strong { font-size: 0.78rem; }
  .hero-trust-badge small { font-size: 0.65rem; }
}

/* ============================================
   DEALS GRID ON HOME PAGE
   Reuses the deal-card-narrow styling from /deals.html
   2 cols on mobile, 3 on desktop
   ============================================ */
.deals-grid-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .deals-grid-home { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .deals-grid-home { grid-template-columns: repeat(3, 1fr); }
}

/* On mobile, make the home deals cards more compact */
@media (max-width: 767px) {
  .deals-grid-home .deal-card-narrow {
    padding: 0.85rem !important;
  }
  .deals-grid-home .deal-card-narrow-head h3 {
    font-size: 1.15rem !important;
  }
}

/* ============================================
   HERO TRUST BADGES — vertical centering fix
   The icon should be centered with the title text,
   not with the whole title+small block.
   ============================================ */
.hero-trust-badge {
  display: flex !important;
  align-items: center !important;  /* centers icon with the title row */
}
.hero-trust-badge svg {
  align-self: center;
}
.hero-trust-badge span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.hero-trust-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-trust-badge small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .hero-trust-badge strong { font-size: 0.78rem; }
  .hero-trust-badge small { font-size: 0.65rem; }
}

/* Most loved section: revert to default (white in light, dark in dark) */
.section.featured {
  background: var(--color-bg-soft) !important;
}
