/* ============================================================
   Group Supermarket — everything that isn't a token.
   BEM-ish, .gs- prefixed so classes survive alongside WooCommerce
   output later (Part 3, §7). Mobile-first; breakpoints 360/720/900/1200.
   ============================================================ */

/* ---------- Fonts: self-hosted, latin subset, swap (Part 3, §8) ---------- */

@font-face {
  font-family: 'Baloo 2';
  src: url('../fonts/baloo-2-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: 'Dancing Script';
  src: url('../fonts/dancing-script-var.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

/* ---------------------------------- Base ---------------------------------- */

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

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, dl, dd, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; }
a { color: inherit; }

:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

/* The hidden attribute always wins, even over display:flex/grid components. */
[hidden] { display: none !important; }

/* App-style page transitions (router.js swaps <main> in place) */
@media (prefers-reduced-motion: no-preference) {
  main.gs-page-leave { opacity: 0; transform: translateY(6px); transition: opacity 150ms ease, transform 150ms ease; }
  main.gs-page-enter { animation: gs-page-in 300ms ease-out; }
}
@keyframes gs-page-in { from { opacity: 0; transform: translateY(10px); } }

/* Scroll-reveal: bands rise in once as they enter the viewport */
@media (prefers-reduced-motion: no-preference) {
  html.js .gs-reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
  html.js .gs-reveal.is-visible { opacity: 1; transform: none; }
}

/* Hover micro-animations — motion-safe, everywhere something is tappable */
@media (prefers-reduced-motion: no-preference) {
  .gs-btn, .gs-card, .gs-card__art svg, .gs-bigtap, .gs-two-ways__card,
  .gs-gas__opt, .gs-iconbtn, .gs-wa__bubble, .gs-brand__g, .gs-catnav a,
  .gs-again__chip, .gs-choicecard, .gs-toast, .gs-chip--accent {
    transition: transform 180ms ease, border-color 180ms ease,
                background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }
  .gs-card:hover { transform: translateY(-4px); }
  .gs-card:hover .gs-card__art svg { transform: scale(1.07); }
  .gs-bigtap:hover, .gs-two-ways__card:hover { transform: translateY(-3px); }
  .gs-gas__opt:hover { transform: translateY(-3px); }
  .gs-again__chip:hover { transform: translateY(-2px); }
  .gs-wa__bubble:hover { transform: scale(1.08); }
  /* The G swings from its top like the hanging shop sign */
  .gs-brand__g { transform-origin: 50% 8%; }
  .gs-brand:hover .gs-brand__g { animation: gs-swing 1.5s ease-in-out; }
}
.gs-card:hover, .gs-bigtap:hover, .gs-two-ways__card:hover,
.gs-gas__opt:hover, .gs-choicecard:hover { border-color: var(--accent); }
.gs-iconbtn:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.gs-catnav a:hover { color: var(--accent); }
.gs-catnav a:hover .gs-catnav__icon { color: var(--accent); }

.gs-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

.gs-skip {
  position: absolute; left: var(--sp-4); top: -100px;
  z-index: 100; padding: var(--sp-3) var(--sp-4);
  background: var(--fg); color: var(--bg);
  border-radius: var(--radius); text-decoration: none;
}
.gs-skip:focus { top: var(--sp-4); }

/* ------------------------------ Type roles ------------------------------- */

.gs-display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--display-xl-size);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.gs-display-l {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--display-l-size);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.gs-script {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: normal;
}
.gs-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--heading-size);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.gs-body  { font-size: var(--body-size); line-height: 1.6; }
.gs-small { font-size: var(--small-size); line-height: 1.5; }
.gs-kicker {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-label-size);
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gs-mono-data {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--mono-data-size);
  line-height: 1.3;
}

.gs-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* -------------------------------- Layout --------------------------------- */

.gs-wrap {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.gs-band { padding-block: var(--band-pad); }
.gs-band--tight { padding-block: 0 var(--band-pad); }

.gs-band .gs-kicker { color: var(--fg-muted); }
.gs-band > .gs-wrap > .gs-display-l { margin-top: var(--sp-2); }

/* ------------------------------- Buttons --------------------------------- */

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: var(--sp-2) var(--sp-6);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.gs-btn:active { transform: translateY(1px); }   /* one of three motions */
.gs-btn--primary { background: var(--accent); color: var(--on-accent); }
.gs-btn--primary:hover { background: var(--brand-green-deep); }
.gs-btn--secondary { background: transparent; border-color: var(--rule); color: var(--fg); }
.gs-btn--secondary:hover { border-color: var(--fg-muted); }
.gs-btn--small { min-height: 40px; padding-inline: var(--sp-4); font-size: var(--small-size); }

/* --------------------------- Tags, chips, dots --------------------------- */

/* Shelf tag: the notch, used on price displays only */
.gs-tag {
  display: inline-block;
  clip-path: var(--notch);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-data-size);
  line-height: 1;
  padding: var(--sp-2) var(--sp-3) var(--sp-2) 18px;
}

