body.xxv-shop-canvas { margin: 0; background: #04100a; }

* { box-sizing: border-box; }
:root, .xxv-shop {
  --xxv-void: #04100a;
  --xxv-char: #0d2216;
  --xxv-line: rgba(255,255,255,.09);
  --xxv-line-soft: rgba(255,255,255,.05);
  --xxv-flame: #e51b23;
  --xxv-flame-deep: #b3131a;
  --xxv-flare: #ff5a60;
  --xxv-gold: #f0b429;
  --xxv-bone: #f1f6f2;
  --xxv-ash: #93a89a;
  --xxv-ash-dim: #647a6c;
  --xxv-display: "Oswald", "Arial Narrow", sans-serif;
  --xxv-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --xxv-shell: 62rem;
  --xxv-radius: 14px;
  --xxv-radius-sm: 9px;
}

.xxv-shop {
  position: relative; isolation: isolate;
  width: 100%; max-width: 100vw; overflow-x: clip;
  background: var(--xxv-void); color: var(--xxv-bone);
  font-family: var(--xxv-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 7rem;
}

.xxv-shop p, .xxv-shop h1, .xxv-shop h2, .xxv-shop h3 { margin: 0; }
.xxv-shop img { max-width: 100%; height: auto; }
.xxv-shop :focus-visible, .xxv-sheet :focus-visible { outline: 2px solid var(--xxv-flare); outline-offset: 2px; border-radius: 5px; }

.xxv-shop__shell { max-width: var(--xxv-shell); margin: 0 auto; padding: 0 1.25rem; }

/* Faint scattered logo marks behind the page. */
.xxv-shop__watermarks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -3;
}

.xxv-shop .xxv-shop__watermarks img {
  position: absolute;
  width: clamp(46px, 6vw, 78px);
  height: auto;
  opacity: 0.04;
  filter: saturate(0.6);
}

/* Both spellings are used in the markup — keep them in step. */
.xxv-sr,
.xxv-shop__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==================================================== image header ==== */

.xxv-hero {
  position: relative;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 0 1.6rem;
  overflow: hidden;
}

.xxv-shop .xxv-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
}

.xxv-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(4,16,10,.55) 0%, rgba(4,16,10,.2) 38%, rgba(4,16,10,.92) 88%, var(--xxv-void) 100%);
}

.xxv-hero__bar {
  position: absolute; top: 0; left: 0; right: 0;
  max-width: var(--xxv-shell); margin: 0 auto;
  padding: 1.1rem 1.25rem 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1rem;
}

