/* ============================================================
   WINNGS — DESIGN SYSTEM
   Brand: Orange #E8821A · Green #3DB87A · Surti energy
   Display: Bricolage Grotesque · Body: Manrope
   ============================================================ */
:root {
  /* Brand theme from styles-DiQlAlNB.css (oklch converted to hex).
     --orange now carries the brand PRIMARY GREEN (kept name to avoid churn). */
  --orange: #008A3E;          /* primary  oklch(55% .16 152) */
  --orange-deep: #006B25;     /* hero-top oklch(45% .15 152) */
  --orange-tint: #E3F3E8;     /* light primary tint */
  --green: #3EC25F;           /* primary-glow oklch(72% .18 148) */
  --green-deep: #008A3E;
  --green-tint: #E3F3E8;
  --ink: #001807;             /* foreground oklch(18% .05 155) */
  --ink-soft: #4A5A4D;        /* muted-foreground */
  --paper: #FFFFFF;           /* background */
  --card: #FAF8F1;            /* card oklch(98% .01 95) */
  --line: rgba(0,24,7,.10);   /* border */
  --danger: #D64545;
  --live: #E8362A;

  --r-lg: 20px;              /* --radius 1.25rem */
  --r-md: 14px;
  --r-sm: 9px;
  --shadow: 0 4px 18px rgba(38, 24, 13, .07);
  --shadow-lift: 0 10px 30px rgba(38, 24, 13, .13);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* room for bottom nav */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.container { width: min(1120px, 100% - 32px); margin-inline: auto; }

h1, h2, h3, .display { font-family: var(--font-display); letter-spacing: -0.02em; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 247, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
}
.logo .dot { color: var(--green); }
.loc-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  padding: 7px 12px; border-radius: 999px;
}
.header-nav { display: none; gap: 26px; margin-left: auto; font-weight: 700; font-size: 14.5px; }
.header-nav a { color: var(--ink-soft); transition: color .15s; }
.header-nav a:hover, .header-nav a.active { color: var(--orange); }
@media (min-width: 900px) { .header-nav { display: flex; } }
.header .cta { margin-left: auto; }
@media (min-width: 900px) { .header .cta { margin-left: 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 30px -10px rgba(62, 194, 95, .6); /* --shadow-glow */ }
.btn-primary:hover { background: var(--orange-deep); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

/* ---------- LIVE ticker (signature) ---------- */
.live-strip {
  background: var(--ink); color: #FFEFD9;
  overflow: hidden; white-space: nowrap;
  font-size: 13px; font-weight: 700; padding: 8px 0;
}
.live-strip .track { display: inline-flex; gap: 42px; animation: marquee 28s linear infinite; padding-left: 100%; }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .live-strip .track { animation: none; padding-left: 16px; }
}
.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--live); margin-right: 7px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }

/* ---------- Hero ---------- */
.hero { padding: 44px 0 30px; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr .85fr; padding: 26px 0; } }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 800; line-height: 1.06;
}
.hero h1 .accent { color: var(--orange); }
.hero p.sub { margin-top: 14px; font-size: 17px; color: var(--ink-soft); max-width: 46ch; }
.hero-search {
  margin-top: 22px; display: flex; gap: 8px;
  background: var(--card); border: 2px solid var(--line);
  border-radius: 999px; padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow);
  transition: border-color .15s;
}
.hero-search:focus-within { border-color: var(--orange); }
.hero-search input { flex: 1; border: none; background: none; font-size: 16px; outline: none; min-width: 0; }
.trust-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-tint); color: var(--green-deep);
  font-size: 13px; font-weight: 800;
  padding: 7px 14px; border-radius: 999px;
}
.trust-pill.orange { background: var(--orange-tint); color: var(--orange-deep); }