.gs-chip {
  display: inline-block;
  clip-path: var(--notch);
  border: 1px solid var(--rule);
  padding: 3px 8px 3px 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-label-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.gs-chip--accent {
  border-color: transparent;
  background: var(--accent);
  color: var(--on-accent);
}
/* Warning chip: low stock, closing soon — amber with ink (8.4:1) */
.gs-chip--warn {
  border-color: transparent;
  background: var(--warn);
  color: var(--ink);
}

.gs-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--concrete);
}
.is-open .gs-dot    { background: var(--open); }
.is-closing .gs-dot { background: var(--sodium); }

/* -------------------------------- Header --------------------------------- */

.gs-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.gs-header.is-condensed { min-height: var(--header-h-condensed); }
.gs-header.is-condensed .gs-header__inner { padding-block: var(--sp-1); }
.gs-header__inner {
  display: flex;
  flex-wrap: wrap;                 /* nav drops to a second row below 900px */
  align-items: center;
  gap: var(--sp-2) var(--sp-4);
  padding-block: var(--sp-2);
}
.gs-header__actions {
  margin-left: auto;
  display: flex;
  gap: var(--sp-2);
}

.gs-logo { display: inline-flex; align-items: center; }
.gs-logo img { display: block; height: 40px; width: auto; }

/* Brand lockup — traced from the client logo: the G monogram carries the
   red cart, GROUP holds the cart-in-the-O, SUPERMARKET sits in red between
   side dashes. The only place brand colours appear. */
.gs-brand { display: inline-flex; align-items: center; gap: var(--sp-2); text-decoration: none; flex-shrink: 0; }
.gs-brand__g { width: 44px; height: 44px; flex-shrink: 0; }
.gs-brand__text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 1;
  gap: 2px;
}
.gs-brand__group {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: var(--font-display);   /* rounded heavy — the GROUP lettering */
  font-weight: 800;
  color: var(--brand-1);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.gs-brand__o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.02em;
  height: 1.02em;
  border-radius: 50%;
  border: 0.11em solid var(--brand-1);
  background: var(--brand-2);
  color: #FFFFFF;
  margin: 0 1px;
}
.gs-brand__o svg { width: 72%; height: 72%; }
.gs-brand__market {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-brand);     /* Montserrat 800 — the SUPERMARKET caps */
  font-weight: 800;
  color: var(--brand-2);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}
.gs-brand__market::before,
.gs-brand__market::after { content: ""; flex: 1; min-width: 8px; height: 2px; background: var(--brand-2); }

/* Notification bar (announcement) — scrolls away, header stays sticky */
.gs-notice { background: var(--accent); color: var(--on-accent); }
.gs-notice__inner { display: flex; align-items: center; gap: var(--sp-4); }
.gs-notice__text { font-size: var(--small-size); font-weight: 500; padding-block: var(--sp-2); flex: 1; text-align: center; }
.gs-notice__close {
  border: none; background: transparent; color: var(--on-accent);
  font-size: 1.25rem; line-height: 1;
  width: 32px; height: 32px; border-radius: var(--radius); cursor: pointer;
  flex-shrink: 0;
}

/* Header search */
.gs-search { display: none; flex: 1; max-width: 460px; margin-inline: auto; gap: var(--sp-2); }
@media (min-width: 720px) { .gs-search { display: flex; } }
.gs-search__input { flex: 1; min-height: 44px; }

/* Secondary header row: nav + status pill */
.gs-header__subrow { border-top: 1px solid var(--rule); }
.gs-subrow { display: flex; align-items: center; gap: var(--sp-4); padding-block: var(--sp-1); }
.gs-subrow .gs-pill { flex-shrink: 0; margin-left: auto; }
.gs-nav { display: flex; gap: var(--sp-8); overflow-x: auto; flex: 1; }
.gs-nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--fg);
  padding: var(--sp-3) var(--sp-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.gs-nav a[aria-current="page"] { border-bottom-color: var(--accent); }
.gs-nav a:hover { border-bottom-color: var(--rule); }
@media (min-width: 900px) { .gs-nav { overflow: visible; } }

/* Shop dropdown */
.gs-menu { position: relative; display: inline-flex; align-items: center; }
.gs-menu__toggle {
  border: none; background: transparent; color: var(--fg);
  width: 28px; height: 40px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
}
.gs-menu__toggle svg { width: 10px; height: 7px; }
.gs-menu__panel {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  z-index: 15;
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--sp-2);
}
.gs-menu__panel a {
  display: flex; align-items: center;
  padding: var(--sp-2) var(--sp-3);
  border-radius: 4px;
  border-bottom: none;
  min-height: 40px;
}
.gs-menu__panel a:hover { background: color-mix(in srgb, var(--accent) 16%, transparent); }
.gs-menu__all { border-top: 1px solid var(--rule); margin-top: var(--sp-2); font-weight: 600; }
@media (min-width: 900px) {
  .gs-menu__toggle { display: inline-flex; }
  .gs-menu__panel.is-open { display: block; }
  .gs-menu:hover .gs-menu__panel, .gs-menu:focus-within .gs-menu__panel { display: block; }
}

