/* 00-tokens.css */
/* ═══════════════════════════════════════════════════════════════════════════════════════════
   DAYLIGHT — ordering. The tokens are the Magic Smoothies website's, copied from that build's
   theme/00-tokens.css so the ordering flow and the site are visibly one thing.

   Two rules carry over unchanged:
     · gold is a SURFACE colour. --accent-ink (#8A5A00) is the text colour; #F4B740 never
       carries small type.
     · plum ink on cream is the contrast backbone — the real viewing condition is a phone held
       over a counter in Florida sun.

   What is new here is the CHROME: an ordering app is used with one thumb, so the header, the
   category rail, the cart bar and the sheets all measure themselves against --chrome and
   --barh, and every fixed element respects the safe-area inset.
   ═══════════════════════════════════════════════════════════════════════════════════════════ */
:root{
  --surface:#FFF8EE; --surface-2:#FFFDF7; --band:#FFF1D8; --card:#FFFFFF; --line:#EFDDC2;
  --ink:#2B1038; --ink-deep:#1F0930; --soft:#6A4B7E;
  --accent:#F4B740; --accent-ink:#8A5A00; --em:#7A4FD0; --script-c:#C2276B;
  --cta-bg:#2B1038; --cta-text:#FFF6E6;
  --ok:#1E6B45; --ok-bg:#E4F3EA; --warn-bg:#FFEFD2; --warn-ink:#7A4A00; --bad:#9B1C31; --bad-bg:#FBE7EA;

  --display:'Fraunces',Georgia,serif;
  --body:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;

  --r:16px; --r-lg:22px; --pill:999px;
  --shadow:0 14px 30px -18px rgba(43,16,56,.28);
  --shadow-lift:0 22px 44px -20px rgba(43,16,56,.34);
  --shadow-up:0 -14px 34px -20px rgba(43,16,56,.30);
  --img-shadow:drop-shadow(0 10px 14px rgba(43,16,56,.18));
  --ease:cubic-bezier(.23,1,.32,1);

  --pad:clamp(1rem,4vw,2.2rem);
  --container:1240px;

  --demoh:30px; --navh:58px;
  --chrome:calc(var(--demoh) + var(--navh));
  --safeb:env(safe-area-inset-bottom,0px);
}
@media(min-width:760px){ :root{ --navh:64px } }

/* 10-base.css */
/* ── base: reset, type scale, buttons, form atoms, utilities ────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth }
@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; background:var(--surface); color:var(--ink);
  font:400 16px/1.55 var(--body);
  font-optical-sizing:auto; text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  overflow-wrap:break-word;
}
h1,h2,h3{ font-family:var(--display); font-weight:800; line-height:1.12; letter-spacing:-.012em; margin:0 }
p{ margin:0 }
img,svg{ max-width:100%; height:auto; display:block }
a{ color:inherit }
button,input,select,textarea{ font:inherit; color:inherit }
code{ font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:.9em; background:var(--band); padding:.08em .34em; border-radius:6px }
table{ border-collapse:collapse; width:100% }

:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline:2.5px solid var(--em); outline-offset:2px; border-radius:6px;
}

.sr{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; border:0 }
.skip{ position:absolute; left:-9999px; top:0; z-index:80; background:var(--cta-bg); color:var(--cta-text); padding:.7rem 1rem; border-radius:0 0 12px 0 }
.skip:focus{ left:0 }
.muted{ color:var(--soft); font-size:.92rem }
.opt{ color:var(--soft); font-weight:400; font-size:.82em }
.num{ text-align:right; font-variant-numeric:tabular-nums }
.mt{ margin-top:1.2rem }
.mt-s{ margin-top:.6rem }
.ic{ flex:none }

main{ display:block }

/* ★ THE ONE RULE THAT HAS TO BE !important. The UA sheet's [hidden]{display:none} loses to any
   author rule that sets `display` on a class — which is how the kitchen board once showed a
   "no order store is connected" warning WHILE connected, the checkout showed a $0.00 tip row,
   and an empty cart button sat in the header. Hidden means hidden. */
[hidden]{ display:none !important }

/* ── buttons ───────────────────────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  min-height:46px; padding:.62rem 1.15rem;
  border:1.5px solid transparent; border-radius:var(--pill);
  font-family:var(--body); font-weight:700; font-size:.98rem; letter-spacing:-.005em;
  background:var(--card); color:var(--ink); cursor:pointer; text-decoration:none;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover{ transform:translateY(-1px) }
.btn:active{ transform:translateY(0) }
.btn--go{ background:var(--cta-bg); color:var(--cta-text); box-shadow:var(--shadow) }
.btn--go:hover{ box-shadow:var(--shadow-lift) }
.btn--quiet{ background:transparent; border-color:var(--line); color:var(--ink) }
.btn--quiet:hover{ background:var(--surface-2) }
.btn--wide{ width:100%; min-height:52px; font-size:1.02rem }
.btn[disabled],.btn[aria-disabled="true"]{ opacity:.45; pointer-events:none }

.iconbtn{
  display:inline-grid; place-items:center; width:40px; height:40px; flex:none;
  background:transparent; border:0; border-radius:var(--pill); cursor:pointer; color:var(--soft);
}
.iconbtn:hover{ background:var(--band); color:var(--ink) }

/* ── form atoms ────────────────────────────────────────────────────────────────────────── */
.f{ display:flex; flex-direction:column; gap:.32rem; margin:0 }
.f label{ font-size:.83rem; font-weight:700; color:var(--soft); letter-spacing:.01em }
.f input,.f textarea,.f select{
  min-height:48px; padding:.6rem .85rem;
  background:var(--card); border:1.5px solid var(--line); border-radius:12px;
  transition:border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.f input:focus{ border-color:var(--em); box-shadow:0 0 0 3px rgba(122,79,208,.14) }
.f input[aria-invalid="true"]{ border-color:var(--bad); background:var(--bad-bg) }
.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:.85rem }
.grid2 .f--wide{ grid-column:1/-1 }
@media(max-width:520px){ .grid2{ grid-template-columns:1fr } }

