/* ============================================================
   ARSAK GROUP — shared base stylesheet
   Structure + components shared by all brand pages.
   Brand identity is supplied via CSS variables set per page.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Defaults — each page overrides these with its brand palette */
  --bg: #faf7f2;
  --bg-2: #f1ece3;
  --surface: #ffffff;
  --surface-2: #f6f2ec;
  --text: #1d1a16;
  --muted: #6b6358;
  --accent: #c8102e;
  --accent-2: #e8b04b;
  --accent-strong: var(--accent); /* AA-safe accent for text & white-on-accent; overridden per brand */
  --line: rgba(0,0,0,.10);
  --media-bg: #f3efe8;
  --media-bg-2: #e9e3d8;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px -20px rgba(30,20,10,.28);
  --shadow-soft: 0 10px 30px -16px rgba(30,20,10,.25);
  --maxw: 1180px;
  --font-display: "Cairo", system-ui, sans-serif;
  --font-body: "Tajawal", system-ui, sans-serif;
  --font-num: "Cairo", system-ui, sans-serif;
  --font-latin: "Cairo", system-ui, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 44px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: fixed; inset-inline-start: 14px; top: -64px; z-index: 100; background: var(--accent-strong); color: #fff; padding: 11px 20px; border-radius: 0 0 14px 14px; font-family: var(--font-display); font-weight: 800; box-shadow: var(--shadow); transition: top .2s ease; }
.skip:focus { top: 0; }

/* ---------------------------------- Top nav ---------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav { transition: padding .3s ease, box-shadow .3s ease, background .3s ease; }
.nav--scrolled { padding-block: 9px; box-shadow: 0 10px 30px -22px rgba(20,12,4,.55); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav__brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; }
.nav__brand .dot { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 18px; box-shadow: var(--shadow-soft); }
.nav__brand .nav__logo { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; display: block; }
.nav__brand b { font-size: 1.12rem; letter-spacing: .2px; }
.nav__brand small { display: block; font-size: .66rem; color: var(--muted); font-weight: 600; letter-spacing: 2px; font-family: var(--font-latin); }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 6px 15px; border-radius: 999px; font-weight: 700; font-size: .9rem; color: var(--muted);
  transition: background .2s, color .2s;
}
.nav__links a:hover, .nav__links a:focus-visible { background: var(--surface-2); color: var(--text); }
.nav__links a.is-active { background: var(--accent-strong); color: #fff; }
.nav__home { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 720px) {
  .nav__links a.lbl { display: none; }
  .nav__links a.is-active { display: inline-flex; }
}

/* ---------------------------------- Language toggle + EN mode ---------------------------------- */
.langtoggle { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--text); font-weight: 800; font-family: "Oswald", system-ui, sans-serif; font-size: .85rem; letter-spacing: .5px; cursor: pointer; transition: background .2s, border-color .2s; }
.langtoggle:hover { background: var(--surface-2); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.immersive .langtoggle { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.immersive .langtoggle:hover { background: rgba(255,255,255,.18); }
/* in English mode, the secondary (now-Arabic) labels must not be letter-spaced/uppercased */
.lang-en .card__en, .lang-en .day__en, .lang-en .eyebrow { letter-spacing: normal; text-transform: none; font-family: var(--font-body); }
.lang-en .vhero h1 .en { display: none; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  background: var(--accent-strong); color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .25s ease, filter .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); filter: brightness(1.04); }
.btn:active { transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--surface-2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(-4px); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------------------------------- Animated brand backdrop (behind the menu) ---------------------------------- */
.page-ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.page-ambient i { position: absolute; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, var(--c), transparent 62%); opacity: .1; filter: blur(46px); animation: ambDrift 26s ease-in-out infinite; }
.page-ambient i:nth-child(1) { top: -10vw; inset-inline-start: -8vw; }
.page-ambient i:nth-child(2) { bottom: -12vw; inset-inline-end: -8vw; animation-delay: -9s; }
.page-ambient i:nth-child(3) { top: 44vw; inset-inline-start: 44vw; width: 34vw; height: 34vw; animation-delay: -16s; }
@keyframes ambDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(4vw, -4vw) scale(1.16); } }

/* ---------------------------------- Immersive: brand video behind the whole page ---------------------------------- */
.page-video { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-video-scrim { position: fixed; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,11,9,.64), rgba(12,11,9,.8)); }
.vhero__video { display: none; } /* hero shows the single fixed page video through its scrim */