/* Hanging OPEN sign — swings on hover */
.gs-sign { width: 96px; height: auto; overflow: visible; }
.gs-sign__swing { transform-origin: 60px 6px; transform-box: view-box; }
@media (prefers-reduced-motion: no-preference) {
  .gs-sign:hover .gs-sign__swing { animation: gs-swing 1.5s ease-in-out; }
}
@keyframes gs-swing {
  0% { transform: rotate(0); } 20% { transform: rotate(8deg); }
  45% { transform: rotate(-6deg); } 68% { transform: rotate(3.5deg); }
  86% { transform: rotate(-1.5deg); } 100% { transform: rotate(0); }
}
.gs-sign__bg { fill: var(--concrete); }
.gs-sign__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  fill: var(--ink);
}
.is-open .gs-sign__bg { fill: var(--open); }
.is-open .gs-sign__text { fill: #FFFFFF; }
.is-closing .gs-sign__bg { fill: var(--sodium); }

.gs-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 92%;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  line-height: 1;
}
.gs-wordmark span { color: var(--accent); display: block; font-size: 0.72em; letter-spacing: 0.02em; }

.gs-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-label-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 719px) {
  .gs-header__map { display: none; }
  .gs-pill { letter-spacing: 0.02em; }
}
@media (max-width: 479px) {
  .gs-header__call { display: none; }     /* sticky bar covers the call CTA */
  .gs-pill { margin-left: auto; }
}