.pills{ display:flex; flex-wrap:wrap; gap:.5rem }
.pill{ position:relative; cursor:pointer }
.pill input{ position:absolute; inset:0; opacity:0; width:100%; height:100%; margin:0; cursor:pointer }
.pill span{
  display:block; padding:.55rem 1rem; min-height:44px; display:grid; place-items:center;
  border:1.5px solid var(--line); border-radius:var(--pill); background:var(--card);
  font-weight:700; font-size:.94rem; transition:all .16s var(--ease);
}
.pill input:checked + span{ background:var(--cta-bg); color:var(--cta-text); border-color:var(--cta-bg) }
.pill input:focus-visible + span{ outline:2.5px solid var(--em); outline-offset:2px }

.err{
  margin:.9rem 0; padding:.7rem .9rem; border-radius:12px;
  background:var(--bad-bg); color:var(--bad); font-size:.94rem; font-weight:600;
}
.hint{ display:flex; gap:.45rem; align-items:flex-start; margin-top:.6rem; color:var(--soft); font-size:.86rem; line-height:1.45 }
.hint .ic{ margin-top:.12rem; opacity:.75 }

/* 20-chrome.css */
/* ── chrome: the demo bar, the header, the footer ───────────────────────────────────────── */

/* The demo bar is part of the sticky chrome, not a dismissible toast. It has to be in every
   screenshot anyone takes of this build, including the ones taken accidentally. */
.demo{
  position:sticky; top:0; z-index:60;
  display:flex; align-items:center; justify-content:center; gap:.55rem;
  height:var(--demoh);
  background:repeating-linear-gradient(135deg,#FFE7B0 0 10px,#FFF1D8 10px 20px);
  color:var(--warn-ink); border-bottom:1px solid #E9CD91;
  font-size:.76rem; font-weight:700; letter-spacing:.055em; text-transform:uppercase;
}
.demo strong{ letter-spacing:.1em }
.demo span{ font-weight:600; letter-spacing:.03em; text-transform:none; opacity:.85 }
@media(max-width:400px){ .demo{ font-size:.7rem } }

.top{
  position:sticky; top:var(--demoh); z-index:55;
  display:flex; align-items:center; gap:1rem;
  height:var(--navh); padding-inline:max(var(--pad), calc((100% - var(--container)) / 2));
  background:color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter:saturate(1.4) blur(10px);
  border-bottom:1px solid var(--line);
}
.top__brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; min-width:0 }
.top__mark{ width:34px; height:34px; border-radius:9px; flex:none }
.top__names{ display:flex; flex-direction:column; line-height:1.08; min-width:0 }
.top__names b{ font-family:var(--display); font-weight:800; font-size:1.02rem; letter-spacing:-.015em; white-space:nowrap }
.top__names i{ font-style:normal; font-size:.7rem; color:var(--soft); letter-spacing:.08em; text-transform:uppercase; font-weight:700 }
.top__nav{ margin-left:auto; display:flex; gap:.2rem }
.top__nav a{
  display:grid; place-items:center; min-height:38px; padding:0 .75rem; border-radius:var(--pill);
  text-decoration:none; font-size:.9rem; font-weight:700; color:var(--soft);
}
.top__nav a:hover{ background:var(--band); color:var(--ink) }
.top__nav a[aria-current="page"]{ color:var(--ink) }
.top__cart{
  position:relative; display:grid; place-items:center; width:44px; height:44px; flex:none;
  background:var(--cta-bg); color:var(--cta-text); border:0; border-radius:var(--pill); cursor:pointer;
}
.top__count{
  position:absolute; top:-2px; right:-2px; min-width:20px; height:20px; padding:0 5px;
  display:grid; place-items:center; border-radius:var(--pill);
  background:var(--accent); color:var(--accent-ink);
  font-size:.72rem; font-weight:800; border:2px solid var(--surface);
}
@media(max-width:520px){
  .top__names i{ display:none }
  .top__nav a:not([aria-current]){ display:none }
  .top__nav{ gap:0 }
}

/* On the board pages the header is chrome the staff never taps; keep it out of the way. */
.is-board .top__nav{ display:none }

.foot{
  margin-top:3.5rem; padding-block:2rem calc(2.4rem + var(--safeb));
  padding-inline:max(var(--pad), calc((100% - var(--container)) / 2));
  border-top:1px solid var(--line); background:var(--surface-2);
  display:grid; gap:1rem; font-size:.9rem;
}
.foot__nap{ display:flex; flex-wrap:wrap; gap:.4rem 1rem; align-items:baseline }
.foot__nap b{ font-family:var(--display); font-size:1.05rem }
.foot__nap a{ color:var(--soft); text-decoration:none; border-bottom:1px solid var(--line) }
.foot__nap a:hover{ color:var(--ink) }
.foot__hours{ display:flex; flex-wrap:wrap; gap:.3rem .9rem; color:var(--soft) }
.foot__links{ display:flex; flex-wrap:wrap; gap:.4rem 1.1rem }
.foot__links a{ color:var(--soft); text-decoration:none; font-weight:700 }
.foot__links a:hover{ color:var(--ink) }
.foot__demo{ color:var(--warn-ink); background:var(--warn-bg); padding:.55rem .8rem; border-radius:12px; font-size:.84rem; font-weight:600 }

