/* ============================================================
   Dream Lunch — core stylesheet
   Brand: deep green · golden yellow · white · cream
   ============================================================ */

:root {
  --green-900: #15260c;
  --green-850: #1b3010;
  --green-800: #1f3514;
  --green-700: #2c4a1d;   /* primary surface */
  --green-600: #36592a;
  --green-500: #436b33;
  --green-400: #5a8442;

  --gold: #f4a91f;
  --gold-600: #e09612;
  --gold-300: #ffce6b;
  --gold-soft: rgba(244, 169, 31, 0.14);

  --cream: #fbf7ec;
  --ink: #1c2a12;

  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --muted-2: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.12);

  --wa: #25d366;
  --wa-dark: #128c45;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.22);
  --container: 1200px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background:
    radial-gradient(1100px 600px at 88% -8%, rgba(244, 169, 31, 0.16), transparent 60%),
    radial-gradient(900px 600px at -8% 12%, rgba(67, 107, 51, 0.45), transparent 55%),
    linear-gradient(180deg, var(--green-800), var(--green-900));
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.4em; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; position: relative; }
.section--tight { padding: 48px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.nowrap { white-space: nowrap; }
.hidden { display: none !important; }

/* ---------- section heading ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 10px; }
.section-title .gold { color: var(--gold); }
.section-sub { color: var(--muted); max-width: 620px; margin: 0 auto 8px; }
.title-underline { width: 76px; height: 4px; border-radius: 4px; background: var(--gold); margin: 16px auto 0; }
.head-left .title-underline { margin-left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, color 0.18s;
  white-space: nowrap; line-height: 1;
}
.btn svg, .btn .ic { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--green-800); box-shadow: 0 10px 24px rgba(244, 169, 31, 0.3); }
.btn-gold:hover { background: var(--gold-300); box-shadow: 0 14px 30px rgba(244, 169, 31, 0.42); }
.btn-wa { background: var(--wa); color: #08231a; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28); }
.btn-wa:hover { background: #2ee676; }
.btn-call { background: var(--white); color: var(--green-800); }
.btn-call:hover { background: var(--cream); }
.btn-outline { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(22, 40, 16, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(18, 32, 12, 0.92); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-size: 1.12rem; letter-spacing: 0.01em; }
.brand-text span { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.94rem; color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--gold); color: var(--green-800);
  border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 800;
  display: grid; place-items: center;
  transform: scale(0); transition: transform 0.2s var(--ease);
}
.cart-count.show { transform: scale(1); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px;
  position: relative; margin: 0 auto; transition: 0.25s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h) - 46px); /* fill one screen below header + meal banner */
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600; color: var(--cream);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.chip--veg .dot { background: #57c84d; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; margin-bottom: 12px; }
.hero h1 .gold { color: var(--gold); }
.hero .lead { font-size: clamp(1rem, 2.1vw, 1.18rem); color: var(--cream); max-width: 540px; margin-bottom: 6px; }
.hero .tagline { color: var(--muted); margin-bottom: 18px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-stats { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 1.5rem; color: var(--gold); }
.hero-stats .stat span { font-size: 0.82rem; color: var(--muted); }

.hero-logo-wrap { position: relative; display: grid; place-items: center; }
.hero-logo {
  width: min(420px, 78%, 52vh); aspect-ratio: 1; border-radius: 50%;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.4));
  animation: floaty 6s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: ""; position: absolute; inset: 6% 12%;
  background: radial-gradient(circle, rgba(244,169,31,0.34), transparent 65%);
  filter: blur(26px); z-index: -1;
}
.hero-float {
  position: absolute; background: var(--white); color: var(--green-800);
  border-radius: 16px; padding: 10px 14px; font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 9px;
}
.hero-float .em { font-size: 1.3rem; }
.hero-float small { display: block; font-weight: 600; color: #6b7280; font-size: 0.72rem; }
.hero-float--1 { top: 12%; left: -2%; animation: floaty 5s ease-in-out infinite; }
.hero-float--2 { bottom: 14%; right: -3%; animation: floaty 5.6s ease-in-out 0.6s infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* marquee strip */
.marquee {
  background: var(--gold); color: var(--green-800);
  font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 36px; animation: marquee 26s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.marquee span::after { content: "•"; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Category cards
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 18px; margin-top: 36px; }
.cat-card {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 252px; padding: 22px; text-align: left;
  background: linear-gradient(165deg, var(--green-600), var(--green-700));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.cat-card .cat-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 0.5s var(--ease);
}
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(11,21,6,0.95) 6%, rgba(11,21,6,0.55) 45%, rgba(11,21,6,0.1) 100%);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(244,169,31,0.55); }
.cat-card:hover .cat-bg { transform: scale(1.07); }
.cat-emoji {
  position: absolute; top: 15px; left: 15px; z-index: 1;
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--gold); color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.cat-card h3 { font-size: 1.22rem; margin-bottom: 4px; }
.cat-card p { font-size: 0.85rem; color: var(--cream); opacity: 0.86; margin: 0; }
.cat-card .cat-link { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; color: var(--gold-300); font-weight: 700; font-size: 0.88rem; }
.cat-card:hover .cat-link { color: var(--gold); }

/* ============================================================
   Food / menu cards
   ============================================================ */
.menu-cat { margin-bottom: 50px; scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.menu-cat-head .ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--gold-soft); border: 1px solid rgba(244,169,31,0.3);
  overflow: hidden; flex: none;
}
.menu-cat-head .ic.has-img { background: none; border-color: var(--line); }
.menu-cat-head .ic img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat-head h2 { font-size: 1.7rem; margin: 0; }
.menu-cat-head p { margin: 2px 0 0; color: var(--muted); font-size: 0.9rem; }

.food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.food-card {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}
.food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(244,169,31,0.4); }