.gs-iconbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: var(--fg);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}
.gs-iconbtn svg { width: 24px; height: 24px; }
.gs-iconbtn__badge {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

/* --------------------------------- Hero ---------------------------------- */

.gs-hero__grid {
  display: grid;
  grid-template-areas: "head" "dial" "ctas";
  gap: var(--sp-8);
}
.gs-hero__head { grid-area: head; }
.gs-hero__dial { grid-area: dial; justify-self: center; }
.gs-hero__ctas { grid-area: ctas; }

@media (min-width: 900px) {
  .gs-hero__grid {
    grid-template-areas: "head dial" "ctas dial";
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    column-gap: var(--sp-16);
  }
  .gs-hero__ctas { align-self: start; }
}

.gs-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.gs-hero__meta-place { margin-left: auto; color: var(--fg-muted); }
.gs-hero__headline { max-width: 12ch; }
.gs-hero__buttons { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.gs-hero__note { margin-top: var(--sp-3); color: var(--fg-muted); }

.gs-dial { width: min(320px, 78vw); display: block; overflow: visible; }

/* Endpoint time labels and the curved CLOSED wordmark on the grey stretch */
.gs-dial__endlabel {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  fill: var(--fg-muted);
}
.gs-dial__closedlabel {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.35em;
  fill: var(--fg-muted);       /* quiet grey, but legible in both themes */
}

/* ------------------------------ Hours dial ------------------------------- */

.gs-dial__track { fill: none; stroke: var(--rule); stroke-width: 14; }
.gs-dial__tick  { stroke: var(--rule); stroke-width: 2; }
.gs-dial__band  {
  fill: none;
  stroke: var(--accent);
  stroke-width: 14;
  stroke-linecap: round;
}
.gs-dial--closing .gs-dial__band { stroke: var(--warn); }
.gs-dial--closed .gs-dial__band,
.gs-dial--unknown .gs-dial__band { stroke: var(--concrete); }
[data-theme="night"] .gs-dial--closing .gs-dial__band { stroke: var(--warn); }
.gs-dial--closed .gs-dial__band,
[data-theme="night"] .gs-dial--unknown .gs-dial__band { stroke: var(--rule); }

/* Elapsed open hours fade back — the vivid green ahead of the marker is
   what's left until close. */
.gs-dial__elapsed {
  fill: none;
  stroke: var(--bg);
  stroke-width: 14;
  stroke-linecap: round;
  opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) {
  .gs-dial__elapsed { opacity: 0; animation: gs-elapsed-in 400ms ease-out 700ms forwards; }
}
@keyframes gs-elapsed-in { to { opacity: 0.5; } }

.gs-dial__marker { fill: var(--fg); stroke: var(--bg); stroke-width: 3.5; cursor: pointer; }

/* Hover the now-dot: sonar rings ripple out from "you are here" */
.gs-dial__pulse {
  fill: none;
  stroke: var(--fg);
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .gs-dial__marker:hover + .gs-dial__pulse { animation: gs-sonar 1.1s ease-out infinite; }
}
@keyframes gs-sonar {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(2.8); opacity: 0; }
}

.gs-dial__label, .gs-dial__sub {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  fill: var(--fg-muted);
}
.gs-dial__data {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  fill: var(--fg);
}
.gs-dial__tick { stroke-linecap: round; }

/* Motion: the band draws once on load; closing pulses once. That's all.
   (Part 1, §5; Part 3, §5.) */
@media (prefers-reduced-motion: no-preference) {
  .gs-dial__band {
    stroke-dasharray: var(--arc-len) 2000;
    animation: gs-draw 600ms ease-out both;
  }
  .gs-dial--closing .gs-dial__band {
    animation: gs-draw 600ms ease-out both, gs-pulse 400ms ease-in-out 700ms 1;
  }
}
@keyframes gs-draw { from { stroke-dashoffset: var(--arc-len); } to { stroke-dashoffset: 0; } }
@keyframes gs-pulse { 50% { opacity: 0.55; } }

/* ----------------------------- Two ways band ------------------------------ */

.gs-two-ways {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 720px) { .gs-two-ways { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
.gs-two-ways__card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}
.gs-two-ways__card .gs-btn { margin-top: auto; }

/* ----------------------------- Product cards ------------------------------ */

.gs-shop__intro { margin-top: var(--sp-4); color: var(--fg-muted); }
.gs-shop__grid {
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* two-up mobile (Part 2, §3.3) */
  gap: var(--sp-4);
}
@media (min-width: 900px) { .gs-shop__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }
.gs-shop__note { margin-top: var(--sp-6); color: var(--fg-muted); }

.gs-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
}
.gs-card__art {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg-muted);
  margin-bottom: var(--sp-2);
}
.gs-card__art svg { width: 55%; height: auto; }
.gs-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--body-size);
  line-height: 1.3;
}
.gs-card__size {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--mono-label-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.gs-card__action { margin-top: var(--sp-2); width: 100%; }
@media (max-width: 479px) { .gs-card__action { font-size: var(--small-size); padding-inline: var(--sp-3); } }

/* Out of stock: dim everything except the action, never hide the card */
.gs-card--out .gs-card__art,
.gs-card--out .gs-card__price,
.gs-card--out .gs-card__name,
.gs-card--out .gs-card__size { opacity: 0.6; }

/* -------------------------------- The Index ------------------------------- */

.gs-index__intro { margin-top: var(--sp-4); max-width: 56ch; }
.gs-index__filter {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 420px;
}
.gs-input {
  min-height: 48px;
  padding: 0 var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
}
.gs-input::placeholder { color: var(--fg-muted); }

.gs-index__list {
  margin-top: var(--sp-8);
  columns: 1;
  column-gap: var(--sp-16);
}
@media (min-width: 720px) { .gs-index__list { columns: 2; } }
.gs-index__row {
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
}
.gs-index__name {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-label-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.gs-index__desc { color: var(--fg-muted); font-size: var(--small-size); }
.gs-index__row .gs-chip { margin-left: auto; flex-shrink: 0; }
.gs-index__empty { margin-top: var(--sp-6); }
.gs-index__legend { margin-top: var(--sp-6); color: var(--fg-muted); }

/* ------------------------------- Trust band ------------------------------- */

.gs-trust { background: var(--feature-bg); color: var(--feature-fg); }
.gs-trust .gs-kicker { color: var(--sodium); }
.gs-trust__list {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}
.gs-trust__list li {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.gs-trust__coda { margin-top: var(--sp-10); color: color-mix(in srgb, var(--feature-fg) 70%, transparent); }

/* --------------------------------- Bakery --------------------------------- */

.gs-bakery { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-8); }
@media (min-width: 720px) { .gs-bakery { grid-template-columns: 1fr 1fr; align-items: center; } }
.gs-bakery__copy .gs-heading { margin-top: var(--sp-2); }
.gs-bakery__copy .gs-body { margin-top: var(--sp-3); color: var(--fg-muted); }
.gs-bakery__photo {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  text-align: center;
  padding: var(--pad);
  color: var(--fg-muted);
}

/* ------------------------------ Getting here ------------------------------ */

.gs-here__grid { margin-top: var(--sp-8); display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); }
@media (min-width: 900px) { .gs-here__grid { grid-template-columns: 1.2fr 1fr; gap: var(--sp-16); } }

.gs-here__facts { display: flex; flex-wrap: wrap; gap: var(--sp-6) var(--sp-10); }
.gs-here__facts dd { margin-top: var(--sp-1); }

.gs-here__map {
  margin-top: var(--sp-8);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--fg-muted);
}
.gs-here__map .gs-btn { margin-top: var(--sp-2); }