/* Anything the cart bar could cover gets its clearance back. */
body:has(.cartbar:not([hidden])) .foot{ padding-bottom:calc(5.6rem + var(--safeb)) }

/* 30-menu.css */
/* ── the board: lead, chips, the sticky category rail, the cards ─────────────────────────── */
.lead{ max-width:var(--container); margin:0 auto; padding:1.8rem var(--pad) 1.2rem }
.lead__h{ font-size:clamp(1.75rem,5.4vw,2.6rem); max-width:16ch }
.lead__p{ margin-top:.55rem; color:var(--soft); font-size:clamp(.98rem,2.4vw,1.08rem); max-width:52ch }

.chips{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1rem }
.chip{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.42rem .8rem; min-height:38px;
  background:var(--card); border:1px solid var(--line); border-radius:var(--pill);
  font-size:.86rem; font-weight:600; color:var(--soft); text-decoration:none;
}
.chip .ic{ opacity:.7 }
a.chip:hover{ color:var(--ink); border-color:var(--soft) }
.chip--state[data-open="1"]{ background:var(--ok-bg); border-color:#BFE0CD; color:var(--ok); font-weight:700 }
.chip--state[data-open="0"]{ background:var(--band); border-color:#E9CD91; color:var(--warn-ink) }

/* The rail sticks under the chrome. `scroll-snap` because a category list you cannot land on is
   a category list nobody uses on a phone. */
.cats{
  position:sticky; top:var(--chrome); z-index:40;
  background:color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.cats ul{
  display:flex; gap:.45rem; margin:0 auto; padding:.6rem var(--pad); max-width:var(--container);
  list-style:none; overflow-x:auto; scrollbar-width:none; scroll-snap-type:x proximity;
  overscroll-behavior-x:contain;
}
.cats ul::-webkit-scrollbar{ display:none }
/* A rail whose last chip is simply cut off looks like a bug; a fade says "keep going". */
@media(max-width:719px){
  .cats ul{ mask-image:linear-gradient(90deg,#000 calc(100% - 34px),transparent) }
}
.cats li{ scroll-snap-align:start; flex:none }
.cats a{
  display:grid; place-items:center; min-height:38px; padding:0 .9rem;
  border:1px solid var(--line); border-radius:var(--pill); background:var(--card);
  font-size:.87rem; font-weight:700; color:var(--soft); text-decoration:none; white-space:nowrap;
}
.cats a:hover{ color:var(--ink); border-color:var(--soft) }
.cats a.is-here{ background:var(--cta-bg); color:var(--cta-text); border-color:var(--cta-bg) }

.board{ max-width:var(--container); margin:0 auto; padding:0 var(--pad) }

.sec{ padding-top:2.1rem; scroll-margin-top:calc(var(--chrome) + 56px) }
.sec__head{ display:flex; flex-wrap:wrap; align-items:baseline; gap:.3rem .8rem; margin-bottom:.9rem }
.sec__h{ font-size:clamp(1.3rem,3.4vw,1.6rem) }
.sec__note{ color:var(--soft); font-size:.9rem }

.cards{
  list-style:none; margin:0; padding:0;
  display:grid; gap:.7rem;
  grid-template-columns:repeat(auto-fill,minmax(330px,1fr));
}
@media(max-width:719px){ .cards{ grid-template-columns:1fr } }

/* One card shape at every width: a row. An ordering list is read down, not browsed across, and a
   row survives a 2000×950 window (three columns of rows) as well as a 390 phone. */
.card{
  position:relative;
  display:grid; grid-template-columns:96px 1fr auto; align-items:center; gap:.85rem;
  padding:.7rem .8rem .7rem .7rem;
  background:var(--card); border-radius:var(--r-lg);
  box-shadow:var(--shadow);
  transition:box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card:hover{ box-shadow:var(--shadow-lift); transform:translateY(-2px) }
.card__img{
  width:96px; height:96px; object-fit:contain; object-position:center;
  filter:var(--img-shadow);
}
.card__img--none{ display:block; width:96px; height:96px; border-radius:14px; background:var(--band) }
.card__body{ min-width:0 }
.card__name{ font-size:1.02rem; font-weight:700 }
.card__desc{
  margin-top:.15rem; color:var(--soft); font-size:.84rem; line-height:1.42;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.card__price{ margin-top:.32rem; font-weight:800; font-size:.9rem; color:var(--accent-ink); font-variant-numeric:tabular-nums }
.card__add{
  width:44px; height:44px; flex:none; display:grid; place-items:center;
  background:var(--cta-bg); color:var(--cta-text); border:0; border-radius:var(--pill); cursor:pointer;
  transition:transform .18s var(--ease), background .18s var(--ease);
}
.card__add:hover{ transform:scale(1.06) }
.card__add:active{ transform:scale(.96) }
.card--opts .card__add{ background:var(--band); color:var(--accent-ink) }

/* 86: the server refuses these anyway; the card just stops pretending. */
.card__86{
  position:absolute; top:.7rem; right:.7rem;
  background:var(--bad-bg); color:var(--bad); font-size:.72rem; font-weight:800;
  padding:.2rem .5rem; border-radius:var(--pill); letter-spacing:.02em;
}
.card.is-86{ opacity:.55 }
.card.is-86 .card__add{ pointer-events:none; background:var(--line); color:var(--soft) }
.card.is-86 .card__img{ filter:grayscale(1) opacity(.7) }

/* The whole shop is paused. */
.paused{
  max-width:var(--container); margin:1rem auto 0; padding:.85rem 1rem;
  background:var(--warn-bg); color:var(--warn-ink); border-radius:14px; font-weight:700;
}

/* A just-added item flashes its price into the bar rather than opening a modal nobody asked for. */
@keyframes pop{ 0%{ transform:scale(1) } 45%{ transform:scale(1.14) } 100%{ transform:scale(1) } }
.is-pop{ animation:pop .34s var(--ease) }

/* 40-sheet.css */
/* ── the item sheet and the simulated-payment sheet ──────────────────────────────────────── */
/* Full height on a phone, a centred card from 760 up. Both are real dialogs: focus is trapped,
   Escape closes, and the page behind them is `inert` (set in JS, so a keyboard cannot walk out
   of the sheet into a menu it cannot see). */
.sheet,.drawer{ position:fixed; inset:0; z-index:70 }
.sheet[hidden],.drawer[hidden]{ display:none }
.sheet__scrim,.drawer__scrim{
  position:absolute; inset:0; width:100%; height:100%;
  background:rgba(31,9,48,.42); border:0; padding:0; cursor:pointer;
  animation:fade .2s var(--ease);
}
@keyframes fade{ from{ opacity:0 } to{ opacity:1 } }
@keyframes riseUp{ from{ transform:translateY(14px); opacity:0 } to{ transform:translateY(0); opacity:1 } }
@keyframes slideIn{ from{ transform:translateX(20px); opacity:0 } to{ transform:translateX(0); opacity:1 } }

.sheet__panel{
  position:absolute; left:0; right:0; bottom:0; top:auto;
  display:flex; flex-direction:column; max-height:92dvh;
  background:var(--surface); border-radius:22px 22px 0 0;
  box-shadow:var(--shadow-up);
  animation:riseUp .26s var(--ease);
}
@media(min-width:760px){
  .sheet__panel{
    left:50%; right:auto; bottom:auto; top:50%; transform:translate(-50%,-50%);
    width:min(560px,92vw); max-height:min(86dvh,760px); border-radius:22px;
    animation:fade .2s var(--ease);
  }
}
.sheet__top{
  display:flex; align-items:center; gap:.6rem; flex:none;
  padding:1rem 1rem .7rem 1.2rem; border-bottom:1px solid var(--line);
}
.sheet__top h2{ font-size:1.15rem; flex:1; min-width:0 }
.sheet__body{ overflow-y:auto; -webkit-overflow-scrolling:touch; padding:1rem 1.2rem 1.4rem; flex:1 }
.sheet__foot{
  flex:none; display:flex; align-items:center; gap:.8rem;
  padding:.8rem 1.2rem calc(.9rem + var(--safeb));
  border-top:1px solid var(--line); background:var(--surface-2);
}
.sheet__foot .btn--go{ flex:1 }
.sheet__foot--pay{ display:block }

/* the sheet's own head: photo, name, description, price */
.ish{ display:grid; grid-template-columns:104px 1fr; gap:1rem; align-items:center; margin-bottom:1.1rem }
.ish img{ width:104px; height:104px; object-fit:contain; filter:var(--img-shadow) }
.ish h3{ font-size:1.2rem }
.ish p{ margin-top:.25rem; color:var(--soft); font-size:.9rem; line-height:1.45 }
.ish b{ display:block; margin-top:.35rem; color:var(--accent-ink); font-size:.92rem }

.grp{ margin-top:1.3rem }
.grp:first-child{ margin-top:0 }
.grp__h{ display:flex; align-items:baseline; gap:.5rem; flex-wrap:wrap; margin-bottom:.5rem }
.grp__h h4{ font-family:var(--display); font-size:1rem; font-weight:800; margin:0 }
.grp__rule{ font-size:.78rem; font-weight:700; color:var(--soft); background:var(--band); padding:.12rem .5rem; border-radius:var(--pill) }
.grp__rule--over{ background:var(--warn-bg); color:var(--warn-ink) }
.grp__note{ font-size:.8rem; color:var(--soft); margin-bottom:.5rem; line-height:1.45 }

.opts{ display:flex; flex-wrap:wrap; gap:.45rem; list-style:none; margin:0; padding:0 }
.opt-l{ position:relative }
.opt-l input{ position:absolute; inset:0; opacity:0; width:100%; height:100%; margin:0; cursor:pointer }
.opt-l span{
  display:inline-flex; align-items:center; gap:.38rem; min-height:42px; padding:.4rem .8rem;
  border:1.5px solid var(--line); border-radius:var(--pill); background:var(--card);
  font-size:.9rem; font-weight:600; transition:all .15s var(--ease); cursor:pointer;
}
.opt-l input:checked + span{ border-color:var(--cta-bg); background:var(--cta-bg); color:var(--cta-text) }
.opt-l input:disabled + span{ opacity:.4; cursor:not-allowed }
.opt-l input:focus-visible + span{ outline:2.5px solid var(--em); outline-offset:2px }
.opt-l em{ font-style:normal; font-weight:800; font-size:.8rem; opacity:.85 }
.opt-l input:checked + span em{ color:var(--accent) }

.note-f{ margin-top:1.3rem }
.note-f label{ display:block; font-size:.83rem; font-weight:700; color:var(--soft); margin-bottom:.3rem }
.note-f input{ width:100%; min-height:46px; padding:.55rem .8rem; background:var(--card); border:1.5px solid var(--line); border-radius:12px }

.qty{ display:inline-flex; align-items:center; gap:.2rem; border:1.5px solid var(--line); border-radius:var(--pill); background:var(--card); padding:.16rem }
.qty__b{ width:38px; height:38px; display:grid; place-items:center; border:0; background:transparent; border-radius:var(--pill); cursor:pointer }
.qty__b:hover{ background:var(--band) }
.qty__n{ min-width:30px; text-align:center; font-weight:800; font-variant-numeric:tabular-nums }

/* the simulated payment step */
.pay__lead{ color:var(--soft); font-size:.94rem; line-height:1.55 }
.pay__lead .ic{ display:inline-block; vertical-align:-4px; margin-right:.35rem; opacity:.8 }
.pay__lead b{ color:var(--ink) }
.pay__amt{
  margin-top:1.1rem; padding:1rem 1.1rem; border-radius:16px; background:var(--band);
  display:flex; align-items:baseline; justify-content:space-between; gap:1rem;
  font-size:.86rem; font-weight:700; color:var(--accent-ink);
}
.pay__amt b{ font-family:var(--display); font-size:1.6rem; color:var(--ink) }
.pay__fine{ margin-top:.8rem; color:var(--soft); font-size:.85rem }

/* 50-cart.css */
/* ── the cart: the bottom bar and the drawer ─────────────────────────────────────────────── */
.cartbar{
  position:fixed; left:0; right:0; bottom:0; z-index:50;
  padding:.7rem var(--pad) calc(.7rem + var(--safeb));
  background:color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter:blur(10px); border-top:1px solid var(--line);
  animation:riseUp .24s var(--ease);
}
.cartbar[hidden]{ display:none }
.cartbar__b{
  display:flex; align-items:center; gap:.7rem; width:100%; max-width:var(--container); margin:0 auto;
  min-height:54px; padding:0 1rem 0 .55rem;
  background:var(--cta-bg); color:var(--cta-text); border:0; border-radius:var(--pill);
  cursor:pointer; box-shadow:var(--shadow-lift);
  transition:transform .18s var(--ease);
}
.cartbar__b:hover{ transform:translateY(-1px) }
.cartbar__n{
  min-width:34px; height:34px; display:grid; place-items:center; border-radius:var(--pill);
  background:var(--accent); color:var(--accent-ink); font-weight:800; font-size:.95rem;
}
.cartbar__t{ font-weight:700; font-size:1rem }
.cartbar__b b{ margin-left:auto; font-family:var(--display); font-size:1.12rem; font-variant-numeric:tabular-nums }

.drawer__panel{
  position:absolute; left:0; right:0; bottom:0;
  display:flex; flex-direction:column; max-height:88dvh;
  background:var(--surface); border-radius:22px 22px 0 0; box-shadow:var(--shadow-up);
  animation:riseUp .26s var(--ease);
}
@media(min-width:900px){
  .drawer__panel{
    left:auto; top:0; bottom:0; width:min(430px,90vw); max-height:none;
    border-radius:22px 0 0 22px; animation:slideIn .24s var(--ease);
  }
}
.drawer__top{ display:flex; align-items:center; gap:.6rem; flex:none; padding:1rem 1rem .7rem 1.2rem; border-bottom:1px solid var(--line) }
.drawer__top h2{ font-size:1.15rem; flex:1 }
.drawer__body{ flex:1; overflow-y:auto; padding:.9rem 1.2rem 1.2rem }
.drawer__foot{ flex:none; padding:.9rem 1.2rem calc(1rem + var(--safeb)); border-top:1px solid var(--line); background:var(--surface-2) }
.drawer__foot[hidden]{ display:none }
.tot{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem }
.tot span{ font-weight:700; color:var(--soft) }
.tot b{ font-family:var(--display); font-size:1.5rem; font-variant-numeric:tabular-nums }
.tot__note{ margin:.2rem 0 .9rem; color:var(--soft); font-size:.82rem }

/* one line in the cart */
.cl{ display:grid; grid-template-columns:1fr auto; gap:.2rem .8rem; padding:.85rem 0; border-bottom:1px solid var(--line) }
.cl:last-child{ border-bottom:0 }
.cl__n{ font-weight:700; font-size:.98rem }
.cl__n span{ color:var(--soft); font-weight:600 }
.cl__x{ grid-column:1; color:var(--soft); font-size:.82rem; line-height:1.45 }
.cl__note{ grid-column:1; color:var(--accent-ink); font-size:.82rem; font-style:italic }
.cl__p{ grid-row:1; grid-column:2; font-weight:800; font-variant-numeric:tabular-nums; white-space:nowrap }
.cl__ctl{ grid-column:1/-1; margin-top:.5rem; display:flex; align-items:center; gap:.6rem }
.cl__rm{ background:transparent; border:0; color:var(--soft); font-size:.84rem; font-weight:700; cursor:pointer; text-decoration:underline; text-underline-offset:3px; padding:.4rem }
.cl__rm:hover{ color:var(--bad) }

.cart__empty{ padding:2.4rem 0; text-align:center; color:var(--soft) }
.cart__empty b{ display:block; font-family:var(--display); font-size:1.2rem; color:var(--ink); margin-bottom:.3rem }

/* 60-checkout.css */
/* ── checkout: two columns from 980, one below ───────────────────────────────────────────── */
.co{
  max-width:var(--container); margin:0 auto; padding:1.6rem var(--pad) 2rem;
  display:grid; gap:1.6rem; align-items:start;
  grid-template-columns:minmax(0,1fr);
}
@media(min-width:980px){ .co{ grid-template-columns:minmax(0,1fr) 360px; gap:2.4rem } }
.co__h{ font-size:clamp(1.6rem,4.5vw,2.1rem); margin-bottom:1.2rem }

.fs{ border:0; margin:0 0 1.5rem; padding:0 }
.fs__l{ padding:0; margin-bottom:.6rem; font-family:var(--display); font-weight:800; font-size:1.05rem }

.seg{ display:grid; grid-template-columns:1fr 1fr; gap:.5rem; max-width:420px }
.seg__o{ position:relative; cursor:pointer }
.seg__o input{ position:absolute; inset:0; opacity:0; width:100%; height:100%; margin:0; cursor:pointer }
.seg__o > .ic,.seg__o > span{ pointer-events:none }
.seg__o{
  display:flex; align-items:center; justify-content:center; gap:.45rem;
  min-height:52px; border:1.5px solid var(--line); border-radius:14px; background:var(--card);
  font-weight:700; transition:all .16s var(--ease);
}
.seg__o:has(input:checked){ background:var(--cta-bg); color:var(--cta-text); border-color:var(--cta-bg) }
.seg__o:has(input:focus-visible){ outline:2.5px solid var(--em); outline-offset:2px }

/* the pickup picker: day tabs, then a wrapping grid of times */
.slots__days{ display:flex; gap:.4rem; margin-bottom:.7rem; overflow-x:auto; scrollbar-width:none; padding-bottom:.15rem }
.slots__days::-webkit-scrollbar{ display:none }
.slots__day{
  flex:none; min-height:40px; padding:0 .9rem; border:1.5px solid var(--line); border-radius:var(--pill);
  background:var(--card); font-weight:700; font-size:.88rem; cursor:pointer; white-space:nowrap;
}
.slots__day[aria-selected="true"]{ background:var(--cta-bg); color:var(--cta-text); border-color:var(--cta-bg) }
.slots__times{ display:grid; grid-template-columns:repeat(auto-fill,minmax(96px,1fr)); gap:.45rem; max-height:232px; overflow-y:auto; padding:.15rem }
.slot{ position:relative }
.slot input{ position:absolute; inset:0; opacity:0; width:100%; height:100%; margin:0; cursor:pointer }
.slot span{
  display:grid; place-items:center; min-height:44px; border:1.5px solid var(--line); border-radius:12px;
  background:var(--card); font-weight:700; font-size:.9rem; font-variant-numeric:tabular-nums; cursor:pointer;
  transition:all .14s var(--ease);
}
.slot input:checked + span{ background:var(--cta-bg); color:var(--cta-text); border-color:var(--cta-bg) }
.slot input:focus-visible + span{ outline:2.5px solid var(--em); outline-offset:2px }
.slot--asap span{ border-style:dashed }
.slots__shut{ padding:.85rem 1rem; background:var(--band); border-radius:14px; color:var(--warn-ink); font-weight:700 }

.quote{ margin-top:.7rem; font-size:.9rem; color:var(--soft); min-height:1.2em }
.quote b{ color:var(--ink) }
.quote--none{ background:var(--warn-bg); color:var(--warn-ink); padding:.6rem .8rem; border-radius:12px; font-weight:600 }
.quote--ok{ background:var(--ok-bg); color:var(--ok); padding:.6rem .8rem; border-radius:12px; font-weight:700 }

.fine{ margin-top:.9rem; color:var(--soft); font-size:.84rem; line-height:1.5 }

/* the summary */
.co__side{
  background:var(--card); border-radius:var(--r-lg); padding:1.1rem 1.2rem 1.2rem;
  box-shadow:var(--shadow);
}
@media(min-width:980px){ .co__side{ position:sticky; top:calc(var(--chrome) + 1.2rem) } }
.co__sh{ font-size:1.1rem; margin-bottom:.7rem }
.sum{ margin:.6rem 0 0; padding-top:.7rem; border-top:1px solid var(--line) }
.sum__r{ display:flex; justify-content:space-between; gap:1rem; padding:.28rem 0; font-size:.94rem }
.sum__r dt{ color:var(--ink) }
.sum__r dd{ margin:0; font-weight:700; font-variant-numeric:tabular-nums }
.sum__r--soft dt,.sum__r--soft dd{ color:var(--soft); font-weight:600; font-size:.88rem }
.sum__r--tot{ margin-top:.4rem; padding-top:.6rem; border-top:1px solid var(--line) }
.sum__r--tot dt{ font-family:var(--display); font-weight:800; font-size:1.1rem }
.sum__r--tot dd{ font-family:var(--display); font-weight:800; font-size:1.35rem }
.sum__note{ margin-top:.7rem; color:var(--soft); font-size:.8rem; line-height:1.5 }
.backlink{ display:inline-flex; align-items:center; gap:.2rem; margin-top:1rem; color:var(--soft); font-size:.88rem; font-weight:700; text-decoration:none }
.backlink .ic{ transform:rotate(180deg) }
.backlink:hover{ color:var(--ink) }

/* the summary's own line list (compact twin of the drawer's) */
.sl{ display:flex; justify-content:space-between; gap:.8rem; padding:.42rem 0; font-size:.9rem; border-bottom:1px solid var(--line) }
.sl:last-of-type{ border-bottom:0 }
.sl__n span{ color:var(--soft) }
.sl__p{ font-weight:700; font-variant-numeric:tabular-nums; white-space:nowrap }

/* 70-status.css */
/* ── the status page ─────────────────────────────────────────────────────────────────────── */
.st{ max-width:620px; margin:0 auto; padding:2rem var(--pad) 2.4rem }
.st__loading{ color:var(--soft); text-align:center; padding:2.5rem 0 }
.st__card{ background:var(--card); border-radius:var(--r-lg); box-shadow:var(--shadow); padding:1.4rem 1.3rem 1.5rem }
.st__eyebrow{ font-size:.72rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--soft) }
.st__id{ font-size:clamp(2rem,8vw,2.8rem); letter-spacing:.02em; margin-top:.1rem; font-variant-numeric:tabular-nums }
.st__when{ margin-top:.2rem; color:var(--soft); font-weight:700 }

.steps{ list-style:none; margin:1.5rem 0 0; padding:0; display:grid; grid-template-columns:repeat(4,1fr); gap:.4rem }
.step{ display:grid; justify-items:center; gap:.4rem; position:relative; text-align:center }
.step::before{ content:''; position:absolute; top:15px; left:calc(-50% + 17px); right:calc(50% + 17px); height:2px; background:var(--line) }
.step:first-child::before{ display:none }
.step__dot{
  width:32px; height:32px; display:grid; place-items:center; border-radius:var(--pill);
  background:var(--surface-2); border:2px solid var(--line); color:transparent;
  transition:all .25s var(--ease);
}
.step__l{ font-size:.76rem; font-weight:700; color:var(--soft); line-height:1.2 }
.step.is-done .step__dot{ background:var(--ok); border-color:var(--ok); color:#fff }
.step.is-done::before{ background:var(--ok) }
.step.is-now .step__dot{ background:var(--accent); border-color:var(--accent); color:var(--accent-ink); box-shadow:0 0 0 5px rgba(244,183,64,.24) }
.step.is-now .step__l{ color:var(--ink) }
.st.is-cancelled .step__dot{ background:var(--bad-bg); border-color:var(--bad); color:var(--bad) }

.st__notices{ margin-top:1.3rem; display:grid; gap:.5rem }
.notice{ padding:.65rem .85rem; border-radius:12px; font-size:.88rem; font-weight:600; background:var(--warn-bg); color:var(--warn-ink) }
.notice--ok{ background:var(--ok-bg); color:var(--ok) }

.st__lines{ margin-top:1.3rem; border-top:1px solid var(--line); padding-top:.5rem }
.st__sum{ margin-top:.4rem }
.st__call{ margin-top:1.4rem; color:var(--soft); font-size:.9rem }
.st__call a{ font-weight:700; color:var(--ink) }
.st__keep{ margin-top:.4rem; color:var(--soft); font-size:.82rem }
.st__miss{ text-align:center; padding:2.5rem 0 }
.st__miss h1{ font-size:1.5rem; margin-bottom:.5rem }
.st__miss p{ color:var(--soft); margin-bottom:1rem }

/* 80-board.css */
/* ── the kitchen board and the admin page ────────────────────────────────────────────────── */
/* Built for a tablet propped next to the blender: nothing under 15px, nothing that needs a
   second hand, and three columns that stay three columns on a wide, short screen. */
.bd,.ad{ max-width:1600px; margin:0 auto; padding:1.2rem var(--pad) 2rem }
.bd__top{ display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; margin-bottom:1rem }
.bd__h{ font-size:clamp(1.5rem,4vw,2rem) }
.bd__meta{ color:var(--soft); font-weight:700; font-size:.9rem }
.bd__top .btn{ margin-left:auto }

.bd__warn{
  padding:.75rem .9rem; margin-bottom:1rem; border-radius:14px;
  background:var(--bad-bg); color:var(--bad); font-size:.9rem; font-weight:600; line-height:1.5;
}
.bd__warn .ic{ display:inline-block; vertical-align:-4px; margin-right:.35rem }
.bd__warn code{ background:rgba(155,28,49,.1) }

.bd__gate{ display:grid; gap:.5rem; max-width:340px; margin:2rem auto; text-align:left }
.bd__gate label{ font-size:.83rem; font-weight:700; color:var(--soft) }
.bd__gate input{ min-height:48px; padding:.6rem .85rem; background:var(--card); border:1.5px solid var(--line); border-radius:12px }
.bd__gateerr{ color:var(--bad); font-size:.88rem; font-weight:700 }

.bd__cols{ display:grid; gap:1rem; grid-template-columns:repeat(3,1fr); align-items:start }
@media(max-width:820px){ .bd__cols{ grid-template-columns:1fr } }
.col{ background:var(--surface-2); border:1px solid var(--line); border-radius:var(--r-lg); padding:.9rem }
.col h2{ font-size:1.05rem; margin-bottom:.7rem; display:flex; align-items:center; gap:.5rem }
.col[data-col="received"] h2::before{ content:''; width:10px; height:10px; border-radius:50%; background:var(--em) }
.col[data-col="making"] h2::before{ content:''; width:10px; height:10px; border-radius:50%; background:var(--accent) }
.col[data-col="ready"] h2::before{ content:''; width:10px; height:10px; border-radius:50%; background:var(--ok) }
.col__list{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem }

.tk{ background:var(--card); border-radius:16px; box-shadow:var(--shadow); padding:.85rem .9rem }
.tk__top{ display:flex; align-items:baseline; gap:.6rem; flex-wrap:wrap }
.tk__id{ font-family:var(--display); font-weight:800; font-size:1.18rem; letter-spacing:.02em }
.tk__ago{ margin-left:auto; color:var(--soft); font-size:.82rem; font-weight:700; font-variant-numeric:tabular-nums }
.tk__who{ color:var(--soft); font-size:.88rem; font-weight:700; margin-top:.1rem }
.tk__when{ display:inline-block; margin-top:.35rem; background:var(--band); color:var(--accent-ink); font-size:.8rem; font-weight:800; padding:.16rem .55rem; border-radius:var(--pill) }
.tk__when--dl{ background:#EDE4FB; color:#4B2E86 }
.tk__courier{ margin-top:.35rem; font-size:.84rem; font-weight:700; color:var(--soft) }
.tk__courier--bad{ color:var(--bad); background:var(--bad-bg); padding:.3rem .5rem; border-radius:10px }
.tk__lines{ list-style:none; margin:.6rem 0 0; padding:0; display:grid; gap:.4rem }
.tk__lines li{ font-size:.94rem; line-height:1.4 }
.tk__lines b{ font-weight:800 }
.tk__lines em{ display:block; font-style:normal; color:var(--soft); font-size:.82rem }
.tk__lines i{ display:block; font-style:italic; color:var(--accent-ink); font-size:.82rem }
.tk__foot{ display:flex; align-items:center; gap:.5rem; margin-top:.8rem }
.tk__tot{ font-weight:800; font-variant-numeric:tabular-nums }
.tk__foot .btn{ margin-left:auto; min-height:42px }
.tk__cancel{ background:transparent; border:0; color:var(--soft); font-size:.8rem; font-weight:700; cursor:pointer; text-decoration:underline; text-underline-offset:3px }
.tk__cancel:hover{ color:var(--bad) }
.bd__empty{ text-align:center; color:var(--soft); padding:3rem 0 }

/* admin */
.ad__row{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; margin-bottom:1.6rem }
.ad__stat{ background:var(--card); border-radius:16px; box-shadow:var(--shadow); padding:.9rem 1rem }
.ad__stat span{ display:block; color:var(--soft); font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em }
.ad__stat b{ font-family:var(--display); font-size:1.7rem; font-variant-numeric:tabular-nums }
.ad__pause{ background:var(--card); border-radius:16px; box-shadow:var(--shadow); padding:.9rem 1rem; display:grid; gap:.4rem; align-content:center }
.ad__sec{ margin-bottom:2rem }
.ad__sec h2{ font-size:1.2rem; margin-bottom:.6rem }
.ad__tablewrap{ overflow-x:auto; background:var(--card); border-radius:16px; box-shadow:var(--shadow) }
.ad__table{ min-width:520px; font-size:.92rem }
.ad__table th,.ad__table td{ padding:.6rem .8rem; text-align:left; border-bottom:1px solid var(--line) }
.ad__table th{ font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; color:var(--soft) }
.ad__table tr:last-child td{ border-bottom:0 }
.ad__86{ list-style:none; margin:.8rem 0 0; padding:0; display:flex; flex-wrap:wrap; gap:.45rem }
.chip--86{ cursor:pointer; font-weight:700 }
.chip--86[aria-pressed="true"]{ background:var(--bad-bg); border-color:var(--bad); color:var(--bad) }
.chip--86[aria-pressed="true"]::after{ content:' · sold out'; font-weight:800; font-size:.8em }

/* 90-doc.css */
/* ── the prose pages: how-it-works, privacy, 404 ─────────────────────────────────────────── */
.doc{ max-width:74ch; margin:0 auto; padding:2.2rem var(--pad) 2.5rem }
.doc--mid{ text-align:center; padding-top:4rem }
.doc__eyebrow{ font-size:.74rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--accent-ink) }
.doc__h{ font-size:clamp(1.9rem,5.6vw,2.8rem); margin-top:.3rem; letter-spacing:-.02em }
.doc__lede{ margin-top:.8rem; font-size:clamp(1.02rem,2.6vw,1.15rem); color:var(--soft); line-height:1.6 }
.doc h2{ font-size:clamp(1.25rem,3.4vw,1.55rem); margin-top:2.4rem }
.doc h3{ font-size:1.05rem }
.doc p{ margin-top:.8rem; line-height:1.68 }
.doc__note{ color:var(--soft); font-size:.92rem }

.doc__steps{ margin:1rem 0 0; padding-left:1.3rem; display:grid; gap:.7rem }
.doc__steps li{ line-height:1.6; padding-left:.2rem }
.doc__steps li::marker{ font-family:var(--display); font-weight:800; color:var(--accent-ink) }

.doc__t{ margin-top:1rem; background:var(--card); border-radius:16px; box-shadow:var(--shadow); overflow:hidden; font-size:.93rem }
.doc__t th,.doc__t td{ padding:.7rem .9rem; text-align:left; border-bottom:1px solid var(--line); vertical-align:top }
.doc__t th{ font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; color:var(--soft); background:var(--surface-2) }
.doc__t tr:last-child td{ border-bottom:0 }
.doc__t td:first-child{ font-weight:700; width:36% }
@media(max-width:560px){ .doc__t td:first-child{ width:42% } .doc__t{ font-size:.88rem } }
.src{ display:inline-block; margin-left:.25rem; font-size:.78em; font-weight:700; color:var(--em); text-decoration:none; border-bottom:1px dotted currentColor; white-space:nowrap }

.doc__callout{ margin-top:2rem; background:var(--band); border-radius:var(--r-lg); padding:1.1rem 1.2rem }
.doc__callout h3{ display:flex; align-items:center; gap:.45rem; color:var(--accent-ink) }
.doc__callout ul{ margin:.7rem 0 0; padding-left:1.15rem; display:grid; gap:.6rem }
.doc__callout li{ line-height:1.6 }

.doc__dl{ margin-top:1rem; display:grid; gap:.9rem }
.doc__dl > div{ background:var(--card); border-radius:14px; padding:.8rem 1rem; box-shadow:var(--shadow) }
.doc__dl dt{ font-weight:800; font-family:var(--display); font-size:1rem }
.doc__dl dd{ margin:.25rem 0 0; color:var(--soft); line-height:1.6; font-size:.93rem }
.doc__back{ margin-top:2rem }