body.immersive { background: transparent; color: #f3ece0; }
.immersive .vhero { background: transparent; }
.immersive .nav { background: rgba(14,12,10,.55); border-bottom-color: rgba(255,255,255,.1); }
.immersive .nav--scrolled { background: rgba(14,12,10,.8); }
.immersive .nav__brand b { color: #fff; }
.immersive .nav__brand small { color: rgba(255,255,255,.55); }
.immersive .nav__links a { color: rgba(255,255,255,.74); }
.immersive .nav__links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.immersive .catnav-wrap { background: rgba(14,12,10,.62); border-bottom-color: rgba(255,255,255,.1); }
.immersive .catnav a { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.16); }
.immersive .catnav a:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.immersive .section-title { color: #fff; }
.immersive .section-sub { color: rgba(255,255,255,.72); }
.immersive .head-count { color: rgba(255,255,255,.6); }
.immersive .eyebrow { color: var(--accent); }
.immersive .day__head { background: rgba(22,19,16,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-color: rgba(255,255,255,.12); }
.immersive .day__name { color: #fff; }
.immersive .day__en { color: rgba(255,255,255,.6); }
.immersive .day__line { background: rgba(255,255,255,.14); }
.immersive .soon__title { color: #fff; }
.immersive .soon__text { color: rgba(255,255,255,.78); }
.immersive .soon__chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.immersive .inc { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.immersive .lm-note { color: rgba(255,255,255,.6); }
.immersive .foot { background: rgba(10,9,7,.9); border-top-color: rgba(255,255,255,.1); }
.immersive .foot__brand h3 { color: #fff; }
.immersive .foot__brand p, .immersive .foot__col a, .immersive .foot__col p { color: rgba(255,255,255,.82); }
.immersive .foot__col h4 { color: rgba(255,255,255,.55); }
.immersive .foot__col a:hover { color: var(--accent); }
.immersive .foot__bar { color: rgba(255,255,255,.5); border-top-color: rgba(255,255,255,.1); }

/* ---------------------------------- Video hero (shared) ---------------------------------- */
.vhero { position: relative; min-height: clamp(560px, 92vh, 860px); display: flex; align-items: flex-end; overflow: hidden; background: #15110e; margin-top: -64px; }
.vhero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.vhero__scrim { position: absolute; inset: 0; z-index: 1; }
.vhero__content { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 44px); padding-block: 120px clamp(44px, 7vw, 84px); }
.vhero__inner { max-width: 730px; }
.eyebrow-v { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff; }
.eyebrow-v::before { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.vhero h1 { color: #fff; font-size: clamp(2.7rem, 7.2vw, 5.6rem); line-height: 1.08; margin: 18px 0 0; text-shadow: 0 6px 30px rgba(0,0,0,.45); }
.vhero h1 .en { display: block; margin-top: 14px; letter-spacing: 1px; }
.vhero__sub { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2.3vw, 1.28rem); max-width: 48ch; margin: 20px 0 0; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.vhero__stats { display: flex; gap: clamp(20px, 3vw, 36px); margin-top: 28px; flex-wrap: wrap; }
.vhero__stats .v b { display: block; font-family: var(--font-num); font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1; color: #fff; }
.vhero__stats .v span { color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 600; }
.vhero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.vhero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.vhero__cta .btn--ghost:hover { background: rgba(255,255,255,.12); }
.vhero__scroll { position: absolute; z-index: 3; inset-inline-start: 50%; bottom: 18px; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 1.4rem; animation: vbob 2.2s ease-in-out infinite; }
.vhero__inner > * { animation: vRise .8s cubic-bezier(.2,.7,.3,1) both; }
.vhero__inner > *:nth-child(1) { animation-delay: .12s; }
.vhero__inner > *:nth-child(2) { animation-delay: .24s; }
.vhero__inner > *:nth-child(3) { animation-delay: .38s; }
.vhero__inner > *:nth-child(4) { animation-delay: .5s; }
.vhero__inner > *:nth-child(5) { animation-delay: .62s; }
@keyframes vRise { from { opacity: 0; transform: translateY(28px); } }
@keyframes vbob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@media (max-width: 640px) { .vhero { min-height: 86vh; } }

/* ---------------------------------- Category quick-nav ---------------------------------- */
.catnav-wrap { position: sticky; top: 63px; z-index: 40; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.catnav { display: flex; gap: 8px; overflow-x: auto; padding: 11px clamp(18px, 4vw, 44px); scrollbar-width: none; -ms-overflow-style: none; max-width: var(--maxw); margin-inline: auto; }
.catnav::-webkit-scrollbar { display: none; }
.catnav a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 6px 15px; border-radius: 999px; font-weight: 700; font-size: .88rem; color: var(--muted); border: 1px solid var(--line); background: var(--surface); transition: all .2s; white-space: nowrap; }
.catnav a:hover { color: var(--text); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.catnav a.is-active { background: var(--accent-strong); color: #fff; border-color: var(--accent-strong); }

/* ---------------------------------- Section heads ---------------------------------- */
.section { padding-block: clamp(40px, 6vw, 78px); }
.section-head { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 30px; flex-wrap: wrap; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-latin); font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  font-size: .72rem; color: var(--accent-strong);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--accent-strong); border-radius: 50%; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800; }
.section-sub { color: var(--muted); max-width: 52ch; margin-top: 8px; }
.head-count { margin-inline-start: auto; font-family: var(--font-num); color: var(--muted); font-weight: 700; font-size: .95rem; }

/* ---------------------------------- Card grid ---------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.6vw, 30px); grid-template-columns: repeat(auto-fill, minmax(274px, 1fr)); }
/* Sweet Time photos are portrait/mixed (0.8) -> squarer media + smaller, tighter cards so each photo fills
   cleanly with only a slim cream edge that blends into the studio backdrop (no blurred sides). Demi/Light keep 4/3. */
body[data-brand="sweet"] .grid { grid-template-columns: repeat(auto-fill, minmax(208px, 1fr)); gap: clamp(14px, 2vw, 22px); grid-auto-rows: 1fr; }
/* Sweet: ONE uniform square media + cover so every card is the same size and each photo FILLS it
   (no bands, no blur, no ragged up/down heights); gentle ~10% center-crop is the trade-off for uniformity */
body[data-brand="sweet"] .card__media { aspect-ratio: 1 / 1; }
body[data-brand="sweet"] .card__photo { object-fit: cover; object-position: center; }
body[data-brand="sweet"] .card__wm { display: none; } /* remove the "سويت تايم" watermark chip from cards */

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .42s cubic-bezier(.2,.7,.3,1), box-shadow .42s, border-color .42s;
  opacity: 0; transform: translateY(18px);
}
.card.in { opacity: 1; transform: none; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); }
.card:hover .card__photo { transform: scale(1.08); }
.card:hover .card__ill .ill { transform: scale(1.06) rotate(-1deg); }

.card__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 0%, var(--media-bg) 0%, var(--media-bg-2) 100%);
}
/* SVG illustration: instant placeholder + offline/error fallback */
.card__ill { position: absolute; inset: 0; display: grid; place-items: center; padding: 14px; }
.card__ill .ill { width: 100%; height: 100%; filter: drop-shadow(0 12px 14px rgba(20,12,4,.18)); transition: transform .55s cubic-bezier(.2,.7,.3,1); }
/* real photo fades in over the illustration once loaded, with a slow zoom on hover */
.card__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: var(--media-bg); opacity: 0; transition: opacity .6s ease, transform .8s cubic-bezier(.2,.7,.3,1); z-index: 1; will-change: transform; filter: saturate(1.06) contrast(1.03); }
.card__photo.is-loaded { opacity: 1; }
.card__media::after { /* gloss (top) + scrim (bottom, for watermark legibility) */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(80% 50% at 30% 10%, rgba(255,255,255,.32), transparent 60%),
    linear-gradient(to top, rgba(18,12,8,.34), transparent 34%);
}
/* brand watermark on every item image */
.card__wm {
  position: absolute; inset-block-end: 10px; inset-inline-start: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px 5px 9px; border-radius: 999px;
  background: rgba(20,16,14,.5); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .72rem; letter-spacing: .2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.card__wm i { width: 11px; height: 11px; border-radius: 4px; background: var(--accent-strong); box-shadow: 0 0 0 2px rgba(255,255,255,.35); }
.card__badge {
  position: absolute; inset-block-start: 12px; inset-inline-start: 12px; z-index: 3;
  font-family: var(--font-num); font-weight: 800; font-size: .7rem; letter-spacing: .5px;
  padding: 5px 10px; border-radius: 999px; background: var(--accent-strong); color: #fff;
  box-shadow: var(--shadow-soft);
}
/* calorie pill — sits on the photo so it never grows the white body */
.card__cal {
  position: absolute; inset-block-start: 10px; inset-inline-start: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px 4px 8px; border-radius: 999px;
  background: rgba(20,16,14,.52); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  color: #fff; font-family: var(--font-num); font-weight: 800; font-size: .74rem; line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.card__cal .ico-svg { width: 1em; height: 1em; color: #ffbf5d; }
.card__cal small { font-weight: 700; font-size: .82em; opacity: .82; }
.card__badge + .card__cal { inset-block-start: 48px; } /* drop below the "featured" badge when both are present */

.card__body { padding: 12px 15px 13px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.card__titles { display: flex; flex-direction: column; gap: 2px; }
.card__ar { font-size: 1.15rem; font-weight: 800; }
.card__en { font-family: var(--font-latin); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.card__desc { color: var(--muted); font-size: .85rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.price { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--font-num); font-weight: 800; }
.price .num { font-size: 1.65rem; color: var(--text); line-height: 1; }
.price .cur { font-size: .82rem; color: var(--accent-strong); font-weight: 700; }

/* nutrition chips (light meal) */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: baseline; gap: 5px; padding: 6px 11px; border-radius: 999px; background: var(--surface-2); font-family: var(--font-num); font-weight: 700; font-size: .78rem; }
.chip b { font-size: .98rem; color: var(--accent-strong); }
.chip span { color: var(--muted); font-size: .68rem; letter-spacing: .3px; }
.chip--alt b { color: color-mix(in srgb, var(--accent) 55%, var(--text)); }

/* weight / price selector (Light Meal) — pick a weight, price updates */
.wsel { display: flex; flex-direction: column; gap: 6px; width: 100%; flex: 1; }
.wsel__hint { font-size: .72rem; font-weight: 700; color: var(--muted); margin-bottom: 1px; }
.wsel__tabs { display: flex; gap: 5px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 13px; padding: 3px; }
.wtab { flex: 1; min-width: 0; border: 0; background: transparent; border-radius: 9px; padding: 4px 3px 3px; font-family: var(--font-num); font-weight: 800; font-size: .95rem; color: var(--muted); cursor: pointer; line-height: 1; transition: background .2s, color .2s, box-shadow .2s; }
.wtab small { display: block; font-size: .58rem; font-weight: 700; margin-top: 3px; opacity: .85; }
.wtab:hover { color: var(--text); }
.wtab.is-active { background: var(--surface); color: var(--accent-strong); box-shadow: var(--shadow-soft); }
.wsel__price { display: flex; align-items: baseline; gap: 5px; justify-content: flex-end; }
.wsel__num { font-family: var(--font-num); font-weight: 800; font-size: 1.5rem; line-height: 1; color: var(--text); }
.wsel__price .cur { font-size: .82rem; color: var(--accent-strong); font-weight: 700; }
/* ice cream: size tabs + price share one row (keeps the two-level selector compact) */
.wsel__ice-size { display: flex; align-items: center; gap: 8px; }
.wsel__ice-size > .wsel__tabs { flex: 1; }
.wsel__ice-size > .wsel__price { flex: 0 0 auto; }

/* ---------------------------------- customer cart + checkout ---------------------------------- */
.card__add { margin-top: 10px; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 12px; padding: 9px 12px; cursor: pointer; font-family: var(--font-display); font-weight: 800; font-size: .92rem;
  background: var(--accent); color: #fff; box-shadow: 0 6px 16px -8px var(--accent); transition: transform .15s, filter .2s; }
.card__add .ico-svg { width: 1.05em; height: 1.05em; }
.card__add:hover { filter: brightness(1.06); transform: translateY(-1px); }
.card__add:active { transform: translateY(0) scale(.98); }

.cartfab { position: fixed; inset-block-end: 20px; inset-inline-end: 20px; z-index: 60; width: 58px; height: 58px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--accent); color: #fff; box-shadow: 0 14px 30px -10px var(--accent), 0 6px 14px rgba(0,0,0,.18); display: grid; place-items: center; transition: transform .2s; }
.cartfab .ico-svg { width: 26px; height: 26px; }
.cartfab:hover { transform: translateY(-2px) scale(1.04); }
.cartfab__n { position: absolute; inset-block-start: -4px; inset-inline-start: -4px; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 999px;
  background: #fff; color: var(--accent); font-family: var(--font-num); font-weight: 800; font-size: .78rem; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.cartfab.has .cartfab__n { display: inline-flex; }
.cartfab.is-pop { animation: fabpop .4s ease; }
@keyframes fabpop { 0%,100%{transform:scale(1)} 40%{transform:scale(1.18)} }

.cartdrawer { position: fixed; inset: 0; z-index: 70; }
.cartdrawer__scrim { position: absolute; inset: 0; background: rgba(15,10,8,.5); opacity: 0; transition: opacity .3s; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.cartdrawer.is-open .cartdrawer__scrim { opacity: 1; }
.cartpanel { position: absolute; inset-block: 0; inset-inline-end: 0; width: min(420px, 92vw); background: var(--bg, #fff); color: var(--text);
  display: flex; flex-direction: column; box-shadow: 0 0 50px rgba(0,0,0,.3); transform: translateX(104%); transition: transform .32s cubic-bezier(.3,.8,.3,1); }
[dir="ltr"] .cartpanel { inset-inline-end: auto; inset-inline-start: 0; transform: translateX(-104%); }
.cartdrawer.is-open .cartpanel { transform: translateX(0); }
.cartpanel__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.cartx { border: 0; background: var(--surface-2); width: 34px; height: 34px; border-radius: 10px; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--muted); }
.cartpanel__scroll { flex: 1; overflow-y: auto; padding: 14px 18px 22px; }
.cline { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.cline__i { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cline__i b { font-size: .96rem; }
.cline__v { font-size: .74rem; color: var(--muted); }
.cline__p { font-family: var(--font-num); font-weight: 700; font-size: .82rem; color: var(--accent); }
.cqty { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border-radius: 999px; padding: 4px; }
.cqty button { border: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-soft); cursor: pointer; display: grid; place-items: center; color: var(--text); }
.cqty button .ico-svg { width: 15px; height: 15px; }
.cqty span { min-width: 18px; text-align: center; font-family: var(--font-num); font-weight: 800; }
.csum { display: flex; justify-content: space-between; padding: 7px 0; color: var(--muted); font-size: .9rem; }
.csum span:last-child { font-family: var(--font-num); }
.csum--t { margin-top: 4px; padding-top: 12px; border-top: 1px dashed var(--line); color: var(--text); font-weight: 800; font-size: 1.05rem; }
.cform { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.cseg { display: flex; flex-direction: column; gap: 8px; }
.cseg button { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 12px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--muted); font-weight: 700; cursor: pointer; transition: .18s; }
.cseg button .ico-svg { width: 20px; height: 20px; }
.cseg button.is-active { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.cinp { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font-family: var(--font-body); font-size: .95rem; }
.cinp:focus { outline: none; border-color: var(--accent); }
.cerr { color: var(--accent-strong, #c0392b); font-size: .82rem; font-weight: 700; min-height: 1px; }
.cartsend { width: 100%; border: 0; border-radius: 14px; padding: 14px; cursor: pointer; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1rem; box-shadow: 0 10px 24px -10px var(--accent); transition: .18s; }
.cartsend:hover { filter: brightness(1.05); }
.cartsend:disabled { opacity: .7; cursor: default; }
.cpaynote { text-align: center; color: var(--muted); font-size: .78rem; margin: 2px 0 0; }
.cartempty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cartempty .ico-svg { width: 46px; height: 46px; opacity: .4; }
.cartempty p { margin-top: 12px; }
.cartdone { text-align: center; padding: 24px 20px 28px; flex: 1; min-height: 0; overflow-y: auto; }
.cartdone__ico { width: 66px; height: 66px; margin: 0 auto 14px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, var(--surface)); color: var(--accent); display: grid; place-items: center; animation: fabpop .5s ease; }
.cartdone__ico .ico-svg { width: 34px; height: 34px; }
.cartdone h3 { font-family: var(--font-display); font-size: 1.4rem; }
.cartdone__no { margin: 10px 0; display: flex; flex-direction: column; gap: 2px; }
.cartdone__no b { font-family: var(--font-num); font-size: 1.6rem; color: var(--accent); }
.cartdone__t { font-weight: 700; }
.cartdone .btn { margin-top: 18px; }

/* customer order-status stepper on the success screen */
.ctrackwrap { margin: 16px 0 6px; }
.ctrack__title { font-size: .82rem; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.ctrack { display: flex; justify-content: space-between; gap: 4px; }
.ctrack__s { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; position: relative; }
.ctrack__s::before { content: ''; position: absolute; inset-block-start: 9px; inset-inline-start: -50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.ctrack__s:first-child::before { display: none; }
.ctrack__dot { width: 20px; height: 20px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); position: relative; z-index: 1; transition: .25s; }
.ctrack__lbl { font-size: .72rem; color: var(--muted); text-align: center; line-height: 1.3; }
.ctrack__s.is-on .ctrack__dot { background: var(--accent); border-color: var(--accent); }
.ctrack__s.is-on .ctrack__lbl { color: var(--text); font-weight: 700; }
.ctrack__s.is-on::before { background: var(--accent); }
.ctrack__s.is-cur .ctrack__dot { animation: ctrackPulse 1.3s ease-in-out infinite; }
@keyframes ctrackPulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent); } 50% { box-shadow: 0 0 0 6px transparent; } }
.ceta { text-align: center; color: var(--accent); font-weight: 700; font-size: .92rem; margin-top: 12px; }
.cready { margin-top: 14px; padding: 16px; border-radius: 16px; background: var(--surface); border: 2px solid var(--accent); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; animation: creadyPop .5s cubic-bezier(.2, 1.2, .4, 1); }
.cready__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; }
.cready__ic svg { width: 26px; height: 26px; }
.cready b { color: var(--accent); font-size: 1.15rem; }
.cready span { color: var(--muted); font-size: .84rem; }
@keyframes creadyPop { 0% { transform: scale(.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ---- cinematic order-journey scenes ---- */
.cstcard { text-align: center; padding: 6px 4px 2px; }
.cst__logo { width: 104px; height: auto; margin: 0 auto 4px; display: block; }
.cstanim { position: relative; width: 180px; height: 170px; margin: 0 auto; display: grid; place-items: center; }
.cst__lottie { width: 170px; height: 170px; display: block; }
.cst__svgfb { position: absolute; inset: 0; display: grid; place-items: center; }
.cst__svgfb .csvg { width: 100%; height: 150px; display: block; }
.cbell, .cglow, .cw, .cpatty, .cfl, .cst, .crglow, .ccloche, .csp, .ccf { transform-box: fill-box; }
.cst__title { font-size: 1.65rem; font-weight: 800; color: var(--text); margin-top: 14px; line-height: 1.35; }
.cst__hl { color: var(--accent); }
.cst__desc { color: var(--muted); font-size: 1rem; margin-top: 8px; }
.cst__dots { margin-top: 22px; display: flex; justify-content: center; gap: 9px; }
.cst__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); transition: background .3s; }
.cst__dot.is-on { background: var(--accent); }
[data-brand="light"] .cstcard { --accent: #8BC53F; }   /* Lite Meal status card uses the brighter brand green (card only) */

/* received: bell + waves + glow */
.csvg--recv .cbell { fill: var(--accent); transform-origin: center top; animation: cbellring 2.2s ease-in-out infinite; }
@keyframes cbellring { 0%, 55%, 100% { transform: rotate(0); } 65% { transform: rotate(10deg); } 75% { transform: rotate(-8deg); } 85% { transform: rotate(5deg); } 92% { transform: rotate(-3deg); } }
.csvg--recv .cglow { fill: var(--accent); opacity: .12; transform-origin: center; animation: cglowpulse 2.2s ease-in-out infinite; }
.csvg--recv .cw { stroke: var(--accent); stroke-width: 3; fill: none; stroke-linecap: round; opacity: 0; animation: cwave 2.2s ease-out infinite; }
.csvg--recv .cw2 { animation-delay: .3s; }
@keyframes cwave { 0% { opacity: 0; } 35% { opacity: .55; } 100% { opacity: 0; } }
@keyframes cglowpulse { 0%, 100% { opacity: .1; transform: scale(1); } 50% { opacity: .22; transform: scale(1.08); } }

/* cooking: pan + flames + steam */
.csvg--cook .cpanh, .csvg--cook .cpand { fill: #2e2a28; }
.csvg--cook .cpanb { fill: #4a4340; }
.csvg--cook .cpatty { fill: var(--accent); transform-origin: center; animation: cbob 1.3s ease-in-out infinite; }
@keyframes cbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.csvg--cook .cfl { transform-origin: center bottom; animation: cflick .5s ease-in-out infinite alternate; }
.csvg--cook .cfl1 { fill: #ffab2e; } .csvg--cook .cfl2 { fill: #ff6a1a; animation-duration: .62s; } .csvg--cook .cfl3 { fill: #ff8f24; animation-duration: .42s; }
@keyframes cflick { 0% { transform: scaleY(.82) scaleX(1.05); opacity: .82; } 100% { transform: scaleY(1.08) scaleX(.95); opacity: 1; } }
.csvg--cook .cst { fill: none; stroke: #c9b8a8; stroke-width: 5; stroke-linecap: round; opacity: 0; transform-origin: center bottom; animation: csteam 2.6s ease-out infinite; }
.csvg--cook .cst2 { animation-delay: .55s; } .csvg--cook .cst3 { animation-delay: 1.1s; }
@keyframes csteam { 0% { opacity: 0; transform: translateY(12px) scale(.9); } 25% { opacity: .5; } 100% { opacity: 0; transform: translateY(-14px) scale(1.05); } }

/* ready: cloche lifts, sparkles, glow */
.csvg--ready .cplate1 { fill: #e2dbd1; } .csvg--ready .cplate2 { fill: #f4efe9; } .csvg--ready .cfood { fill: var(--accent); }
.csvg--ready .crglow { fill: var(--accent); opacity: .14; transform-origin: center; animation: cglowpulse 1.9s ease-in-out infinite; }
.csvg--ready .ccloche { fill: #cfc7bd; transform-origin: center bottom; animation: ccloche 2.4s ease-in-out infinite; }
@keyframes ccloche { 0%, 100% { transform: translateY(0); opacity: 1; } 42%, 58% { transform: translateY(-30px); opacity: .82; } }
.csvg--ready .csp { fill: var(--accent); transform-origin: center; animation: cspark 1.7s ease-in-out infinite; }
.csvg--ready .csp2 { animation-delay: .45s; } .csvg--ready .csp3 { animation-delay: .9s; }
@keyframes cspark { 0%, 100% { transform: scale(.3); opacity: 0; } 50% { transform: scale(1); opacity: 1; } }

/* delivered: check draws, ring, confetti */
.csvg--done .cdglow { fill: var(--accent); opacity: .14; }
.csvg--done .cdring { fill: none; stroke: var(--accent); stroke-width: 5; opacity: .45; }
.csvg--done .cdcheck { fill: none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 62; stroke-dashoffset: 62; animation: cdraw .6s ease-out .15s forwards; }
@keyframes cdraw { to { stroke-dashoffset: 0; } }
.csvg--done .ccf { transform-origin: center; animation: cconfall 1.9s ease-in infinite; }
.csvg--done .ccf1 { fill: #ff6a1a; } .csvg--done .ccf2 { fill: var(--accent); animation-delay: .35s; } .csvg--done .ccf3 { fill: #ffab2e; animation-delay: .65s; } .csvg--done .ccf4 { fill: #4c8b2b; animation-delay: .2s; } .csvg--done .ccf5 { fill: var(--accent); animation-delay: .5s; }
@keyframes cconfall { 0% { transform: translateY(-8px) rotate(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(64px) rotate(240deg); opacity: 0; } }

@media (prefers-reduced-motion: reduce) { .csvg * { animation: none !important; } }

/* ===== Lite Meal order journey — success-screen tracker (brand=light) ===== */
.cjrn { --green: #8BC53F; --green-d: #5F8F2F; --leaf: #a9d66f; --ink: #2e3824; --gray: #e6e6e6;
  text-align: center; padding: 2px 2px 4px; }
body[data-brand="demi"] .cjrn { --green: #d11f2d; --green-d: #9c1622; --leaf: #5f9e3e; }
body[data-brand="sweet"] .cjrn { --green: #ff4d79; --green-d: #c81f5a; --leaf: #ff8a3d; }
.cjrn__logo { max-width: 122px; max-height: 100px; width: auto; height: auto; margin: 0 auto 4px; display: block; }
.cjrn__jt { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: #222; margin: 0; }
.cjrn__jt span { color: var(--green); }
.cjrn__hero { width: 200px; height: 166px; margin: 8px auto 0; }
.cjrn__svg { width: 100%; height: 100%; display: block; overflow: visible; filter: drop-shadow(0 10px 20px rgba(139,197,63,.26)); }
.cjrn__stage { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #222; margin-top: 6px; line-height: 1.3; }
.cjrn__stage span { color: var(--green); }
.cjrn__desc { color: #777; font-size: .97rem; margin-top: 6px; }
.cjrn__steps { display: flex; margin-top: 20px; }
.cjstep { flex: 1; min-width: 0; position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cjstep__badge { position: relative; z-index: 1; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2.5px solid var(--gray); font-weight: 800; font-size: .85rem; color: #999; transition: .3s; }
.cjstep__badge svg { width: 16px; height: 16px; display: none; }
.cjstep.is-done .cjstep__badge, .cjstep.is-active .cjstep__badge { background: var(--green); border-color: var(--green); color: #fff; }
.cjstep.is-done .cjstep__badge svg, .cjstep.is-active .cjstep__badge svg { display: block; }
.cjstep.is-done .cjstep__badge b, .cjstep.is-active .cjstep__badge b { display: none; }
.cjstep.is-active .cjstep__badge { box-shadow: 0 6px 16px rgba(139,197,63,.4); }
.cjstep.is-active .cjstep__badge::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2.5px solid var(--green); animation: cjPulse 1.8s ease-out infinite; }
@keyframes cjPulse { 0% { transform: scale(.82); opacity: .85; } 100% { transform: scale(1.4); opacity: 0; } }
.cjstep:not(:last-child)::after { content: ''; position: absolute; top: 17px; inset-inline-start: 50%; width: 100%; height: 4px; transform: translateY(-50%); background: var(--gray); border-radius: 3px; z-index: 0; }
.cjstep.is-done:not(:last-child)::after { background: linear-gradient(-90deg, var(--green), #c8ec9a, var(--green)); background-size: 200% 100%; box-shadow: 0 0 10px rgba(139,197,63,.5); animation: cjFlow 2.4s linear infinite; }
@keyframes cjFlow { 0% { background-position: 200% 0; } 100% { background-position: 0 0; } }
.cjstep__lbl { font-size: .72rem; font-weight: 700; color: #999; line-height: 1.2; }
.cjstep.is-active .cjstep__lbl, .cjstep.is-done .cjstep__lbl { color: #222; }
.cjrn__svg .steam, .cjrn__svg .ingredient, .cjrn__svg .flame, .cjrn__svg .check-mark, .cjrn__svg .ring, .cjrn__svg .pickup-bag, .cjrn__svg .idle, .cjrn__svg .paper, .cjrn__svg .lamp, .cjrn__svg .sway, .cjrn__svg .spark { transform-box: fill-box; }
.cjrn__svg .steam { transform-origin: center bottom; opacity: .8; animation: steamRise 3s ease-in-out infinite; }
.cjrn__svg .steam-2 { animation-delay: .5s; } .cjrn__svg .steam-3 { animation-delay: 1s; }
@keyframes steamRise { 0% { transform: translateY(8px); opacity: 0; } 35% { opacity: .85; } 100% { transform: translateY(-16px); opacity: 0; } }
.cjrn__svg .ingredient { transform-origin: center; animation: ingredientFloat 2.8s ease-in-out infinite; }
.cjrn__svg .ingredient-2 { animation-delay: .4s; } .cjrn__svg .ingredient-3 { animation-delay: .8s; } .cjrn__svg .ingredient-4 { animation-delay: 1.2s; }
@keyframes ingredientFloat { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(5deg); } }
.cjrn__svg .flame { transform-origin: center bottom; animation: flameFlicker .6s ease-in-out infinite alternate; }
.cjrn__svg .flame-2 { animation-duration: .5s; } .cjrn__svg .flame-3 { animation-duration: .7s; }
@keyframes flameFlicker { 0% { transform: scaleY(.85) scaleX(1.05); opacity: .85; } 100% { transform: scaleY(1.12) scaleX(.95); opacity: 1; } }
.cjrn__svg .check-mark { transform-origin: center; animation: checkPulse 2.2s ease-in-out infinite; }
@keyframes checkPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.09); } }
.cjrn__svg .ring { transform-origin: center; animation: ringSpin 9s linear infinite; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.cjrn__svg .pickup-bag { transform-origin: center bottom; animation: softBounce 2.6s ease-in-out infinite; }
@keyframes softBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.cjrn__svg .idle { transform-origin: center bottom; animation: idleFloat 3s ease-in-out infinite; }
@keyframes idleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }
.cjrn__svg .paper { transform-origin: center; animation: paperFloat 3.4s ease-in-out infinite; }
@keyframes paperFloat { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(-2deg); } }
.cjrn__svg .lamp { transform-origin: 50% 0%; animation: lampSway 3.4s ease-in-out infinite; }
@keyframes lampSway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.cjrn__svg .sway { transform-origin: center; animation: swaySlow 3.6s ease-in-out infinite; }
@keyframes swaySlow { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.cjrn__svg .spark { transform-origin: center; animation: sparkle 2.2s ease-in-out infinite; }
.cjrn__svg .spark.k2 { animation-delay: .5s; } .cjrn__svg .spark.k3 { animation-delay: 1s; } .cjrn__svg .spark.k4 { animation-delay: 1.5s; }
@keyframes sparkle { 0%, 100% { transform: scale(.4); opacity: 0; } 50% { transform: scale(1); opacity: .95; } }
@media (prefers-reduced-motion: reduce) { .cjrn__svg * { animation: none !important; } }

/* table picker — small popup of numbered tiles */
.ctablebtn { text-align: start; cursor: pointer; position: relative; color: var(--text); }
.ctablebtn::after { content: '▾'; position: absolute; inset-inline-end: 12px; inset-block-start: 50%; transform: translateY(-50%); color: var(--muted); font-size: .9rem; }
.tblpop { position: fixed; inset: 0; z-index: 80; display: none; }
.tblpop.show { display: block; }
.tblpop__scrim { position: absolute; inset: 0; background: rgba(15,10,8,.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.tblpop__box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(430px, 93vw); max-height: 82vh; display: flex; flex-direction: column;
  background: var(--bg, #fff); border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.35); overflow: hidden; animation: tblpopIn .28s cubic-bezier(.2,1.1,.4,1); }
@keyframes tblpopIn { from { opacity: 0; transform: translate(-50%,-46%) scale(.96); } }
.tblpop__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font-weight: 800; font-family: var(--font-display); font-size: 1.1rem; }
.tblpop__x { border: 0; background: var(--surface-2); width: 32px; height: 32px; border-radius: 9px; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--muted); }
.tblpop__grid { padding: 14px; overflow-y: auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); gap: 8px; }
.tbtile { aspect-ratio: 1; border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text);
  font-family: var(--font-num); font-weight: 800; font-size: 1.05rem; cursor: pointer; display: grid; place-items: center; transition: transform .12s, background .15s, border-color .15s, color .15s; }
.tbtile:hover { border-color: var(--accent); transform: translateY(-2px); }
.tbtile.is-active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 8px 18px -8px var(--accent); }

/* ---------------------------------- Item customization sheet (modifiers) ---------------------------------- */
.cxpop { position: fixed; inset: 0; z-index: 90; display: none; }
.cxpop.show { display: block; }
.cxpop__scrim { position: absolute; inset: 0; background: rgba(15,10,8,.55); }
.cxpop__box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(460px, 94vw); max-height: 86vh; display: flex; flex-direction: column;
  background: var(--bg, #fff); border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.35); overflow: hidden; animation: tblpopIn .28s cubic-bezier(.2,1.1,.4,1); }
.cxpop__head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--line); font-weight: 800; font-family: var(--font-display); font-size: 1.08rem; }
.cxpop__x { border: 0; background: var(--surface-2); width: 32px; height: 32px; border-radius: 9px; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--muted); }
.cxpop__scroll { padding: 16px 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 18px; }
.cxg__h { font-weight: 800; font-size: .93rem; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; }
.cxg__req { font-size: .68rem; font-weight: 700; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); padding: 2px 9px; border-radius: 999px; }
.cxg__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cxo { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 12px 13px; border: 1.5px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--text);
  font-weight: 700; font-size: .87rem; cursor: pointer; transition: transform .12s, background .15s, border-color .15s, color .15s; text-align: start; }
.cxo:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); transform: translateY(-1px); }
.cxo.is-on { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.cxo__p { font-family: var(--font-num); font-weight: 800; font-size: .76rem; color: var(--accent-strong); white-space: nowrap; }
.cxadd { margin: 4px 18px 18px; width: calc(100% - 36px); }
.cxadd:disabled { opacity: .5; cursor: default; filter: none; }
@media (max-width: 380px) { .cxg__opts { grid-template-columns: 1fr; } }

/* ---------------------------------- Day band (light meal) ---------------------------------- */
.day { margin-bottom: 14px; }
.day__head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
  padding: 14px 20px; border-radius: 18px;
  background: linear-gradient(100deg, color-mix(in srgb, var(--accent) 14%, var(--surface)), var(--surface));
  border: 1px solid var(--line);
}
.day__no { font-family: var(--font-latin); font-weight: 800; font-size: 1.1rem; color: var(--accent-strong); min-width: 34px; }
.day__name { font-size: 1.5rem; font-weight: 800; }
.day__en { font-family: var(--font-latin); text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; color: var(--muted); font-weight: 700; }
.day__line { flex: 1; height: 1px; background: var(--line); }
.day__icon { font-size: 1.4rem; }

/* ---------------------------------- Footer ---------------------------------- */
.foot {
  margin-top: 30px; padding-block: 46px 30px;
  background: var(--surface-2); border-top: 1px solid var(--line);
}
.foot__grid { display: flex; flex-wrap: wrap; gap: 30px 60px; align-items: flex-start; justify-content: space-between; }
.foot__brand { max-width: 34ch; }
.foot__brand h3 { font-size: 1.5rem; margin-bottom: 8px; }
.foot__brand p { color: var(--muted); }
.foot__logo { display: block; height: 56px; width: auto; margin-bottom: 16px; }
.foot__logo--chip { box-sizing: content-box; height: 52px; background: #fff; padding: 11px 15px; border-radius: 16px; box-shadow: 0 10px 26px -12px rgba(0,0,0,.55); }
.foot__col h4 { font-size: .9rem; color: var(--muted); margin-bottom: 12px; font-family: var(--font-display); font-weight: 700; }
.foot__col a, .foot__col p { color: var(--text); font-weight: 600; margin-bottom: 7px; display: flex; align-items: center; gap: 9px; }
.foot__col a:hover { color: var(--accent); }
.foot__bar { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--muted); font-size: .82rem; }

/* ---------------------------------- Coming soon ---------------------------------- */
.soon { text-align: center; max-width: 640px; margin-inline: auto; padding-block: clamp(34px, 7vw, 86px); }
.soon__arts { display: flex; justify-content: center; align-items: flex-end; gap: clamp(6px, 2vw, 16px); margin-bottom: 26px; }
.soon__art-item { width: clamp(86px, 18vw, 136px); aspect-ratio: 1; animation: soonBob 4.6s ease-in-out infinite; }
.soon__art-item .ill { width: 100%; height: 100%; filter: drop-shadow(0 16px 18px rgba(20,12,4,.2)); }
.soon__art-item--0 { animation-delay: -.6s; }
.soon__art-item--1 { width: clamp(112px, 23vw, 172px); margin-bottom: 8px; animation-delay: -2.4s; z-index: 1; }
.soon__art-item--2 { animation-delay: -1.4s; }
.soon__title { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin-top: 8px; }
.soon__text { color: var(--muted); margin: 13px auto 0; max-width: 46ch; font-size: 1.04rem; }
.soon__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0 28px; }
.soon__chip { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 17px; font-weight: 700; box-shadow: var(--shadow-soft); }
@keyframes soonBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* utility reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------- Inline SVG icons (replace all emojis) ---------------------------------- */
.ico, .ico-inline { display: inline-flex; align-items: center; justify-content: center; line-height: 0; vertical-align: middle; }
[data-icon] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.ico-svg { width: 1em; height: 1em; display: block; flex: 0 0 auto; }

/* nav brand dot — white glyph on the brand gradient */
.nav__brand .dot .ico-svg { width: 20px; height: 20px; color: #fff; stroke-width: 1.8; }

/* day band (light meal) + category title + quick-nav glyphs */
.day__icon { display: inline-flex; align-items: center; font-size: 1.45rem; color: var(--accent-2); }
.section-title .ico-inline { font-size: .82em; color: var(--accent-2); margin-inline-end: .16em; vertical-align: -.05em; }
.catnav a .ico-inline { font-size: 1.05em; }

/* footer contact glyphs */
.foot__col p .ico, .foot__col a .ico { font-size: 1.05rem; color: var(--accent-strong); flex: 0 0 auto; }
.immersive .foot__col p .ico, .immersive .foot__col a .ico { color: var(--accent-2); }

/* coming-soon chip glyphs */
.soon__chip { display: inline-flex; align-items: center; gap: 8px; }
.soon__chip .ico-svg { width: 1.05em; height: 1.05em; color: var(--accent-strong); }
.immersive .soon__chip .ico-svg { color: var(--accent-2); }