.gs-hours-table { width: 100%; border-collapse: collapse; }
.gs-hours-table caption { text-align: left; padding-bottom: var(--sp-3); color: var(--fg-muted); }
.gs-hours-table th, .gs-hours-table td {
  text-align: left;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}
.gs-hours-table td { text-align: right; font-size: 1rem; }
.gs-hours-table th { font-weight: 500; }
.gs-hours-table .is-today th,
.gs-hours-table .is-today td { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.gs-hours-table .is-today th { padding-left: var(--sp-2); }
.gs-hours-table .is-today td { padding-right: var(--sp-2); }
.gs-hours-table .gs-chip { margin-left: var(--sp-2); }

/* --------------------------------- Footer --------------------------------- */

.gs-footer { border-top: 1px solid var(--rule); }
.gs-footer__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); }
@media (min-width: 720px) { .gs-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .gs-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-12); } }
.gs-footer__links { margin-top: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); }
.gs-footer__links a { text-decoration: none; }
.gs-footer__links a:hover { text-decoration: underline; }
.gs-footer__col .gs-theme-toggle { margin-top: var(--sp-5); }
.gs-footer__mark { font-size: 1.1rem; }
.gs-footer__place { margin-top: var(--sp-2); color: var(--fg-muted); }
.gs-footer__phone { text-decoration: none; }
.gs-footer__grid p + p { margin-top: var(--sp-3); }
.gs-footer__muted { color: var(--fg-muted); }
.gs-theme-toggle { display: none; margin-top: var(--sp-4); }
html.js .gs-theme-toggle { display: inline-flex; }

/* ---------------------------- Sticky call bar ----------------------------- */

.gs-callbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
}
.gs-callbar.is-visible { transform: translateY(0); }
.gs-callbar a {
  background: var(--bg);
  color: var(--fg);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
@media (max-width: 767px) { html.js .gs-callbar { display: grid; } }

/* ------------------------- Commerce: sale price --------------------------- */

/* --sale is the only red on the site and means one thing: reduced price. */
.gs-tag--sale { background: var(--sale); color: #FFFFFF; }
.gs-card__was {
  font-family: var(--font-mono);
  font-size: var(--small-size);
  color: var(--fg-muted);
  margin-left: var(--sp-2);
}
.gs-shop__more { margin-top: var(--sp-6); }

/* ------------------------------ Page heads -------------------------------- */

.gs-band--head { padding-block: var(--sp-14) var(--sp-8); }
.gs-page-intro { margin-top: var(--sp-4); max-width: 60ch; }
.gs-prose { max-width: 720px; }
.gs-prose .gs-heading { margin-top: var(--sp-2); }
.gs-prose .gs-body + .gs-body { margin-top: var(--sp-4); }
.gs-prose .gs-body { margin-top: var(--sp-4); }

/* ------------------------------ Shop catalogue ---------------------------- */

.gs-catalogue { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-8); padding-bottom: var(--band-pad); }
@media (min-width: 900px) {
  .gs-catalogue { grid-template-columns: 200px 1fr; gap: var(--sp-16); }
}
.gs-catalogue__side-label { margin-bottom: var(--sp-2); color: var(--fg-muted); }
.gs-catnav { display: flex; gap: var(--sp-2); overflow-x: auto; }
.gs-catnav a {
  text-decoration: none;
  color: var(--fg);
  font-size: var(--small-size);
  font-weight: 500;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: var(--sp-2) var(--sp-4);
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 900px) {
  .gs-catalogue__side { position: sticky; top: calc(var(--header-h) + var(--sp-4)); align-self: start; }
  .gs-catnav { flex-direction: column; align-items: stretch; overflow: visible; }
  .gs-catnav a { border: none; border-left: 2px solid var(--rule); border-radius: 0; padding: var(--sp-2) var(--sp-4); }
  .gs-catnav a:hover { border-left-color: var(--accent); }
}
.gs-catalogue__group { padding-top: var(--sp-8); }
.gs-catalogue__group h2 { margin-bottom: var(--sp-4); }
.gs-catalogue__group { scroll-margin-top: calc(var(--header-h) + var(--sp-4)); }

/* -------------------------------- About ----------------------------------- */

.gs-steps {
  margin: 0;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.gs-steps li::marker {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--fg-muted);
}

/* ------------------------------- Contact ----------------------------------- */

.gs-bigtaps { margin-top: var(--sp-8); display: grid; gap: var(--sp-4); }
@media (min-width: 720px) { .gs-bigtaps { grid-template-columns: repeat(3, 1fr); } }
.gs-bigtap {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: var(--fg);
}
.gs-bigtap .gs-kicker { color: var(--fg-muted); }

.gs-table-scroll { overflow-x: auto; margin-top: var(--sp-6); }
.gs-zones { width: 100%; min-width: 480px; border-collapse: collapse; }
.gs-zones th, .gs-zones td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}
.gs-zones thead th { color: var(--fg-muted); }