/* ---------- Live stats board ---------- */
.stats-board {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
  padding: 22px; position: relative; overflow: hidden;
}
.stats-board::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}
.stats-board .board-title {
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.stats-grid { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4vw, 36px); color: var(--ink); line-height: 1;
}
.stat .num.green { color: var(--green-deep); }
.stat .num.orange { color: var(--orange); }
.stat .lbl { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }
.src-badge {
  margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 999px;
}
.src-badge.live { background: #FDE8E6; color: var(--live); }
.src-badge.demo { background: var(--line); color: var(--ink-soft); }

/* ---------- Section heads ---------- */
.section { padding: 34px 0; }
.sec-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; }
.sec-head .more { margin-left: auto; font-size: 14px; font-weight: 800; color: var(--orange); white-space: nowrap; }

/* ---------- Filter chips ---------- */
.chips { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; font-size: 13.5px; font-weight: 800;
  padding: 9px 16px; border-radius: 999px;
  background: var(--card); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .15s;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.jain.active, .chip.veg.active { background: var(--green-deep); border-color: var(--green-deep); }

/* ---------- Restaurant cards ---------- */
.rest-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.rest-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .16s, box-shadow .16s;
  display: flex; flex-direction: column;
}
.rest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.rest-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--orange-tint);
  flex-shrink: 0;
}
.rest-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.badge-live {
  position: absolute; top: 10px; left: 10px;
  background: var(--live); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
.badge-offer {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(38,24,13,.85));
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 26px 12px 10px;
}
.badge-closed {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(255,251,247,.72); backdrop-filter: grayscale(1);
  font-weight: 800; color: var(--ink-soft); font-size: 14px;
}
.rest-body { padding: 13px 15px 15px; }
.rest-name { font-weight: 800; font-size: 16.5px; display: flex; align-items: center; gap: 8px; }
.rating {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-deep); color: #fff;
  font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 7px;
  margin-left: auto; flex-shrink: 0;
}
.rest-meta { margin-top: 5px; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.rest-tags { margin-top: 9px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 6px;
  background: var(--orange-tint); color: var(--orange-deep);
}
.tag.green { background: var(--green-tint); color: var(--green-deep); }

/* ---------- Reels rail ---------- */
.reels-rail { display: flex; gap: 14px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: none; }
.reels-rail::-webkit-scrollbar { display: none; }
.reel {
  flex: 0 0 128px; border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 9 / 15; background: var(--ink);
  border: 2.5px solid var(--orange);
}
.reel img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.reel .reel-meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 9px 9px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff; font-size: 11.5px; font-weight: 800; line-height: 1.3;
}
.reel .viewers {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.55); color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; display: flex; align-items: center; gap: 4px;
}
.reel .viewers::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--live); animation: pulse 1.4s infinite; }