.xxv-hero__back {
  justify-self: start; display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(241,246,242,.8); font-size: .8125rem; text-decoration: none;
}
.xxv-hero__back:hover { color: #fff; }
.xxv-hero__back svg { width: 13px; height: 13px; }

/* The logo is the way home, so it needs a real touch target and a visible
   hover — otherwise nobody knows it is a link. */
.xxv-hero__logo {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
  transition: transform .15s ease, opacity .15s ease;
}
.xxv-hero__back:hover .xxv-hero__logo,
.xxv-hero__back:focus-visible .xxv-hero__logo { transform: scale(1.06); opacity: .9; }

.xxv-hero__wordmark {
  justify-self: center; min-width: 0; max-width: 100%;
  font-family: var(--xxv-display); font-size: .8125rem;
  font-weight: 600; letter-spacing: .34em; text-indent: .34em;
  text-transform: uppercase; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.xxv-hero__cart {
  justify-self: end; display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .8rem; border-radius: 999px;
  background: var(--xxv-flame); color: #fff;
  font-family: var(--xxv-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
}
.xxv-hero__cart.is-bumped { animation: xxv-bump .45s cubic-bezier(.34,1.56,.64,1); }
.xxv-hero__cart-count {
  min-width: 18px; height: 18px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px;
  background: #fff; color: #06120b;
  font-family: var(--xxv-body); font-size: .6875rem; font-weight: 700; letter-spacing: 0;
}
.xxv-hero__cart-count[hidden] { display: none; }

.xxv-hero__inner {
  max-width: var(--xxv-shell); margin: 0 auto; width: 100%;
  padding: 0 1.25rem; text-align: center;
}
.xxv-hero__inner.is-empty { padding: 0; }

/* No headline: the header becomes a compact band rather than a tall stage. */
.xxv-hero--flat:has(.xxv-hero__kicker):not(:has(.xxv-hero__title)) { min-height: 0; padding: 3.2rem 0 .9rem; }
.xxv-hero--flat:not(:has(.xxv-hero__kicker)):not(:has(.xxv-hero__title)) { min-height: 0; padding: 3.2rem 0 .3rem; }
.xxv-hero__mark { width: 58px; height: 58px; object-fit: contain; margin: 0 auto .55rem; display: block; }
.xxv-hero__kicker {
  font-family: var(--xxv-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .24em; text-indent: .24em; text-transform: uppercase;
  color: var(--xxv-gold); margin-bottom: .4rem;
}
.xxv-hero__inner:not(.is-empty) .xxv-hero__kicker:only-child { margin-bottom: 0; }
.xxv-hero__title {
  font-family: var(--xxv-display); font-size: clamp(2.3rem, 7vw, 3.4rem);
  font-weight: 700; line-height: .98;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.xxv-hero__lede { margin-top: .4rem; font-size: .875rem; color: rgba(241,246,242,.78); }

/* No header image set: drop the reserved height rather than leaving a gap. */
.xxv-hero--flat { min-height: 0; padding: 3.6rem 0 1rem; }

.xxv-shop__hint {
  width: 100%; margin-top: .15rem; text-align: center;
  font-size: .75rem; color: var(--xxv-ash-dim);
}
.xxv-shop__controls.is-stuck .xxv-shop__hint { display: none; }

/* ================================================= informative bar ==== */

.xxv-info {
  max-width: var(--xxv-shell); margin: .9rem auto 0; padding: 0 1.25rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem;
}

.xxv-info__chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem; border-radius: 999px;
  border: 1px solid var(--xxv-line);
  background: rgba(255,255,255,.04);
  font-size: .75rem; color: var(--xxv-ash); white-space: nowrap;
}
.xxv-info__chip svg { width: 12px; height: 12px; flex: none; }
.xxv-info__chip b { color: var(--xxv-bone); font-weight: 600; }
.xxv-info__chip--open { border-color: rgba(74,222,128,.35); color: #7ee0a5; }
.xxv-info__chip--open b { color: #7ee0a5; }
.xxv-info__dot {
  width: 6px; height: 6px; border-radius: 999px; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.18);
}

/* ======================================================== controls ==== */

.xxv-shop__controls {
  position: sticky; top: 0; z-index: 30;
  padding: .7rem 0 .55rem; margin-top: 1.1rem;
  background: var(--xxv-void);
  transition: box-shadow .2s ease;
}
.xxv-shop__controls.is-stuck {
  background: rgba(4,16,10,.9);
  box-shadow: 0 1px 0 var(--xxv-line-soft), 0 12px 24px -18px rgba(0,0,0,.9);
}
@supports (backdrop-filter: blur(6px)) {
  .xxv-shop__controls.is-stuck { backdrop-filter: blur(14px) saturate(1.2); }
}

.xxv-shop__controls-inner {
  max-width: var(--xxv-shell); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}

.xxv-groups { display: flex; gap: .35rem; }
.xxv-group {
  appearance: none; border: 1px solid var(--xxv-line);
  background: rgba(255,255,255,.03); color: var(--xxv-ash);
  font-family: var(--xxv-display); font-size: .8125rem; font-weight: 500;
  letter-spacing: .04em; padding: .4rem 1.05rem; border-radius: 999px;
  cursor: pointer; white-space: nowrap; transition: all .15s;
}
.xxv-group:hover { color: var(--xxv-bone); border-color: rgba(255,255,255,.2); }
.xxv-group[aria-pressed="true"] { background: var(--xxv-bone); border-color: var(--xxv-bone); color: #06120b; font-weight: 600; }
.xxv-group[data-group-pill="combos"] { border-color: rgba(240,180,41,.4); color: var(--xxv-gold); }
.xxv-group[data-group-pill="combos"]:hover { border-color: var(--xxv-gold); color: var(--xxv-gold); }
.xxv-group[data-group-pill="combos"][aria-pressed="true"] { background: var(--xxv-gold); border-color: var(--xxv-gold); color: #1a1204; }

.xxv-shop__search {
  flex: 1; min-width: 12rem; display: flex; align-items: center; gap: .5rem;
  padding: .38rem .85rem; border: 1px solid var(--xxv-line);
  border-radius: 999px; background: rgba(255,255,255,.03);
}
.xxv-shop__search svg { width: 14px; height: 14px; color: var(--xxv-ash-dim); flex: none; }
.xxv-shop__search input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  color: var(--xxv-bone); font: inherit; font-size: .8125rem; outline: none;
}
.xxv-shop__search input::placeholder { color: var(--xxv-ash-dim); }

.xxv-subs {
  width: 100%; display: flex; gap: .35rem;
  overflow-x: auto; scrollbar-width: none;
  scroll-padding-inline: 1.25rem; padding-bottom: .1rem;
}
.xxv-subs::-webkit-scrollbar { display: none; }
.xxv-filter {
  appearance: none; border: 1px solid var(--xxv-line-soft);
  background: transparent; color: var(--xxv-ash-dim);
  font: inherit; font-size: .75rem; padding: .26rem .75rem;
  border-radius: 999px; cursor: pointer; white-space: nowrap; transition: all .15s;
}
.xxv-filter:hover { color: var(--xxv-bone); border-color: var(--xxv-line); }
.xxv-filter[aria-pressed="true"] { color: var(--xxv-bone); border-color: var(--xxv-flare); background: rgba(255,90,96,.1); }
.xxv-filter[hidden] { display: none; }

/* ======================================================== sections ==== */

.xxv-shop__sections { padding-top: 1.6rem; }
.xxv-section + .xxv-section { margin-top: 2.1rem; }
.xxv-section[hidden] { display: none; }

.xxv-section__head {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .75rem; scroll-margin-top: 8rem;
}
.xxv-section__name { font-family: var(--xxv-display); font-size: 1.0625rem; font-weight: 600; }
.xxv-section__count {
  padding: .14rem .5rem; border: 1px solid var(--xxv-line);
  border-radius: 999px; font-size: .6875rem; color: var(--xxv-ash);
}

.xxv-section__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .7rem; }

/* =========================================================== cards ====
   One layout for every card: thumb | text | meta, all vertically centred.
   A card with no description centres on its own single line; a card with a
   description centres the taller text block against the price and button.
   ==================================================================== */

.xxv-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .9rem;
  padding: .8rem .9rem;
  min-height: 76px;
  border: 1px solid var(--xxv-line-soft);
  border-radius: var(--xxv-radius);
  background: var(--xxv-char);
}
.xxv-card[hidden] { display: none; }
.xxv-card--media { grid-template-columns: 62px minmax(0, 1fr) auto; }
.xxv-card--plain { min-height: 64px; }
/* With no description there is only one line, so price and button sit
   side by side rather than stacking — a tighter, properly centred row. */
.xxv-card--plain .xxv-card__meta { flex-direction: row; align-items: center; gap: .75rem; }

/* Combo meals lead the menu, so they carry a warmer edge and a savings note. */
.xxv-card--combo {
  border-color: rgba(240,180,41,.34);
  background: linear-gradient(118deg, rgba(240,180,41,.12), rgba(240,180,41,0) 55%), var(--xxv-char);
}
.xxv-card--combo.is-featured {
  border-color: rgba(240,180,41,.6);
  background: linear-gradient(118deg, rgba(240,180,41,.2), rgba(229,27,35,.08) 60%), var(--xxv-char);
}
.xxv-card--combo .xxv-card__badge { color: var(--xxv-gold); }

/* WooCommerce wraps a sale price as <del>old</del><ins>new</ins>. The browser
   underlines <ins> by default, which reads as a mistake next to a strikethrough. */
.xxv-card__price del {
  display: block;
  font-size: .75rem; font-weight: 400;
  color: var(--xxv-ash-dim);
  text-decoration-thickness: 1px;
  margin-bottom: .05rem;
}

.xxv-card__price ins,
.xxv-line__price ins {
  text-decoration: none;
  background: transparent;
  color: inherit;
}

.xxv-card__save {
  display: inline-block; margin-top: .3rem;
  padding: .12rem .45rem; border-radius: 5px;
  background: rgba(240,180,41,.14); color: var(--xxv-gold);
  font-family: var(--xxv-display); font-size: .625rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}

.xxv-card.is-featured {
  border-color: rgba(229,27,35,.42);
  background: linear-gradient(118deg, rgba(229,27,35,.15), rgba(229,27,35,0) 50%), var(--xxv-char);
}

.xxv-card__thumb {
  width: 62px; height: 62px; object-fit: cover;
  border-radius: 10px; background: rgba(255,255,255,.04);
}

.xxv-card__text { min-width: 0; }

.xxv-card__name { font-family: var(--xxv-display); font-size: .9375rem; font-weight: 600; line-height: 1.25; }
.xxv-card__badge {
  margin-left: .4rem; font-family: var(--xxv-display); font-size: .5625rem;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--xxv-flare); vertical-align: .12em; white-space: nowrap;
}
.xxv-card__desc { margin-top: .18rem; font-size: .75rem; line-height: 1.5; color: var(--xxv-ash); }

.xxv-card__meta {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: center; gap: .4rem; flex: none;
}

.xxv-card__price {
  font-family: var(--xxv-display); font-size: .9375rem; font-weight: 600;
  color: var(--xxv-flare); white-space: nowrap; line-height: 1.2;
}

.xxv-card__cta {
  appearance: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 58px; padding: .34rem .85rem;
  border-radius: var(--xxv-radius-sm);
  background: var(--xxv-flame); color: #fff;
  font-family: var(--xxv-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  transition: background-color .15s, transform .1s;
}
.xxv-card__cta:hover { background: var(--xxv-flame-deep); }
.xxv-card__cta:active { transform: scale(.94); }
.xxv-card__cta.is-added { background: #1f7a45; }
.xxv-card__cta-mob { display: none; }

.xxv-card__unavailable {
  padding: .34rem .7rem; border: 1px dashed var(--xxv-line);
  border-radius: var(--xxv-radius-sm); font-family: var(--xxv-display);
  font-size: .625rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--xxv-ash-dim); white-space: nowrap;
}

/* ===================================================== suggestions ==== */

.xxv-suggest {
  margin-top: .9rem; padding: .8rem .9rem;
  border: 1px dashed rgba(240,180,41,.3); border-radius: var(--xxv-radius);
  background: rgba(240,180,41,.05);
}
.xxv-suggest[hidden] { display: none; }
.xxv-suggest__head {
  display: flex; align-items: center; gap: .45rem; margin-bottom: .6rem;
  font-family: var(--xxv-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--xxv-gold);
}
.xxv-suggest__head svg { width: 14px; height: 14px; }
.xxv-suggest__row { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.xxv-suggest__row::-webkit-scrollbar { display: none; }

.xxv-chip {
  flex: none; display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .4rem .35rem .5rem;
  border: 1px solid var(--xxv-line); border-radius: 999px;
  background: rgba(255,255,255,.03); color: var(--xxv-bone);
  font: inherit; font-size: .75rem; cursor: pointer; transition: all .15s;
}
.xxv-chip:hover { border-color: var(--xxv-gold); }
.xxv-chip img { width: 24px; height: 24px; border-radius: 999px; object-fit: cover; }
.xxv-chip b { font-family: var(--xxv-display); font-weight: 600; color: var(--xxv-flare); }
.xxv-chip span.plus {
  width: 20px; height: 20px; display: grid; place-items: center;
  border-radius: 999px; background: var(--xxv-flame); color: #fff;
  font-size: .875rem; line-height: 1;
}

/* ===================================================== option sheet ==== */

.xxv-sheet-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(2,8,5,.72); opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.xxv-sheet-scrim.is-open { opacity: 1; pointer-events: auto; }

.xxv-sheet {
  position: fixed; z-index: 95;
  left: 50%; top: 50%;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(80vh, 40rem);
  display: flex; flex-direction: column;
  border: 1px solid var(--xxv-line); border-radius: 18px;
  background: #081a10; color: var(--xxv-bone);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  font-family: var(--xxv-body);
  transform: translate(-50%, -46%) scale(.96); opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .22s cubic-bezier(.22,1,.36,1);
}
.xxv-sheet.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }

.xxv-sheet__head {
  flex: none; display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1rem; border-bottom: 1px solid var(--xxv-line-soft);
}
.xxv-sheet__thumb { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.xxv-sheet__title { flex: 1; font-family: var(--xxv-display); font-size: 1rem; font-weight: 600; }
.xxv-sheet__base { font-size: .75rem; color: var(--xxv-ash); margin-top: .1rem; }

.xxv-sheet__body { flex: 1; min-height: 0; overflow-y: auto; padding: .9rem 1rem 1rem; }

.xxv-optgroup + .xxv-optgroup { margin-top: 1.1rem; }
.xxv-optgroup__legend {
  display: flex; align-items: baseline; gap: .5rem; margin-bottom: .5rem;
  font-family: var(--xxv-display); font-size: .6875rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #7d9186;
}
.xxv-optgroup__req { font-size: .625rem; letter-spacing: .06em; color: var(--xxv-flare); text-transform: none; }
.xxv-optgroup__opt { font-size: .625rem; letter-spacing: .06em; color: var(--xxv-ash-dim); text-transform: none; }

.xxv-opt {
  width: 100%; display: flex; align-items: center; gap: .65rem;
  padding: .55rem .7rem; margin-bottom: .35rem;
  border: 1px solid var(--xxv-line); border-radius: 10px;
  background: transparent; color: inherit; font: inherit; font-size: .8125rem;
  text-align: left; cursor: pointer; transition: all .15s;
}
.xxv-opt:hover { border-color: rgba(255,255,255,.25); }
.xxv-opt[aria-pressed="true"] { border-color: var(--xxv-flare); background: rgba(255,90,96,.1); }
.xxv-opt__tick {
  width: 17px; height: 17px; flex: none; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25); display: grid; place-items: center;
}
.xxv-opt--multi .xxv-opt__tick { border-radius: 5px; }
.xxv-opt[aria-pressed="true"] .xxv-opt__tick { border-color: var(--xxv-flare); background: var(--xxv-flame); }
.xxv-opt__tick svg { width: 10px; height: 10px; color: #fff; opacity: 0; }
.xxv-opt[aria-pressed="true"] .xxv-opt__tick svg { opacity: 1; }
.xxv-opt__label { flex: 1; }
.xxv-opt__delta { font-family: var(--xxv-display); font-size: .8125rem; color: var(--xxv-ash); }
.xxv-opt[aria-pressed="true"] .xxv-opt__delta { color: var(--xxv-flare); }

.xxv-sheet__foot {
  flex: none; padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--xxv-line-soft);
  display: flex; align-items: center; gap: .7rem;
}
.xxv-qty-step {
  display: inline-flex; align-items: center;
  border: 1px solid var(--xxv-line); border-radius: 999px; padding: 2px;
}
.xxv-qty-step button {
  width: 30px; height: 30px; border: 0; border-radius: 999px;
  background: transparent; color: var(--xxv-bone); font-size: 1rem; cursor: pointer;
}
.xxv-qty-step button:hover { background: rgba(255,255,255,.08); }
.xxv-qty-step span { min-width: 26px; text-align: center; font-size: .875rem; font-weight: 600; }

.xxv-sheet__add {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1rem; border: 0; border-radius: 11px;
  background: var(--xxv-flame); color: #fff;
  font-family: var(--xxv-display); font-size: .8125rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
}
.xxv-sheet__add:hover { background: var(--xxv-flame-deep); }

.xxv-sheet__close {
  width: 32px; height: 32px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--xxv-line); border-radius: 999px;
  background: transparent; color: var(--xxv-ash); cursor: pointer;
}
.xxv-sheet__close svg { width: 14px; height: 14px; }

/* ===================================================== empty / misc ==== */

.xxv-shop__empty { margin: 3rem auto 0; max-width: 26rem; text-align: center; color: var(--xxv-ash); }
.xxv-shop__empty[hidden] { display: none; }
.xxv-shop__empty h2 { font-family: var(--xxv-display); font-size: 1.125rem; color: var(--xxv-bone); margin-bottom: .35rem; }
.xxv-shop__empty p { font-size: .8125rem; margin-bottom: 1rem; }
.xxv-reset {
  appearance: none; border: 1px solid var(--xxv-line); border-radius: 999px;
  background: transparent; color: var(--xxv-bone); font: inherit;
  font-size: .75rem; padding: .34rem .95rem; cursor: pointer;
}

/* ========================================================== bubble ==== */

.xxv-bubble {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 60; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .6rem;
  height: 56px; padding: 0 18px; border-radius: 999px;
  background: var(--xxv-flame); color: #fff;
  font-family: var(--xxv-display); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(229,27,35,.55), 0 4px 12px rgba(0,0,0,.5);
  transform: scale(0) translateY(12px); opacity: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .2s, background-color .15s;
}
.xxv-bubble.is-visible { transform: scale(1) translateY(0); opacity: 1; }
.xxv-bubble:hover { background: var(--xxv-flame-deep); }
.xxv-bubble.is-bumped { animation: xxv-bump .45s cubic-bezier(.34,1.56,.64,1); }
@keyframes xxv-bump { 0%{transform:scale(1)} 35%{transform:scale(1.14)} 100%{transform:scale(1)} }
.xxv-bubble__icon { position: relative; display: inline-flex; }
.xxv-bubble__icon svg { width: 22px; height: 22px; }
.xxv-bubble__count {
  position: absolute; top: -7px; right: -9px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px;
  background: #fff; color: #06120b;
  font-family: var(--xxv-body); font-size: .6875rem; font-weight: 700; letter-spacing: 0;
}

.xxv-toast {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: calc(max(1.25rem, env(safe-area-inset-bottom)) + 66px);
  z-index: 60; max-width: min(20rem, calc(100vw - 2.5rem));
  padding: .6rem .9rem; border: 1px solid var(--xxv-line); border-radius: 12px;
  background: rgba(13,34,22,.96); box-shadow: 0 12px 30px rgba(0,0,0,.5);
  font-size: .8125rem; opacity: 0; transform: translateY(8px);
  pointer-events: none; transition: opacity .2s, transform .2s;
}
.xxv-toast.is-visible { opacity: 1; transform: translateY(0); }
.xxv-toast strong { color: var(--xxv-flare); font-weight: 600; }

/* ====================================================== responsive ==== */

@media (max-width: 860px) {
  .xxv-section__grid { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 720px) {
  .xxv-hero { min-height: 270px; padding: 3.4rem 0 1.1rem; }
  .xxv-hero__bar { grid-template-columns: auto 1fr auto; gap: .6rem; }
  .xxv-hero__back span { display: none; }
  .xxv-hero__wordmark { font-size: .625rem; letter-spacing: .16em; text-indent: .16em; }
  .xxv-hero__mark { width: 46px; height: 46px; margin-bottom: .45rem; }
  .xxv-hero__logo { width: 34px; height: 34px; }
  .xxv-hero__title { font-size: clamp(2rem, 11vw, 2.6rem); }
  .xxv-hero__lede { font-size: .8125rem; }

  /* Informative header: the chips carry the practical detail on mobile,
     where there is no room for a separate info section. */
  .xxv-info { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .xxv-info::-webkit-scrollbar { display: none; }

  .xxv-shop__controls-inner { gap: .5rem; }
  .xxv-groups { width: 100%; }
  .xxv-group { flex: 1; text-align: center; padding: .42rem .5rem; }
  .xxv-shop__search { width: 100%; flex: none; order: 3; }
  .xxv-subs { order: 2; margin: 0 -1.25rem; padding: 0 1.25rem .1rem; }
  .xxv-shop__hint { order: 4; }

  /* "Get" becomes a compact + so the card stays one tidy line */
  .xxv-card__cta-web { display: none; }
  .xxv-card__cta-mob { display: block; font-size: 1.125rem; line-height: 1; }
  .xxv-card__cta {
    min-width: 0; width: 38px; height: 38px; padding: 0; border-radius: 999px;
  }
  .xxv-card { min-height: 68px; gap: .7rem; padding: .75rem .8rem; }
  .xxv-card--media { grid-template-columns: 52px minmax(0,1fr) auto; }
  .xxv-card__thumb { width: 52px; height: 52px; }
  .xxv-card__meta { gap: .35rem; }
  /* Only the single-line cards put price and button side by side. */
  .xxv-card--plain .xxv-card__meta { flex-direction: row; gap: .6rem; }
  .xxv-card__cta { width: 34px; height: 34px; }
  .xxv-card__desc { font-size: .7188rem; }

  .xxv-sheet {
    left: 0; right: 0; top: auto; bottom: 0;
    width: 100%; max-width: none; max-height: 86vh;
    border-radius: 20px 20px 0 0; border-bottom: 0;
    transform: translateY(100%); opacity: 1;
  }
  .xxv-sheet.is-open { transform: translateY(0); }

  .xxv-bubble { height: 54px; padding: 0 16px; }
  .xxv-bubble__total { display: none; }
  .xxv-toast { left: max(1rem, env(safe-area-inset-left)); right: max(1rem, env(safe-area-inset-right)); max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .xxv-shop *, .xxv-bubble, .xxv-toast, .xxv-sheet { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================================
   ORDER DRAWER
   ====================================================================== */

.xxv-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(2, 8, 5, .72);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.xxv-scrim.is-open { opacity: 1; pointer-events: auto; }
@supports (backdrop-filter: blur(4px)) {
  .xxv-scrim.is-open { backdrop-filter: blur(3px); }
}

.xxv-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: min(26rem, 100vw);
  display: flex; flex-direction: column;
  background: #081a10;
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .6);
  color: var(--xxv-bone, #f1f6f2);
  font-family: "Inter", sans-serif;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
}
.xxv-drawer.is-open { transform: translateX(0); }

.xxv-drawer * { box-sizing: border-box; }
.xxv-drawer :focus-visible { outline: 2px solid #ff5a60; outline-offset: 2px; border-radius: 6px; }

/* header */

.xxv-drawer__head {
  flex: none; display: flex; align-items: center; gap: .6rem;
  padding: 1rem 1rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.xxv-drawer__title {
  flex: 1; margin: 0;
  font-family: "Oswald", sans-serif; font-size: 1.0625rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.xxv-drawer__pill {
  min-width: 22px; height: 22px; padding: 0 7px;
  display: grid; place-items: center; border-radius: 999px;
  background: #e51b23; color: #fff; font-size: .75rem; font-weight: 700;
}
.xxv-drawer__pill[hidden] { display: none; }
.xxv-icon-btn {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px;
  background: transparent; color: var(--xxv-ash, #93a89a);
  cursor: pointer; transition: color .15s, border-color .15s;
}
.xxv-icon-btn:hover { color: #fff; border-color: rgba(255, 255, 255, .3); }
.xxv-icon-btn svg { width: 15px; height: 15px; }

.xxv-drawer__back {
  display: none; align-items: center; gap: .4rem;
  border: 0; background: transparent; color: var(--xxv-ash, #93a89a);
  font: inherit; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer;
}
.xxv-drawer__back svg { width: 13px; height: 13px; }
.xxv-drawer__back[hidden] { display: none; }
.xxv-drawer.is-step2 .xxv-drawer__back { display: inline-flex; }

/* steps */

.xxv-steps {
  flex: none; display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-family: "Oswald", sans-serif; font-size: .6875rem;
  letter-spacing: .14em; text-transform: uppercase;
}
.xxv-step { display: inline-flex; align-items: center; gap: .4rem; color: #5f7368; }
.xxv-step__n {
  width: 17px; height: 17px; display: grid; place-items: center;
  border-radius: 999px; background: rgba(255, 255, 255, .1);
  font-size: .625rem; font-weight: 600; letter-spacing: 0;
}
.xxv-step.is-active { color: #f1f6f2; }
.xxv-step.is-active .xxv-step__n { background: #e51b23; color: #fff; }
.xxv-steps__rule { flex: 1; height: 1px; background: rgba(255, 255, 255, .12); }

/* panes */

.xxv-drawer__body { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.xxv-pane { display: none; padding: .85rem 1rem 1rem; }
.xxv-pane.is-active { display: block; }

/* line items */

.xxv-line {
  display: grid;
  grid-template-areas: "img name price" "img qty  bin";
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: .35rem .7rem; align-items: center;
  padding: .6rem; margin-bottom: .5rem;
  border: 1px solid rgba(255, 255, 255, .07); border-radius: 12px;
  background: #0d2216;
}
.xxv-line__img {
  grid-area: img; width: 56px; height: 56px; border-radius: 9px;
  object-fit: cover; background: rgba(255, 255, 255, .05);
}
.xxv-line__ph {
  grid-area: img; width: 56px; height: 56px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px dashed rgba(255, 255, 255, .1);
  font-family: "Oswald", sans-serif; font-size: 1.125rem; color: #4d6155;
}
.xxv-line__name {
  grid-area: name; font-family: "Oswald", sans-serif;
  font-size: .875rem; font-weight: 600; line-height: 1.3;
}
.xxv-line__note {
  display: block; margin-top: .15rem;
  font-family: "Inter", sans-serif; font-size: .6875rem;
  font-weight: 400; color: #7d9186;
}

.xxv-line__price {
  grid-area: price; align-self: start; justify-self: end;
  font-family: "Oswald", sans-serif; font-size: .875rem;
  font-weight: 600; color: #ff5a60; white-space: nowrap;
}
.xxv-qty {
  grid-area: qty; display: inline-flex; align-items: center; gap: .1rem;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px;
  padding: 1px;
}
.xxv-qty button {
  width: 26px; height: 26px; display: grid; place-items: center;
  border: 0; border-radius: 999px; background: transparent;
  color: #f1f6f2; font-size: 1rem; line-height: 1; cursor: pointer;
}
.xxv-qty button:hover { background: rgba(255, 255, 255, .09); }
.xxv-qty span { min-width: 26px; text-align: center; font-size: .8125rem; font-weight: 600; }
.xxv-line__bin {
  grid-area: bin; justify-self: end;
  border: 0; background: transparent; color: #5f7368;
  cursor: pointer; padding: 4px;
}
.xxv-line__bin:hover { color: #ff5a60; }
.xxv-line__bin svg { width: 15px; height: 15px; }

.xxv-empty-cart { text-align: center; padding: 3rem 1rem; color: #93a89a; }
.xxv-empty-cart h3 { font-family: "Oswald", sans-serif; font-size: 1rem; color: #f1f6f2; margin: 0 0 .3rem; }
.xxv-empty-cart p { font-size: .8125rem; margin: 0; }

/* details form */

.xxv-fieldset { margin-bottom: 1.1rem; }
.xxv-legend {
  display: block; margin-bottom: .45rem;
  font-family: "Oswald", sans-serif; font-size: .625rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #7d9186;
}
.xxv-legend span { color: #5f7368; letter-spacing: .04em; text-transform: none; font-weight: 400; }

.xxv-summary {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem .8rem; margin-bottom: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 11px;
  background: rgba(255, 255, 255, .03); font-size: .8125rem;
}
.xxv-summary strong { margin-left: auto; font-family: "Oswald", sans-serif; font-size: .9375rem; }
.xxv-summary svg { width: 15px; height: 15px; color: #ff5a60; }

/* mode toggle — Serving first, Delivery second */

.xxv-mode { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.xxv-mode button {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .62rem .5rem; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12); background: transparent;
  color: #93a89a; font-family: "Oswald", sans-serif; font-size: .75rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.xxv-mode button svg { width: 14px; height: 14px; }
.xxv-mode button[aria-pressed="true"] { background: #e51b23; border-color: #e51b23; color: #fff; }

/* payment */

.xxv-pay { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.xxv-pay button {
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .6rem .4rem; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12); background: transparent;
  color: #93a89a; font-family: "Oswald", sans-serif; font-size: .6875rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.xxv-pay button svg { width: 17px; height: 17px; }
.xxv-pay button:hover { color: #f1f6f2; border-color: rgba(255, 255, 255, .28); }
.xxv-pay button[aria-pressed="true"] {
  background: rgba(240, 180, 41, .14); border-color: #f0b429; color: #f0b429;
}

.xxv-pay-note {
  margin: .5rem 0 0; padding: .6rem .75rem;
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  font-size: .75rem; line-height: 1.55; color: #93a89a;
}
.xxv-pay-note[hidden] { display: none; }
.xxv-pay-note b { color: #f1f6f2; font-weight: 600; }
.xxv-pay-note code {
  font-family: "Oswald", sans-serif; font-size: .9375rem; letter-spacing: .06em;
  color: #f0b429;
}

/* table picker */

.xxv-tables { display: flex; flex-wrap: wrap; gap: .35rem; }
.xxv-table {
  min-width: 42px; padding: .38rem .6rem;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 9px;
  background: transparent; color: #cfe0d4;
  font-family: "Oswald", sans-serif; font-size: .8125rem; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.xxv-table:hover { border-color: rgba(255, 255, 255, .3); color: #fff; }
.xxv-table[aria-pressed="true"] {
  background: #e51b23; border-color: #e51b23; color: #fff; font-weight: 600;
}

/* zone list */

.xxv-zones {
  max-height: 12.5rem; overflow-y: auto; overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 11px;
  background: rgba(255, 255, 255, .02);
}
.xxv-zone {
  width: 100%; display: flex; align-items: center; gap: .7rem;
  padding: .6rem .75rem; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: transparent; color: inherit; text-align: left; cursor: pointer;
}
.xxv-zone:last-child { border-bottom: 0; }
.xxv-zone:hover { background: rgba(255, 255, 255, .04); }
.xxv-zone[aria-pressed="true"] { background: rgba(229, 27, 35, .14); }
.xxv-zone__text { flex: 1; min-width: 0; }
.xxv-zone__name { display: block; font-size: .8125rem; font-weight: 600; line-height: 1.3; }
.xxv-zone__meta {
  display: block; font-size: .6875rem; color: #7d9186; margin-top: .1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.xxv-zone__fee {
  margin-left: auto; flex: none; padding: .18rem .5rem; border-radius: 6px;
  background: rgba(245, 175, 2, .14); color: #f0b429;
  font-family: "Oswald", sans-serif; font-size: .75rem; font-weight: 600;
}
.xxv-zone[hidden] { display: none; }
.xxv-zones__none { padding: 1rem .75rem; font-size: .8125rem; color: #7d9186; text-align: center; }

/* inputs */

.xxv-field { margin-bottom: .7rem; }
.xxv-label {
  display: block; margin-bottom: .3rem;
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: #7d9186;
}
.xxv-input-wrap { position: relative; display: flex; align-items: center; }
.xxv-input-wrap svg {
  position: absolute; left: .7rem; width: 14px; height: 14px;
  color: #5f7368; pointer-events: none;
}
.xxv-input, .xxv-textarea {
  width: 100%; padding: .6rem .75rem .6rem 2.1rem;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px;
  background: rgba(255, 255, 255, .03); color: #f1f6f2;
  font: inherit; font-size: .8125rem; outline: none;
}
.xxv-textarea { padding-left: .75rem; min-height: 4.5rem; resize: vertical; }
.xxv-input::placeholder, .xxv-textarea::placeholder { color: #55685c; }
.xxv-input:focus, .xxv-textarea:focus { border-color: rgba(255, 90, 96, .5); }
.xxv-input.is-error, .xxv-textarea.is-error { border-color: #e51b23; }

.xxv-search-zone { margin-bottom: .45rem; }
.xxv-search-zone .xxv-input { padding-left: 2.1rem; }

/* footer */

.xxv-drawer__foot {
  flex: none; padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: rgba(8, 26, 16, .96);
}
.xxv-totals { font-size: .8125rem; }
.xxv-totals div { display: flex; justify-content: space-between; padding: .16rem 0; color: #93a89a; }
.xxv-totals div.is-grand {
  margin-top: .35rem; padding-top: .5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #f1f6f2;
  font-family: "Oswald", sans-serif; font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.xxv-totals div.is-grand b { font-size: 1.125rem; color: #f0b429; letter-spacing: 0; }

.xxv-primary {
  width: 100%; margin-top: .7rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border: 0; border-radius: 11px;
  background: #e51b23; color: #fff;
  font-family: "Oswald", sans-serif; font-size: .8125rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  transition: background-color .15s, opacity .15s;
}
.xxv-primary:hover { background: #b3131a; }
.xxv-primary svg { width: 15px; height: 15px; }
.xxv-primary[disabled] { opacity: .45; cursor: not-allowed; }

.xxv-ghost {
  width: 100%; margin-top: .5rem; padding: .5rem;
  border: 0; background: transparent; color: #7d9186;
  font: inherit; font-size: .8125rem; cursor: pointer;
}
.xxv-ghost:hover { color: #ff5a60; }

.xxv-error {
  margin: .5rem 0 0; font-size: .75rem; color: #ff5a60; text-align: center;
}
.xxv-error[hidden] { display: none; }

/* sent confirmation */

.xxv-sent { text-align: center; padding: 3rem 1rem; }
.xxv-sent__tick {
  width: 62px; height: 62px; margin: 0 auto 1rem;
  display: grid; place-items: center; border-radius: 999px;
  background: rgba(31, 122, 69, .2); color: #4ade80;
}
.xxv-sent__tick svg { width: 30px; height: 30px; }
.xxv-sent h3 { font-family: "Oswald", sans-serif; font-size: 1.25rem; margin: 0 0 .4rem; }
.xxv-sent p { font-size: .8125rem; color: #93a89a; margin: 0 0 .3rem; }

@media (max-width: 560px) {
  .xxv-drawer { width: 100vw; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .xxv-drawer, .xxv-scrim { transition-duration: .01ms !important; }
}