.gs-form { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
.gs-form .gs-input { width: 100%; max-width: 480px; }
.gs-form label { margin-top: var(--sp-3); }
.gs-form .gs-btn { margin-top: var(--sp-4); }
.gs-input--area { min-height: 120px; padding: var(--sp-3) var(--sp-4); resize: vertical; }

.gs-footer__nav { margin-top: var(--sp-3); }
.gs-footer__tagline { color: var(--fg-muted); font-size: 1.5rem; margin-top: var(--sp-2); }
.gs-footer__mark .gs-brand__market::before,
.gs-footer__mark .gs-brand__market::after { min-width: 14px; flex: none; }

/* Sub-footer: legal line, payment methods, hosting credit */
.gs-subfooter { border-top: 1px solid var(--rule); background: var(--surface); }
.gs-subfooter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-6);
  padding-block: var(--sp-5);
  color: var(--fg-muted);
}
.gs-subfooter__pay { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ------------------------------ Cart drawer ------------------------------- */

.gs-drawer { position: fixed; inset: 0; z-index: 30; }
.gs-drawer__overlay {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--lot) 55%, transparent);
}
.gs-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--rule);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow-y: auto;
}
.gs-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }
.gs-drawer__items { display: flex; flex-direction: column; }
.gs-drawer__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
}
.gs-drawer__item-name { flex: 1; font-weight: 500; }
.gs-drawer__item-name .gs-card__size { display: block; }
.gs-drawer__item-total { font-size: 1rem; min-width: 5.5em; text-align: right; }
.gs-drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.gs-drawer__row { display: flex; justify-content: space-between; gap: var(--sp-4); }
.gs-drawer__row--total { border-top: 1px solid var(--rule); padding-top: var(--sp-3); font-weight: 600; }
.gs-drawer__min { color: var(--fg-muted); }
.gs-drawer__checkout { width: 100%; }

/* ------------------------------- Stepper ---------------------------------- */

.gs-stepper { display: inline-flex; align-items: center; gap: var(--sp-2); }
.gs-stepper__btn {
  width: 48px; height: 48px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font-size: 1.25rem;
  cursor: pointer;
}
.gs-stepper__btn:active { transform: translateY(1px); }
.gs-stepper--small .gs-stepper__btn { width: 36px; height: 36px; font-size: 1rem; }
.gs-stepper__qty {
  width: 64px; height: 48px;
  text-align: center;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: var(--mono-data-size);
}

/* ----------------------------- Product page ------------------------------- */

.gs-crumb { text-transform: none; letter-spacing: 0.04em; }
.gs-product { margin-top: var(--sp-8); display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-8); }
@media (min-width: 720px) { .gs-product { grid-template-columns: minmax(0, 420px) 1fr; gap: var(--sp-16); } }
.gs-product__art { aspect-ratio: 1; max-width: 420px; }
.gs-product__name { font-size: 1.75rem; }
.gs-product__price { margin-top: var(--sp-3); display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.gs-product__desc { margin-top: var(--sp-4); max-width: 52ch; }
.gs-product__info > p + p { margin-top: var(--sp-3); }
.gs-product__buy { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.gs-product__ask { margin-top: var(--sp-4); color: var(--fg-muted); }

/* ------------------------------- Checkout --------------------------------- */

.gs-checkout { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); padding-bottom: var(--band-pad); }
@media (min-width: 900px) { .gs-checkout { grid-template-columns: 1fr 380px; gap: var(--sp-16); align-items: start; } }
.gs-checkout__form { display: flex; flex-direction: column; gap: var(--sp-8); }
.gs-block { border: 1px solid var(--rule); border-radius: var(--radius); background: var(--surface); padding: var(--pad); }
.gs-block .gs-input, .gs-block select.gs-input { width: 100%; max-width: 420px; display: block; }
.gs-block label { display: block; margin-top: var(--sp-4); margin-bottom: var(--sp-2); }
.gs-block__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-right: var(--sp-2);
  vertical-align: 2px;
}
.gs-checkout__submit:disabled { background: var(--concrete); color: var(--ink); cursor: not-allowed; transform: none; }
.gs-checkout__summary {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
}
@media (min-width: 900px) { .gs-checkout__summary { position: sticky; top: calc(var(--header-h) + var(--sp-4)); } }
.gs-checkout__summary .gs-drawer__row { margin-top: var(--sp-3); }