/* ---------- Promise band ---------- */
.promise {
  background: var(--ink); color: #FFF7EE;
  border-radius: var(--r-lg); padding: 30px 24px;
  display: grid; gap: 20px;
}
@media (min-width: 800px) { .promise { grid-template-columns: repeat(3, 1fr); padding: 38px 34px; } }
.promise h3 { font-size: 18px; color: var(--orange); margin-bottom: 6px; }
.promise p { font-size: 14px; color: #D9C9B8; }

/* ---------- Offers ---------- */
.offer-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.offer-card {
  background: var(--card); border: 1.5px dashed var(--orange);
  border-radius: var(--r-md); padding: 18px;
  position: relative;
}
.offer-card .otag {
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  color: var(--green-deep); background: var(--green-tint);
  padding: 3px 9px; border-radius: 999px;
}
.offer-card h3 { font-size: 17px; margin: 10px 0 4px; }
.offer-card p { font-size: 13.5px; color: var(--ink-soft); }
.offer-card .code {
  margin-top: 12px; display: inline-block;
  font-family: monospace; font-weight: 800; font-size: 14px;
  background: var(--orange-tint); color: var(--orange-deep);
  padding: 6px 14px; border-radius: 8px; letter-spacing: .12em;
}

/* ---------- Restaurant detail ---------- */
.detail-hero { display: grid; gap: 20px; padding: 26px 0 8px; }
@media (min-width: 800px) { .detail-hero { grid-template-columns: 340px 1fr; align-items: start; } }
.detail-hero .rest-thumb { border-radius: var(--r-lg); overflow: hidden; }
.detail-hero h1 { font-size: clamp(26px, 4vw, 38px); }
.menu-cat { margin-top: 26px; }
.menu-cat h3 { font-size: 19px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.menu-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.diet-mark { flex-shrink: 0; width: 16px; height: 16px; border: 1.7px solid; border-radius: 3px; display: grid; place-items: center; margin-top: 3px; }
.diet-mark::after { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.diet-mark.veg { border-color: var(--green-deep); } .diet-mark.veg::after { background: var(--green-deep); }
.diet-mark.nonveg { border-color: var(--danger); } .diet-mark.nonveg::after { background: var(--danger); }
.menu-item .mi-name { font-weight: 800; font-size: 15.5px; }
.menu-item .mi-desc { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.menu-item .mi-price { font-weight: 800; margin-top: 4px; }
.menu-item .add {
  margin-left: auto; flex-shrink: 0;
  background: var(--green-tint); color: var(--green-deep);
  font-weight: 800; font-size: 13px; padding: 8px 20px; border-radius: 9px;
  border: 1.5px solid var(--green);
  transition: all .13s;
}
.menu-item .add:hover { background: var(--green); color: #fff; }

/* ---------- Track order ---------- */
.track-box { max-width: 560px; margin: 0 auto; }
.track-steps { margin-top: 26px; position: relative; }
.tstep { display: flex; gap: 16px; padding-bottom: 26px; position: relative; }
.tstep::before {
  content: ""; position: absolute; left: 11px; top: 26px; bottom: 0;
  width: 2.5px; background: var(--line);
}
.tstep:last-child::before { display: none; }
.tstep.done::before { background: var(--green); }
.tstep .knob {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 2.5px solid var(--line); background: var(--card); z-index: 1;
}
.tstep.done .knob { border-color: var(--green); background: var(--green); }
.tstep.current .knob { border-color: var(--orange); background: var(--orange); animation: pulse 1.4s infinite; }
.tstep .tl-label { font-weight: 800; }
.tstep .tl-time { font-size: 12.5px; color: var(--ink-soft); }
.eta-banner {
  background: var(--orange-tint); border: 1.5px solid var(--orange);
  border-radius: var(--r-md); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  font-weight: 800;
}
.eta-banner .big { font-family: var(--font-display); font-size: 30px; color: var(--orange-deep); }

/* ---------- Partner form ---------- */
.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow);
  max-width: 640px;
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 800; font-size: 13.5px; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; font-size: 15px;
  border: 1.7px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .13s;
}
.field input:focus, .field select:focus { border-color: var(--orange); outline: none; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.form-ok {
  background: var(--green-tint); border: 1.5px solid var(--green);
  color: var(--green-deep); font-weight: 800;
  padding: 14px 18px; border-radius: var(--r-md);
}

/* ---------- App banner ---------- */
.app-band {
  background: linear-gradient(120deg, var(--orange), #F09A3E);
  border-radius: var(--r-lg); color: #fff;
  padding: 34px 26px; text-align: center;
}
.app-band h2 { font-size: clamp(24px, 4vw, 34px); }
.app-band p { margin-top: 8px; opacity: .93; font-weight: 600; }
.store-btns { margin-top: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  background: var(--ink); color: #fff; font-weight: 800;
  padding: 12px 24px; border-radius: 12px; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .13s;
}
.store-btn:hover { transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { margin-top: 40px; border-top: 1px solid var(--line); padding: 34px 0 26px; background: var(--card); }
.footer-grid { display: grid; gap: 24px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.footer a { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); padding: 4px 0; }
.footer a:hover { color: var(--orange); }
.footer .fine { margin-top: 26px; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Bottom nav (thumb zone, mobile) ---------- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--card); border-top: 1px solid var(--line);
  display: flex; padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}
@media (min-width: 900px) { .bottom-nav { display: none; } }
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10.5px; font-weight: 800; color: var(--ink-soft); padding: 6px 0;
}
.bnav-item .ico { font-size: 20px; line-height: 1; }
.bnav-item.active { color: var(--orange); }

/* ---------- Skeletons & states ---------- */
.skel { border-radius: var(--r-lg); background: linear-gradient(90deg, #EEF3EC 25%, #F7FAF4 50%, #EEF3EC 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.skel-card { height: 260px; }
.empty {
  text-align: center; padding: 50px 20px; color: var(--ink-soft);
}
.empty .e-emoji { font-size: 44px; }
.empty h3 { margin: 10px 0 4px; color: var(--ink); }

.fade-in { animation: fadeIn .35s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   HERO V2 — "Food flying. Prices winning!"
   Ported from winngs-food-app-links design data
   ============================================================ */
:root {
  --gold: #FDD506;            /* accent oklch(88% .18 95) */            /* accent: price pills + hero accent text */
  --cream: #fdf3df;           /* dish tray panel */
  --pink-chip: #ffd0ec;       /* add-button bg */
  --pink-ink: #e91e8a;        /* add-button icon */
  --mint-card: #e8f5ec;       /* feature card 1 */
  --lemon-card: #fff7d6;      /* feature card 2 */
  --blush-card: #fde6ef;      /* feature card 3 */
  --primary-deep: #004112;    /* oklch(32% .11 152) */    /* dark footer band */
  --gradient-hero: linear-gradient(180deg, #006B25 0%, #005B1B 100%); /* exact from theme */
  --primary-glow: #3EC25F;
  --shadow-card: 0 20px 50px -25px rgba(0,0,0,.4);
}

.hero2 {
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}
.hero2 .dots {
  pointer-events: none; position: absolute; inset: 0; opacity: .07;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero2-grid { position: relative; display: grid; gap: 26px; padding: 34px 0 40px; }
@media (min-width: 900px) {
  .hero2-grid { grid-template-columns: 1fr 1fr; align-items: center; padding: 64px 0 78px; gap: 40px; }
}
.hero2 .logo-white {
  font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero2 .logo-white img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.hero2 h1 {
  margin-top: 14px;
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.02em;
  animation: fadeUp .6s ease both;
}
.hero2 h1 .accent { color: var(--gold); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }

.store-row { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp .6s .15s ease both; }
.store-btn2 {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 16px; background: #000; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  padding: 12px 20px; transition: transform .15s, background .15s;
}
.store-btn2:hover { transform: translateY(-2px); background: #171717; }
.store-btn2 svg { width: 26px; height: 26px; }
.store-btn2 .s-col { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.store-btn2 .s-top { font-size: 10px; font-weight: 700; text-transform: uppercase; opacity: .8; letter-spacing: .04em; }
.store-btn2 .s-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; }

/* floating scooter + glow + orbit */
.hero2-visual { position: relative; min-height: 300px; }
@media (min-width: 900px) { .hero2-visual { min-height: 520px; } }
.hero2-visual .glow {
  position: absolute; left: 50%; top: 50%; width: 420px; height: 420px; max-width: 90%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: color-mix(in srgb, var(--primary-glow) 30%, transparent); filter: blur(64px);
}
.hero2-visual .orbit {
  position: absolute; left: 50%; top: 50%; width: 460px; height: 460px; max-width: 96%;
  transform: translate(-50%, -50%); border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.2);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.scooter {
  position: relative; z-index: 10; display: block; margin: 0 auto;
  width: min(62%, 340px);
  animation: floaty 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.4));
}
.scooter.emoji { font-size: clamp(120px, 22vw, 220px); text-align: center; line-height: 1; }
@keyframes floaty { 50% { transform: translateY(-14px); } }

/* floating dish cards (desktop) */
.float-card {
  position: absolute; z-index: 20; width: 148px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px);
  border-radius: 16px; padding: 8px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.05);
  animation: floaty 4s ease-in-out infinite;
  display: none;
}
@media (min-width: 1000px) { .float-card { display: block; } }
.float-card.p1 { left: -2%; top: 8%; }
.float-card.p2 { right: -4%; top: 20%; animation-delay: -1.2s; }
.float-card.p3 { right: 6%; bottom: 4%; animation-delay: -2.4s; }
.dish-thumb {
  position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: var(--cream); display: grid; place-items: center;
}
.dish-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dish-thumb .fallback-emoji { font-size: 56px; }
.add-btn {
  position: absolute; bottom: 4px; right: 4px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink-chip); color: var(--pink-ink);
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.15), 0 0 0 2px #fff;
  font-weight: 800; font-size: 16px; line-height: 1;
  transition: transform .15s;
}
.add-btn:hover { transform: scale(1.12); }
.float-card .fc-name { margin: 7px 2px 0; font-size: 12px; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-pill {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 800;
  border-radius: 999px; padding: 2px 9px; font-size: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.price-old { font-size: 10px; color: rgba(38,24,13,.4); text-decoration: line-through; font-weight: 700; }
.fc-prices { display: flex; align-items: baseline; gap: 5px; margin: 3px 2px 2px; }

/* mobile cream tray (dish grid under scooter) */
.dish-tray {
  position: relative; z-index: 20; margin-top: -26px;
  background: var(--cream); border-radius: 20px; padding: 10px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.05);
}
@media (min-width: 1000px) { .dish-tray { display: none; } }
.dish-tray .tray-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tray-item .dish-thumb { background: #fff; }
.tray-item .fc-name { margin-top: 5px; font-size: 11px; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* feature cards — "What you get to enjoy" */
.enjoy-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .enjoy-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .enjoy-grid { grid-template-columns: repeat(3, 1fr); } }
.enjoy-card {
  border-radius: 24px; padding: 26px; text-align: center;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .16s, box-shadow .16s;
}
.enjoy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.enjoy-card.mint { background: var(--mint-card); }
.enjoy-card.lemon { background: var(--lemon-card); }
.enjoy-card.blush { background: var(--blush-card); }
.enjoy-card .e-ico {
  width: 80px; height: 80px; margin: 0 auto; border-radius: 50%;
  background: #fff; display: grid; place-items: center; font-size: 42px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.enjoy-card h3 { margin-top: 18px; font-size: 18px; font-weight: 800; }
.enjoy-card p { margin-top: 8px; font-size: 14px; color: rgba(38,24,13,.7); }

/* favourite dishes grid */
.fav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 14px; margin-top: 8px; }
@media (min-width: 640px) { .fav-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .fav-grid { grid-template-columns: repeat(4, 1fr); } }
.fav-item { display: flex; flex-direction: column; align-items: center; }
.fav-item .fav-img {
  width: 128px; height: 128px; display: grid; place-items: center;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.15));
  transition: transform .3s;
}
@media (min-width: 640px) { .fav-item .fav-img { width: 156px; height: 156px; } }
.fav-item:hover .fav-img { transform: translateY(-4px); }
.fav-item .fav-img img { width: 100%; height: 100%; object-fit: contain; }
.fav-item .fav-img .fallback-emoji { font-size: 84px; }
.fav-item .price-pill { margin-top: -12px; font-size: 15px; padding: 4px 14px; position: relative; z-index: 2; }
.fav-item .fav-name { margin-top: 8px; font-size: 12.5px; font-weight: 700; color: rgba(38,24,13,.8); text-align: center; }

/* stats strip restyled to sit under hero (cream + gold) */
.stats-inline {
  background: var(--cream); border: 1px solid rgba(0,0,0,.05);
  border-radius: 20px; box-shadow: var(--shadow);
  padding: 18px 20px; margin-top: -28px; position: relative; z-index: 25;
}
.stats-inline .board-title { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.stats-inline .stats-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .stats-inline .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* dark footer band variant */
.footer-deep { background: var(--primary-deep); color: rgba(255,255,255,.75); }
.footer-deep .logo, .footer-deep h4 { color: #fff; }
.footer-deep a { color: rgba(255,255,255,.75); }
.footer-deep a:hover { color: var(--gold); }
.footer-deep .fine { color: rgba(255,255,255,.55); }
.footer-deep .logo .dot { color: var(--gold); }