.food-tile {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  font-size: 4.4rem; overflow: hidden;
  background-size: cover; background-position: center;
}
.food-tile .emoji { filter: drop-shadow(0 8px 14px rgba(0,0,0,0.3)); transition: transform 0.3s var(--ease); z-index: 1; }
.food-card:hover .food-tile .emoji { transform: scale(1.08) rotate(-3deg); }
.food-tile::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1.2px, transparent 1.3px);
  background-size: 18px 18px; opacity: 0.18;
}
.food-tile.has-img { font-size: 0; }
.food-tile.has-img::after { background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.28)); opacity: 1; }
.food-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.tile--0 { background-image: linear-gradient(150deg, #e8772e, #b23a2e); }
.tile--1 { background-image: linear-gradient(150deg, #4a8c3f, #2f6b34); }
.tile--2 { background-image: linear-gradient(150deg, #e0a92e, #cc7a1d); }
.tile--3 { background-image: linear-gradient(150deg, #c0563b, #8c2f2a); }
.tile--4 { background-image: linear-gradient(150deg, #5a7fb0, #3c5a86); }
.tile--5 { background-image: linear-gradient(150deg, #b85c9e, #7d3f86); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: var(--green-800);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.veg-mark {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 20px; height: 20px; border: 2px solid #2f7d32; border-radius: 4px;
  background: #fff; display: grid; place-items: center;
}
.veg-mark::after { content: ""; width: 9px; height: 9px; background: #2f7d32; border-radius: 50%; }

.food-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.food-body h3 { font-size: 1.12rem; margin: 0 0 6px; }
.food-body .desc { font-size: 0.86rem; color: var(--muted); margin: 0 0 14px; flex: 1; }
.food-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.price { font-size: 1.32rem; font-weight: 800; color: var(--gold); }
.price small { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.food-actions { display: flex; gap: 8px; }
.food-actions .btn { flex: 1; }
.add-cart {
  background: var(--gold-soft); color: var(--gold);
  box-shadow: inset 0 0 0 1.5px rgba(244,169,31,0.5);
}
.add-cart:hover { background: var(--gold); color: var(--green-800); }
.add-cart.added { background: var(--wa); color: #08231a; box-shadow: none; }

/* ---- item types / variants list ---- */
.food-card--list .desc { flex: 0 0 auto; margin-bottom: 10px; }
.type-count {
  font-size: 0.72rem; font-weight: 700; color: var(--gold-300);
  background: var(--gold-soft); padding: 4px 10px; border-radius: var(--radius-pill);
}
.variant-list { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.variant-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  transition: background 0.15s, border-color 0.15s;
}
.variant-row:hover { background: rgba(255,255,255,0.09); border-color: rgba(244,169,31,0.35); }
.variant-row .v-name { flex: 1; font-size: 0.9rem; font-weight: 500; }
.variant-row .v-price { font-size: 0.92rem; font-weight: 800; color: var(--gold); }
.variant-row .v-add {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; font-size: 1.25rem; font-weight: 700; line-height: 1;
}

/* ============================================================
   Intro / about strip
   ============================================================ */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.about-card {
  background: linear-gradient(165deg, var(--green-600), var(--green-700));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.feature { display: flex; gap: 12px; align-items: flex-start; }
.feature .fic {
  width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.3rem; background: var(--gold-soft); border: 1px solid rgba(244,169,31,0.3);
}
.feature b { display: block; font-size: 0.96rem; }
.feature span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   Testimonials
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 36px; }
.tst-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px;
  position: relative;
}
.tst-card .quote { position: absolute; top: 14px; right: 22px; font-size: 3.4rem; color: rgba(244,169,31,0.22); font-family: Georgia, serif; line-height: 1; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.tst-card p { font-size: 0.94rem; color: var(--cream); }
.tst-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.tst-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--gold); color: var(--green-800); display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
}
.tst-author b { display: block; font-size: 0.95rem; }
.tst-author span { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   Service areas
   ============================================================ */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.area-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.area-card:hover { transform: translateY(-4px); border-color: rgba(244,169,31,0.4); }
.area-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.area-top h3 { font-size: 1.1rem; margin: 0; }
.area-card .pin { font-size: 0.82rem; color: var(--muted); }
.area-card .note { font-size: 0.84rem; color: var(--muted); margin: 0; }
.status {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap;
}
.status--available { background: rgba(37,211,102,0.16); color: #5fe293; }
.status--coming_soon { background: var(--gold-soft); color: var(--gold-300); }
.status--unavailable { background: rgba(255,255,255,0.1); color: var(--muted); }
.area-card .btn { align-self: flex-start; margin-top: 4px; }

.map-placeholder {
  margin-top: 34px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 16px, transparent 16px 32px),
    linear-gradient(160deg, var(--green-600), var(--green-800));
  min-height: 320px; display: grid; place-items: center; text-align: center; padding: 30px; position: relative;
}
.map-placeholder .pin-big { font-size: 3rem; margin-bottom: 10px; animation: floaty 3s ease-in-out infinite; }
.map-placeholder iframe { width: 100%; min-height: 320px; border: 0; display: block; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex; gap: 14px; align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.info-card:hover { border-color: rgba(244,169,31,0.4); transform: translateY(-3px); }
.info-card .fic { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: var(--gold-soft); border: 1px solid rgba(244,169,31,0.3); }
.info-card small { color: var(--muted); font-size: 0.8rem; display: block; }
.info-card b, .info-card a { font-size: 1.02rem; font-weight: 700; }
.info-card a:hover { color: var(--gold); }

/* reusable gold location pin (scales to the container font-size) */
.loc-pin { display: inline-block; line-height: 0; vertical-align: -0.15em; }
.loc-pin svg { width: 1em; height: 1em; fill: var(--gold); }

.form-card {
  background: linear-gradient(165deg, var(--green-600), var(--green-700));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; color: var(--cream); }
.field label .req { color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.input, .textarea, select.input {
  width: 100%; padding: 13px 15px; border-radius: 13px;
  background: rgba(0,0,0,0.18); border: 1px solid var(--line); color: var(--white);
  font-family: inherit; font-size: 0.96rem; transition: border-color 0.18s, box-shadow 0.18s;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, select.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.textarea { resize: vertical; min-height: 120px; }
select.input option { color: #111; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.cta-band {
  margin: 0 auto; max-width: var(--container);
  background: linear-gradient(120deg, var(--gold), var(--gold-300));
  color: var(--green-800); border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin: 0; }
.cta-band p { margin: 6px 0 0; font-weight: 600; opacity: 0.85; }
.cta-band .btn-call { background: var(--green-700); color: #fff; }
.cta-band .btn-call:hover { background: var(--green-800); }

.site-footer { background: var(--green-900); border-top: 1px solid var(--line); margin-top: 70px; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.92rem; display: block; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.07); transition: transform 0.2s, background 0.2s; color: #fff;
}
.socials a:hover { transform: translateY(-3px); background: var(--gold); color: var(--green-800); }
.socials svg { width: 20px; height: 20px; }
.fssai { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; background: #fff; color: #1a3a6b; padding: 7px 13px; border-radius: 10px; font-size: 0.74rem; font-weight: 700; }
.fssai img { height: 26px; width: auto; display: block; }
.fssai span { line-height: 1.15; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.84rem; }

/* ============================================================
   Floating bottom navigation bar (mobile)
   ============================================================ */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: repeat(5, 1fr); align-items: center;
  background: rgba(16, 28, 10, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.35);
  padding-bottom: env(safe-area-inset-bottom);
}
.bn-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 56px; padding: 8px 2px;
  color: var(--muted-2); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.01em;
  background: transparent; text-align: center; white-space: nowrap;
  transition: color 0.15s, transform 0.1s;
}
.bn-item svg { width: 22px; height: 22px; }
.bn-item:active { transform: scale(0.92); }
.bn-item.active { color: var(--gold); }
.bn-wa { color: #54d98c; }
/* elevated center "Order" button */
.bn-order { color: var(--cream); }
.bn-fab {
  position: relative; width: 50px; height: 50px; margin-top: -24px; margin-bottom: 0;
  border-radius: 50%; background: var(--gold); color: var(--green-800);
  display: grid; place-items: center;
  border: 4px solid var(--green-900);
  box-shadow: 0 8px 20px rgba(244, 169, 31, 0.5);
}
.bn-fab svg { width: 24px; height: 24px; }
.bn-cart-count {
  position: absolute; top: -5px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #e23b3b; color: #fff; border-radius: var(--radius-pill);
  font-size: 0.64rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--green-900);
  transform: scale(0); transition: transform 0.2s var(--ease);
}
.bn-cart-count.show { transform: scale(1); }

/* floating WhatsApp (desktop) */
.fab-wa {
  position: fixed; right: 22px; bottom: 24px; z-index: 65;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45); animation: pulse 2.4s infinite;
}
.fab-wa svg { width: 30px; height: 30px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* floating "view order" bar — appears when the cart has items */
.order-bar {
  position: fixed; left: 50%; bottom: calc(env(safe-area-inset-bottom) + 22px);
  transform: translateX(-50%) translateY(160%);
  z-index: 68; width: min(440px, calc(100vw - 32px));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px 10px 11px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--gold-300));
  color: var(--green-800); font-weight: 800; cursor: pointer;
  box-shadow: 0 14px 34px rgba(244,169,31,0.5), 0 4px 14px rgba(0,0,0,0.28);
  opacity: 0; visibility: hidden;
  transition: transform .35s var(--ease), opacity .3s, visibility .3s;
}
.order-bar.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.order-bar:active { transform: translateX(-50%) translateY(0) scale(0.98); }
.ob-left { display: flex; align-items: center; gap: 11px; min-width: 0; }
.ob-count {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  background: var(--green-800); color: var(--gold);
  display: grid; place-items: center; font-size: 0.98rem; font-weight: 800;
}
.ob-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ob-text b { font-size: 0.98rem; }
.ob-text small { font-size: 0.74rem; font-weight: 600; opacity: 0.78; }
.ob-right { display: flex; align-items: center; gap: 9px; flex: none; }
.ob-total { font-size: 1.12rem; font-weight: 800; }
.ob-go { font-size: 1.25rem; font-weight: 800; transition: transform .2s var(--ease); }
.order-bar:hover .ob-go { transform: translateX(3px); }
@media (max-width: 900px) {
  /* sit just above the bottom navigation bar on phones & tablets */
  .order-bar { bottom: calc(env(safe-area-inset-bottom) + 72px); width: calc(100vw - 24px); }
}

/* ============================================================
   Cart drawer
   ============================================================ */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.25s; z-index: 90; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 100;
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  transform: translateX(100%); transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { margin: 0; font-size: 1.25rem; }
.cart-close { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); font-size: 1.3rem; }
.cart-close:hover { background: rgba(255,255,255,0.16); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.cart-empty .em { font-size: 3rem; display: block; margin-bottom: 12px; }
.cart-row { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-row .ci-emoji { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.5rem; background: var(--gold-soft); flex: none; }
.cart-row .ci-info { flex: 1; min-width: 0; }
.cart-row .ci-info b { font-size: 0.96rem; display: block; }
.cart-row .ci-info span { font-size: 0.84rem; color: var(--gold); font-weight: 700; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.1); font-size: 1.1rem; font-weight: 700; display: grid; place-items: center; }
.qty button:hover { background: var(--gold); color: var(--green-800); }
.qty b { min-width: 18px; text-align: center; }
.ci-remove { color: var(--muted-2); font-size: 0.78rem; margin-top: 4px; }
.ci-remove:hover { color: #ff8a8a; }
.cart-foot { padding: 20px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total b { font-size: 1.5rem; color: var(--gold); }
.cart-foot .form-mini { display: flex; gap: 8px; margin-bottom: 12px; }
.cart-foot .form-mini .input { padding: 11px 13px; }

/* ============================================================
   Toast
   ============================================================ */
.toast-wrap { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast {
  background: var(--white); color: var(--ink); padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 9px;
  transform: translateY(20px); opacity: 0; animation: toastIn 0.3s var(--ease) forwards;
}
.toast.success { border-left: 4px solid var(--wa); }
.toast.error { border-left: 4px solid #e23b3b; }
@keyframes toastIn { to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* page hero (sub pages) */
.page-hero { padding: 48px 0 10px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* quick menu nav (chips) */
.menu-nav { position: sticky; top: var(--header-h); z-index: 40; background: rgba(18,32,12,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: 12px 0; margin-bottom: 36px; }
.menu-nav .chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.menu-nav .chips::-webkit-scrollbar { display: none; }
.menu-nav .chips a { flex: none; padding: 8px 16px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.07); font-size: 0.88rem; font-weight: 600; white-space: nowrap; transition: 0.15s; }
.menu-nav .chips a:hover, .menu-nav .chips a.active { background: var(--gold); color: var(--green-800); }

/* ============================================================
   Phase 1 — marketing sections
   ============================================================ */
/* time-based meal banner */
.meal-banner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(90deg, var(--gold), var(--gold-300));
  color: var(--green-800); font-weight: 700; font-size: 0.95rem;
  padding: 11px 18px; text-align: center;
}
.meal-banner b { font-weight: 800; }
.meal-banner .arrow { font-weight: 800; }

/* badge colour variants */
.badge--gold { background: var(--gold); color: var(--green-800); }
.badge--orange { background: #f0683a; color: #fff; }
.badge--pink { background: #e8537e; color: #fff; }
.badge--purple { background: #8a5cd0; color: #fff; }
.badge--blue { background: #3a8ed0; color: #fff; }
.badge--green { background: #4caf50; color: #fff; }
.badge--festive { background: linear-gradient(90deg, #e8537e, #f0a93a); color: #fff; }

/* today's special band */
.special-band {
  display: grid; grid-template-columns: 0.85fr 1.15fr; overflow: hidden;
  background: linear-gradient(165deg, var(--green-600), var(--green-700));
  border: 1px solid rgba(244,169,31,0.4); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.special-media { position: relative; min-height: 290px; display: grid; place-items: center; background-size: cover; background-position: center; font-size: 6rem; }
.special-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.special-flag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--green-800); font-weight: 800; font-size: 0.76rem; letter-spacing: 0.03em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.special-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.special-body h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 6px 0 8px; }
.special-body .rating-num { color: var(--gold); font-weight: 800; margin-left: 6px; font-size: 0.9rem; }
.special-meta { display: flex; align-items: center; gap: 18px; margin: 16px 0 20px; flex-wrap: wrap; }
.special-meta .price { font-size: 2rem; font-weight: 800; color: var(--gold); }
.only-today { font-weight: 700; color: #ffd28a; font-size: 0.9rem; }
.special-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* most ordered ranked cards */
.rank-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; margin-top: 36px; }
.rank-card { position: relative; display: flex; align-items: center; gap: 14px; padding: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s var(--ease), border-color .2s; }
.rank-card:hover { transform: translateY(-4px); border-color: rgba(244,169,31,0.4); }
.rank-num { position: absolute; top: -10px; left: -8px; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--green-800); font-weight: 800; font-size: 0.88rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 1; }
.rank-media { width: 78px; height: 78px; flex: none; border-radius: 14px; overflow: hidden; display: grid; place-items: center; font-size: 2.2rem; background-size: cover; background-position: center; position: relative; }
.rank-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; min-width: 0; }
.rank-info b { font-size: 1.05rem; display: block; }
.rank-stats { display: flex; gap: 8px; align-items: center; margin: 4px 0 8px; flex-wrap: wrap; }
.r-star { color: var(--gold); font-weight: 700; font-size: 0.84rem; }
.r-orders { font-size: 0.76rem; color: var(--cream); background: rgba(244,169,31,0.16); padding: 2px 9px; border-radius: var(--radius-pill); font-weight: 700; }
.r-badge { font-size: 0.78rem; color: var(--muted); }
.rank-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rank-bottom .price { font-size: 1.2rem; font-weight: 800; color: var(--gold); }

/* trust grid */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-top: 36px; }
.trust-card { text-align: center; padding: 22px 14px; background: linear-gradient(165deg, var(--green-600), var(--green-700)); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s var(--ease); }
.trust-card:hover { transform: translateY(-4px); }
.trust-ic { font-size: 2rem; margin-bottom: 8px; }
.trust-card b { display: block; font-size: 0.98rem; }
.trust-card span { font-size: 0.8rem; color: var(--muted); }

/* share-with-friends band */
.share-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(165deg, var(--green-600), var(--green-700));
  border: 1px solid rgba(244,169,31,0.34); border-radius: var(--radius-lg);
  padding: 30px 34px; box-shadow: var(--shadow);
}
.share-band-copy { flex: 1 1 320px; min-width: 0; }
.share-band-copy h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 6px 0 8px; }
.share-band-copy p { margin: 0; }
.share-band-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid var(--line);
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.share-pill svg { width: 18px; height: 18px; }
.share-pill:hover { transform: translateY(-3px); }
.share-pill.wa:hover { background: var(--wa); color: #08231a; border-color: transparent; }
.share-pill.fb:hover { background: #1877f2; border-color: transparent; }
.share-pill.copy:hover { background: var(--gold); color: var(--green-800); border-color: transparent; }
@media (max-width: 560px) { .share-band-btns { width: 100%; } .share-pill { flex: 1; justify-content: center; } }

@media (max-width: 720px) {
  .special-band { grid-template-columns: 1fr; }
  .special-media { min-height: 200px; font-size: 4rem; }
  .special-body { padding: 24px; }
}

/* ============================================================
   Phase 2 — dish detail pages + reviews
   ============================================================ */
.crumbs { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--cream); }

.dish-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: start; }
.dish-media { position: sticky; top: calc(var(--header-h) + 16px); }
.dish-photo { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; display: grid; place-items: center; font-size: 6rem; box-shadow: var(--shadow); background-size: cover; background-position: center; }
.dish-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dish-photo .badge { top: 16px; left: 16px; }
.dish-photo .veg-mark { top: 16px; right: 16px; }
.share-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.share-btn { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; transition: transform .2s, background .2s; }
.share-btn:hover { transform: translateY(-3px); }
.share-btn svg { width: 19px; height: 19px; }
.share-btn.wa:hover { background: var(--wa); color: #08231a; }
.share-btn.fb:hover { background: #1877f2; }
.share-btn.x:hover { background: #111; }
.share-btn.copy:hover { background: var(--gold); color: var(--green-800); }

.dish-info h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 8px 0 10px; }
.dish-rating { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.dish-rating .stars { color: var(--gold); letter-spacing: 1px; }
.dish-rating b { color: var(--gold); }
.dish-price { font-size: 2.2rem; font-weight: 800; color: var(--gold); margin: 12px 0; }
.dish-price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.dish-desc { color: var(--cream); margin-bottom: 16px; }
.dish-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.d-chip { background: rgba(255,255,255,0.07); border: 1px solid var(--line); padding: 7px 13px; border-radius: var(--radius-pill); font-size: 0.84rem; font-weight: 600; }
.dish-sub { font-size: 1.05rem; margin: 18px 0 10px; }
.dish-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.dish-info .variant-list { max-width: 470px; }

.dish-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.detail-card { background: linear-gradient(165deg, var(--green-600), var(--green-700)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.detail-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.detail-card p { color: var(--cream); margin: 0; font-size: 0.92rem; }

.rev-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.rev-card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.rev-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.rev-photo { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.rev-card p { color: var(--cream); font-size: 0.94rem; }
.rev-author { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.rev-author b { display: block; font-size: 0.95rem; }
.rev-author span { font-size: 0.8rem; color: var(--muted); }

/* review modal (reuses .cart-drawer slide-in) */
.rev-modal .cart-items { padding: 16px 22px 26px; }
.rev-stars { display: flex; gap: 6px; font-size: 2.1rem; cursor: pointer; user-select: none; }
.rev-stars span { color: rgba(255,255,255,0.22); transition: color .12s, transform .12s; }
.rev-stars span.on { color: var(--gold); }
.rev-stars span:hover { transform: scale(1.12); }
.rev-photo-label { display: inline-block; padding: 9px 14px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); font-weight: 700; font-size: 0.86rem; cursor: pointer; }
.rev-photo-name { font-size: 0.82rem; margin-left: 8px; }

/* post-order rate banner */
.rate-banner { position: fixed; left: 50%; bottom: 88px; transform: translateX(-50%); z-index: 75; display: flex; align-items: center; gap: 12px; background: var(--green-800); border: 1px solid rgba(244,169,31,0.5); border-radius: var(--radius-pill); padding: 9px 14px 9px 18px; box-shadow: var(--shadow); font-weight: 700; font-size: 0.9rem; max-width: 92vw; }
.rate-close { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 1rem; flex: none; }

@media (max-width: 860px) {
  .dish-grid { grid-template-columns: 1fr; gap: 24px; }
  .dish-media { position: static; }
  .dish-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Phase 3 — order boosters (offer banner, combos, stock, upsell)
   ============================================================ */
/* countdown offer banner */
.offer-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  background: linear-gradient(90deg, #e8537e, #f0683a);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 11px 18px; text-align: center;
}
.offer-banner b { font-weight: 800; }
.offer-timer {
  background: rgba(0,0,0,0.22); color: #fff; font-weight: 800;
  padding: 3px 11px; border-radius: var(--radius-pill);
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}
/* the hidden attribute must win over the display rules above (no empty bar) */
.meal-banner[hidden], .offer-banner[hidden] { display: none; }
.rate-banner[hidden] { display: none; }

/* combos / bundles */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.combo-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(244,169,31,0.34); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s;
}
.combo-card:hover { transform: translateY(-5px); border-color: rgba(244,169,31,0.65); }
.combo-media {
  position: relative; min-height: 150px; display: grid; place-items: center;
  font-size: 4rem; background: linear-gradient(150deg, var(--green-600), var(--green-700));
  background-size: cover; background-position: center;
}
.combo-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.combo-emoji { filter: drop-shadow(0 8px 14px rgba(0,0,0,0.3)); }
.combo-occ {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
  background: var(--gold); color: var(--green-800);
}
.combo-occ.weekend { background: #3a8ed0; color: #fff; }
.combo-occ.festival { background: linear-gradient(90deg, #e8537e, #f0a93a); color: #fff; }
.combo-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.combo-body h3 { font-size: 1.16rem; margin: 0 0 8px; }
.combo-items { font-size: 0.9rem; color: var(--cream); margin: 0 0 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; flex: 1; }
.combo-items .plus { color: var(--gold); font-weight: 800; }
.combo-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.cp-now { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.cp-was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.cp-save { font-size: 0.78rem; font-weight: 800; color: #08231a; background: var(--gold-300); padding: 3px 10px; border-radius: var(--radius-pill); }

/* limited-stock chip on food cards */
.stock-chip {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 4px 10px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
  background: #f0683a; color: #fff;
}
.stock-chip.sold { background: #6b6b6b; color: #fff; }

/* stock alert on dish page */
.stock-alert {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; padding: 9px 15px;
  border-radius: var(--radius-pill); margin: 4px 0 6px;
  background: rgba(240,104,58,0.16); color: #ffb38f; border: 1px solid rgba(240,104,58,0.5);
}
.stock-alert.sold { background: rgba(255,255,255,0.07); color: var(--muted); border-color: var(--line); }
.stock-alert.pulse { animation: stockPulse 1.6s ease-in-out infinite; }
@keyframes stockPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(240,104,58,0.4); } 50% { box-shadow: 0 0 0 7px rgba(240,104,58,0); } }

/* smart upsell box on dish page */
.upsell-box {
  display: flex; align-items: center; gap: 14px; margin-top: 18px; padding: 14px 16px;
  background: linear-gradient(165deg, rgba(244,169,31,0.14), rgba(244,169,31,0.05));
  border: 1px dashed rgba(244,169,31,0.55); border-radius: var(--radius);
}
.upsell-ic { font-size: 2rem; flex: none; }
.upsell-txt { flex: 1; min-width: 0; }
.upsell-txt b { display: block; font-size: 0.98rem; }
.upsell-txt span { font-size: 0.84rem; color: var(--muted); }
.upsell-box .add-cart { flex: none; }

/* ============================================================
   Health & Nutrition blog (self-contained section)
   ============================================================ */
.container.narrow { max-width: 820px; }

/* hero */
.health-hero {
  position: relative; padding: 56px 0 40px; overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(244,169,31,0.16), transparent 60%),
    linear-gradient(180deg, var(--green-800), var(--green-900));
}
.health-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.hh-copy h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.05; margin: 10px 0 14px; }
.hh-copy .lead { color: var(--cream); font-size: clamp(1.02rem, 2.2vw, 1.2rem); max-width: 540px; margin-bottom: 22px; }
.hh-art { position: relative; min-height: 240px; display: grid; place-items: center; }
.hh-core { font-size: clamp(5rem, 16vw, 9rem); filter: drop-shadow(0 16px 28px rgba(0,0,0,0.4)); }
.hh-float {
  position: absolute; font-size: 2.4rem; background: rgba(255,255,255,0.06);
  border: 1px solid var(--line); border-radius: 18px; width: 64px; height: 64px;
  display: grid; place-items: center; box-shadow: var(--shadow); animation: hhFloat 5s ease-in-out infinite;
}
.hh-f1 { top: 6%; left: 8%; }
.hh-f2 { top: 0; right: 16%; animation-delay: .6s; }
.hh-f3 { bottom: 10%; left: 0; animation-delay: 1.2s; }
.hh-f4 { bottom: 4%; right: 6%; animation-delay: 1.8s; }
.hh-f5 { top: 44%; right: -2%; animation-delay: 2.4s; }
@keyframes hhFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* daily tip */
.daily-tip {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 26px 0 0; padding: 16px 20px; border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(244,169,31,0.16), rgba(244,169,31,0.05));
  border: 1px solid rgba(244,169,31,0.4);
}
.dt-badge { background: var(--gold); color: var(--green-800); font-weight: 800; font-size: 0.82rem; padding: 6px 13px; border-radius: var(--radius-pill); white-space: nowrap; }
.daily-tip p { margin: 0; font-weight: 600; color: var(--cream); }

/* category grid */
.hcat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 36px; }
.hcat-card {
  display: flex; flex-direction: column; gap: 5px; padding: 20px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s var(--ease), border-color .2s;
}
.hcat-card:hover { transform: translateY(-4px); border-color: rgba(244,169,31,0.5); }
.hcat-ic { font-size: 2rem; }
.hcat-name { font-weight: 700; font-size: 1.02rem; }
.hcat-blurb { font-size: 0.84rem; color: var(--muted); flex: 1; }
.hcat-count { font-size: 0.74rem; font-weight: 700; color: var(--gold-300); margin-top: 4px; }
.hcat-count.muted { color: var(--muted-2); }

/* article cards */
.hc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.hc-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .2s var(--ease), border-color .2s;
}
.hc-card:hover { transform: translateY(-5px); border-color: rgba(244,169,31,0.5); }
.hc-media { position: relative; height: 150px; display: grid; place-items: center; overflow: hidden; }
.hc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hc-emoji { font-size: 3.4rem; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.3)); }
.hc-tile--0 { background: linear-gradient(150deg, #2c4a1d, #436b33); }
.hc-tile--1 { background: linear-gradient(150deg, #c98a1e, #a5651a); }
.hc-tile--2 { background: linear-gradient(150deg, #3f7d56, #2c5a3c); }
.hc-tile--3 { background: linear-gradient(150deg, #b85c4a, #8c3f33); }
.hc-tile--4 { background: linear-gradient(150deg, #5a7fb0, #3c5a86); }
.hc-flag { position: absolute; top: 12px; left: 12px; background: #e8537e; color: #fff; font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-pill); }
.hc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.hc-cat { font-size: 0.74rem; font-weight: 700; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.hc-body h3 { font-size: 1.12rem; margin: 0 0 7px; line-height: 1.25; }
.hc-body p { font-size: 0.87rem; color: var(--muted); margin: 0 0 14px; flex: 1; }
.hc-meta { font-size: 0.8rem; color: var(--muted-2); font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.hc-go { color: var(--gold); font-weight: 700; }

/* seasonal guide */
.season-band { border-radius: var(--radius-lg); padding: 30px 32px; border: 1px solid rgba(244,169,31,0.34); background: linear-gradient(165deg, var(--green-600), var(--green-700)); }
.season--summer { background: linear-gradient(165deg, #c98a1e, #2c4a1d); }
.season--monsoon { background: linear-gradient(165deg, #2f6d6b, #1f3514); }
.season--winter { background: linear-gradient(165deg, #3a5a86, #1f3514); }
.season-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.season-emoji { font-size: 3rem; }
.season-head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 4px 0; }
.season-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.season-col { background: rgba(0,0,0,0.18); border-radius: var(--radius); padding: 16px 18px; }
.season-col h4 { margin: 0 0 8px; font-size: 0.96rem; }
.season-col ul { margin: 0; padding-left: 18px; }
.season-col li { font-size: 0.9rem; color: var(--cream); margin-bottom: 4px; }
.season-tip { margin: 18px 0 0; font-weight: 600; color: #ffe6b0; }

/* nutrition facts strip */
.facts-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.fact-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; }
.fact-chip .fc-ic { font-size: 1.05rem; }

/* meal goal cards */
.goal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin-top: 36px; }
.goal-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 22px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s var(--ease), border-color .2s;
}
.goal-card:hover { transform: translateY(-4px); border-color: rgba(244,169,31,0.5); }
.goal-ic { font-size: 2rem; }
.goal-card b { font-size: 1.05rem; }
.goal-card p { font-size: 0.85rem; color: var(--muted); margin: 0; flex: 1; }
.goal-picks { font-size: 0.8rem; font-weight: 700; color: var(--gold-300); margin: 4px 0 10px; }

/* BMI calculator */
.bmi-card { max-width: 640px; margin: 36px auto 0; padding: 26px; background: linear-gradient(165deg, var(--green-600), var(--green-700)); border: 1px solid rgba(244,169,31,0.34); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bmi-form { display: flex; flex-direction: column; gap: 14px; }
.bmi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bmi-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--cream); }
.bmi-result { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.bmi-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.bmi-stat { background: rgba(0,0,0,0.2); border-radius: var(--radius); padding: 14px 8px; }
.bmi-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold); }
.bmi-cat { display: block; font-size: 1.15rem; font-weight: 800; }
.bmi-lab { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.bmi-low { color: #6fb7ff !important; }
.bmi-ok { color: #5fd38a !important; }
.bmi-warn { color: #ffc24b !important; }
.bmi-high { color: #ff7a6b !important; }
.bmi-rec { margin: 16px 0 12px; font-weight: 600; color: var(--cream); }
.bmi-note { font-size: 0.76rem; margin: 12px 0 0; }
.bmi-err { color: #ffb38f; font-weight: 700; margin: 0; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 15px 18px; font-weight: 700; font-size: 0.96rem; list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0; padding: 0 18px 16px; color: var(--cream); font-size: 0.9rem; line-height: 1.6; }

/* article page */
.art-head { margin-bottom: 18px; }
.art-head .eyebrow { display: inline-block; }
.art-head h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.12; margin: 8px 0 12px; }
.art-excerpt { font-size: 1.1rem; color: var(--cream); margin: 0 0 14px; }
.art-meta { display: flex; gap: 10px; align-items: center; font-size: 0.86rem; color: var(--muted); font-weight: 600; }
.art-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin: 8px 0 18px; min-height: 200px; display: grid; place-items: center; background: linear-gradient(150deg, var(--green-600), var(--green-700)); }
.art-hero.has-img { min-height: 0; aspect-ratio: 16/9; }
.art-hero img { width: 100%; height: 100%; object-fit: cover; }
.art-hero-emoji { font-size: 6rem; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.4)); }
.art-share { margin: 0 0 24px; }
.art-body { font-size: 1.02rem; line-height: 1.8; color: var(--cream); }
.art-body h2 { font-size: 1.4rem; margin: 30px 0 12px; color: #fff; }
.art-body p { margin: 0 0 16px; }
.art-body ul { margin: 0 0 18px; padding-left: 22px; }
.art-body li { margin-bottom: 9px; }
.art-body strong { color: #fff; }
.art-body a { color: var(--gold); text-decoration: underline; }
.art-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.art-faq { margin-top: 30px; }
.art-faq h2 { font-size: 1.5rem; margin-bottom: 16px; }

/* category header */
.hcat-header { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.hcat-header-ic { font-size: 3.2rem; }
.hcat-header h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 4px; }

/* success stories */
.story-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 36px; }
.story-card { display: flex; flex-direction: column; gap: 12px; padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.story-top { display: flex; align-items: center; gap: 13px; }
.story-photo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none; }
.story-avatar { width: 54px; height: 54px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--gold); color: var(--green-800); font-weight: 800; font-size: 1.3rem; }
.story-who b { display: block; font-size: 1rem; }
.story-who span { font-size: 0.8rem; color: var(--muted); }
.story-who .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; margin-top: 2px; }
.story-text { margin: 0; color: var(--cream); font-size: 0.94rem; line-height: 1.6; flex: 1; }
.story-dish { font-size: 0.8rem; font-weight: 700; color: var(--gold-300); background: var(--gold-soft); padding: 5px 12px; border-radius: var(--radius-pill); align-self: flex-start; }

/* health CTA */
.health-cta { text-align: center; padding: 40px 32px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-600), var(--green-800)); border: 1px solid rgba(244,169,31,0.4); }
.health-cta h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin: 0 0 8px; }
.health-cta p { color: var(--cream); margin: 0 0 22px; }
.health-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 860px) {
  .health-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hh-copy .hero-cta { justify-content: center; }
  .hh-copy .lead { margin-left: auto; margin-right: auto; }
  .hh-art { order: -1; min-height: 200px; }
}
@media (max-width: 560px) {
  .bmi-row { grid-template-columns: 1fr; }
  .season-cols { grid-template-columns: 1fr; }
  .bmi-stats { grid-template-columns: 1fr; }
  .health-cta-btns .btn { width: 100%; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badges, .hero-cta, .hero-stats { justify-content: center; }
  .hero .lead, .hero .tagline { margin-left: auto; margin-right: auto; }
  .hero-logo-wrap { order: -1; }
  .hero-logo { width: min(330px, 70%); }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
/* Tablet & below — the full desktop nav no longer fits, so switch to the
   hamburger menu + bottom navigation bar (covers iPad portrait, ~768px). */
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-call, .nav-actions .desktop-only, .nav-actions .cart-btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 14px;
    background: rgba(18,32,12,0.98); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.3s var(--ease); z-index: 55;
  }
  .nav-links.open { display: flex; transform: translateY(0); }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .bottom-nav { display: grid; }
  .fab-wa { display: none; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}
@media (max-width: 760px) {
  .section { padding: 50px 0; }
  .cta-band { padding: 30px 24px; text-align: center; justify-content: center; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  /* hide the big hero banner logo on phones — the header logo is enough */
  .hero-logo-wrap { display: none; }
  /* let the hero flow naturally on phones — single-screen sizing is a desktop touch */
  .hero { padding: 24px 0 36px; min-height: auto; justify-content: flex-start; }
  /* 16px inputs prevent iOS Safari from zooming on focus */
  .input, .textarea, select.input { font-size: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
}

/* Short desktop viewports (display scaling / zoom): compress the hero so the
   whole thing — badges, headline, CTA and stats — still fits one screen. */
@media (min-width: 761px) and (max-height: 760px) {
  .hero { padding: 14px 0; }
  .hero-badges { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 8px; }
  .hero .lead { font-size: clamp(0.95rem, 1.7vw, 1.06rem); margin-bottom: 4px; }
  .hero .tagline { margin-bottom: 12px; font-size: 0.92rem; }
  .hero-cta { margin-bottom: 14px; }
  .hero-cta .btn { padding: 11px 20px; }
  .hero-stats .stat b { font-size: 1.3rem; }
}
@media (min-width: 761px) and (max-height: 620px) {
  .hero h1 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 6px; }
  .hero .lead { margin-bottom: 2px; }
  .hero .tagline { margin-bottom: 10px; }
  .hero-cta { margin-bottom: 10px; }
  .hero-stats .stat b { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
  html { scroll-behavior: auto; }
}