.gs-choicecards { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.gs-choicecard {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--sp-4);
  cursor: pointer;
}
.gs-choicecard:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.gs-choicecard input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.gs-choicecard__body { display: flex; flex-direction: column; gap: var(--sp-1); }
.gs-choicecard__title { font-weight: 600; }

/* ------------------------- Status track & account ------------------------- */

.gs-status-track {
  margin: var(--sp-8) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.gs-status-track li {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--mono-label-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  clip-path: var(--notch);
  padding: var(--sp-2) var(--sp-3) var(--sp-2) 14px;
  color: var(--fg-muted);
}
.gs-status-track li.is-done { background: var(--accent); border-color: transparent; color: var(--on-accent); }
.gs-status-track li.is-now { border-color: var(--warn); background: color-mix(in srgb, var(--warn) 25%, transparent); color: var(--fg); }

/* Tracking timeline */
.gs-timeline { list-style: none; margin: var(--sp-8) 0 0; padding: 0; }
.gs-timeline li {
  position: relative;
  padding: 0 0 var(--sp-6) var(--sp-8);
  border-left: 2px solid var(--rule);
  margin-left: 8px;
}
.gs-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.gs-timeline li::before {
  content: "";
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--rule);
  border: 3px solid var(--bg);
}
.gs-timeline li.is-done::before { background: var(--accent); }
.gs-timeline li.is-now::before { background: var(--warn); }
.gs-timeline .gs-small { margin-top: 2px; }

/* Lists manager */
.gs-lists__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; }
.gs-lists__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.gs-listnew { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); flex-wrap: wrap; }
.gs-listnew .gs-input { flex: 1; min-width: 220px; max-width: 420px; }
.gs-listeditor {
  margin-top: var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.gs-listeditor__item { display: flex; align-items: center; gap: var(--sp-3); }
.gs-listeditor__item-name { flex: 1; }
.gs-listeditor__add { display: flex; gap: var(--sp-2); flex-wrap: wrap; align-items: center; padding-top: var(--sp-3); border-top: 1px solid var(--rule); }
.gs-listeditor__add select { max-width: 260px; }
.gs-listeditor__rename { max-width: 300px; }
.gs-iconx {
  border: none; background: transparent; color: var(--fg-muted);
  width: 36px; height: 36px; border-radius: var(--radius);
  font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
}
.gs-iconx:hover { color: var(--sale); }
.gs-status-track--compact { margin-top: var(--sp-4); }

.gs-ordercard {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--sp-4);
}
.gs-ordercard__actions { display: flex; gap: var(--sp-2); }

.gs-again { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: var(--sp-4) 0 var(--sp-6); }
.gs-again__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: var(--sp-2) var(--sp-4);
  min-height: 48px;
  cursor: pointer;
  font-weight: 500;
}
.gs-again__chip:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.gs-again__chip input { width: 18px; height: 18px; accent-color: var(--accent); }

.gs-lists { margin-top: var(--sp-4); }
.gs-lists__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--rule);
}

.gs-confirm__account {
  margin-top: var(--sp-10);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
}
.gs-confirm__account .gs-body { margin-top: var(--sp-2); }
.gs-confirm__account p:last-child { margin-top: var(--sp-4); display: flex; gap: var(--sp-3); flex-wrap: wrap; }

.gs-card__artlink { display: block; width: 100%; }
.gs-card__namelink { color: inherit; text-decoration: none; }
.gs-card__namelink:hover { text-decoration: underline; }

/* ----------------------------- The gas counter ---------------------------- */

.gs-gas__row {
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  max-width: 640px;
}
@media (max-width: 479px) {
  .gs-gas__row { gap: var(--sp-2); }
  .gs-gas__opt { padding-inline: var(--sp-2); }
  .gs-gas__opt .gs-tag { font-size: 0.9375rem; padding: var(--sp-1) var(--sp-2) var(--sp-1) 12px; }
}
.gs-gas__opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  font-family: inherit;
}
.gs-gas__opt.is-active { border-color: var(--accent); box-shadow: inset 0 0 0 2px var(--accent); }
.gs-gas__cyl { display: flex; align-items: flex-end; height: 80px; color: var(--fg-muted); }
.gs-gas__cyl svg { height: var(--cyl-h); width: auto; }
.gs-gas__opt.is-active .gs-gas__cyl { color: var(--fg); }
.gs-gas__size { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.gs-gas__note { color: var(--fg-muted); text-align: center; }
.gs-gas__cta { margin-top: var(--sp-6); display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

/* --------------------------- Delivery checker ----------------------------- */

.gs-checker {
  margin-top: var(--sp-8);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--pad);
  max-width: 560px;
}
.gs-checker__select { margin-top: var(--sp-3); width: 100%; }
.gs-checker__out { margin-top: var(--sp-4); }

/* --------------------------- Trust band + shopfront ----------------------- */

.gs-trust__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); align-items: center; }
@media (min-width: 900px) { .gs-trust__grid { grid-template-columns: 1.1fr 1fr; gap: var(--sp-16); } }
.gs-shopfront { width: 100%; height: auto; }
@media (prefers-reduced-motion: no-preference) {
  .gs-shopfront__glow { animation: gs-glow 4s ease-in-out infinite; }
}
@keyframes gs-glow { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.6; } }

/* --------------------------- Bakery freshness ----------------------------- */

.gs-bakery__headline { font-size: 2.25rem; }
.gs-fresh { margin-top: var(--sp-6); max-width: 380px; }
.gs-fresh__bar {
  margin-top: var(--sp-3);
  height: 10px;
  border-radius: 999px;
  background: var(--rule);
  overflow: hidden;
}
.gs-fresh__fill {
  display: block;
  height: 100%;
  width: var(--fresh);
  border-radius: 999px;
  background: var(--accent);
}
@media (prefers-reduced-motion: no-preference) {
  .gs-fresh__fill { animation: gs-fill 700ms ease-out both; }
}
@keyframes gs-fill { from { width: 0; } }
.gs-fresh__label { margin-top: var(--sp-2); color: var(--fg-muted); }

/* ---------------------- Category icons & cart feedback -------------------- */

.gs-catnav__icon { display: inline-flex; width: 18px; height: 18px; margin-right: var(--sp-2); color: var(--fg-muted); }
.gs-catnav__icon svg { width: 100%; height: 100%; }
.gs-catnav a { align-items: center; }

.gs-add.is-added { background: var(--open); color: #FFFFFF; }
@media (prefers-reduced-motion: no-preference) {
  .gs-iconbtn__badge.gs-pop { animation: gs-pop 400ms ease-out; }
}
@keyframes gs-pop { 40% { transform: scale(1.45); } }

/* ------------------------------ Legal pages ------------------------------- */

.gs-legal { padding-bottom: var(--band-pad); }
.gs-legal .gs-heading { margin-top: var(--sp-10); }
.gs-legal .gs-body, .gs-legal ul, .gs-legal ol { margin-top: var(--sp-3); max-width: 68ch; }
.gs-legal ul, .gs-legal ol { padding-left: 1.4em; }
.gs-legal li { margin-top: var(--sp-2); line-height: 1.6; }
.gs-legal ul li { list-style: disc; }
.gs-draft {
  margin-top: var(--sp-6);
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  padding: var(--sp-4);
  color: var(--fg-muted);
  max-width: 68ch;
}
.gs-subfooter__legal { max-width: 100%; }

/* --------------------------- WhatsApp bubble ------------------------------ */

.gs-wa {
  position: fixed;
  right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}
@media (max-width: 767px) { .gs-wa { bottom: calc(64px + env(safe-area-inset-bottom)); } }
.gs-wa__bubble {
  width: 56px; height: 56px;
  border: none;
  border-radius: 50%;
  background: #25D366;             /* WhatsApp platform green — recognition matters */
  color: #FFFFFF;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gs-wa__bubble svg { width: 30px; height: 30px; }
.gs-wa__bubble:active { transform: translateY(1px); }
.gs-wa__panel {
  width: min(300px, 86vw);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.gs-wa__head { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.gs-wa__msg {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 12px 12px 12px 4px;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--small-size);
}

/* -------------------------- Social-proof toast ---------------------------- */

.gs-toast {
  position: fixed;
  left: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 24;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  width: min(320px, 84vw);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
}
@media (max-width: 767px) { .gs-toast { bottom: calc(64px + env(safe-area-inset-bottom)); } }
@media (prefers-reduced-motion: no-preference) {
  .gs-toast.is-in { animation: gs-toast-in 300ms ease-out; }
}
@keyframes gs-toast-in { from { transform: translateY(12px); opacity: 0; } }
.gs-toast__icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.gs-toast__text { font-size: var(--small-size); line-height: 1.45; }
.gs-toast__time { color: var(--fg-muted); font-size: 0.75rem; }
.gs-toast__close {
  border: none; background: transparent; color: var(--fg-muted);
  font-size: 1.1rem; cursor: pointer; width: 28px; height: 28px;
  flex-shrink: 0; margin: -4px -6px 0 auto;
}
