/* FLOWi Gastro Widget — token themes (structure/flow unchanged) */
:root,
html[data-g-theme="premium_dark_gold"] {
  --g-bg: #0b0d14;
  --g-surface: #12151f;
  --g-surface-2: #171b28;
  --g-border: #242938;
  --g-text: #f4f5f9;
  --g-muted: #9297a8;
  --g-faint: #585d6e;
  --g-accent: #d4a54a;
  --g-accent-ink: #1a1406;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 0.75rem;
}

html[data-g-theme="warm_bistro"] {
  --g-bg: #1c130d;
  --g-surface: #271a12;
  --g-surface-2: #33231a;
  --g-border: #4a3624;
  --g-text: #f8ecdc;
  --g-muted: #c2a98d;
  --g-faint: #8a6e51;
  --g-accent: #e08a3c;
  --g-accent-ink: #1a0f06;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 1.1rem;
}

html[data-g-theme="light_clean"] {
  --g-bg: #faf9f6;
  --g-surface: #ffffff;
  --g-surface-2: #f2f0ea;
  --g-border: #e4e1d8;
  --g-text: #1c1c1a;
  --g-muted: #6b6a63;
  --g-faint: #9d9b91;
  --g-accent: #2f6b4f;
  --g-accent-ink: #ffffff;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 0.6rem;
}

html[data-g-theme="wine_elegant"] {
  --g-bg: #150a0d;
  --g-surface: #1f1013;
  --g-surface-2: #291619;
  --g-border: #3a1f23;
  --g-text: #f5ecec;
  --g-muted: #ab9195;
  --g-faint: #6e5b5e;
  --g-accent: #a8455a;
  --g-accent-ink: #fbeef0;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 0.5rem;
}

html[data-g-theme="modern_minimal"] {
  --g-bg: #faf9f7;
  --g-surface: #ffffff;
  --g-surface-2: #f1efe9;
  --g-border: #e3e0d7;
  --g-text: #15161a;
  --g-muted: #63656d;
  --g-faint: #9b9c9f;
  --g-accent: #1451e0;
  --g-accent-ink: #ffffff;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Outfit", -apple-system, system-ui, sans-serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 0rem;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--g-bg); color: var(--g-text);
  font-family: var(--g-font); line-height: 1.5; min-height: 100%;
}
body.g-theme-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body.g-theme-image::before {
  content: "";
  position: fixed; inset: 0;
  background: color-mix(in srgb, var(--g-bg) 78%, transparent);
  pointer-events: none; z-index: 0;
}
.g-app { position: relative; z-index: 1; }
button, input, textarea, select { font: inherit; }
.hidden { display: none !important; }

.g-wrap { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; }

/* —— Header —— */
.g-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--g-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--g-border);
}
.g-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.1rem; min-height: 4.25rem; flex-wrap: wrap; padding: 0.85rem 0;
}
.g-brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; flex: 1; }
.g-mark, .g-mark img {
  width: 2.4rem; height: 2.4rem; border-radius: calc(var(--g-radius) * 0.87);
  background: var(--g-surface-2); border: 1px solid var(--g-border);
  display: grid; place-items: center; color: var(--g-accent); flex-shrink: 0; object-fit: cover;
}
.g-mark { overflow: hidden; padding: 0; font-size: 1rem; }
.g-mark img { border: 0; }
.g-name {
  font-family: var(--g-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.01em; line-height: 1.2;
}
.g-sub { font-size: 0.72rem; color: var(--g-muted); }

.g-nav-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.g-nav { display: flex; gap: 1.1rem; align-items: center; }
.g-nav button {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--g-muted); padding: 0.45rem 0; cursor: pointer;
  font-size: 0.84rem; font-weight: 600;
}
.g-nav button.active { color: var(--g-text); border-bottom-color: var(--g-accent); }
.g-nav button:hover { color: var(--g-text); }
.g-nav-cta {
  background: var(--g-accent); color: var(--g-accent-ink); border: none;
  padding: 0.55rem 1.1rem; border-radius: calc(var(--g-radius) * 0.67);
  font-size: 0.8rem; font-weight: 700; cursor: pointer; font-family: inherit;
}
.g-nav-cta:hover { opacity: 0.92; }

/* —— Hero —— */
.g-main { padding: 0 0 3.5rem; }
.g-panel { display: none; }
.g-panel.active { display: block; }
.g-hero { padding: 2.5rem 0 0.4rem; }
.g-hero-eyebrow {
  font-family: var(--g-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--g-accent); margin: 0 0 0.85rem;
}
.g-hero h1 {
  font-family: var(--g-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 0.6rem; letter-spacing: -0.01em;
}
.g-hero-sub, .g-muted { color: var(--g-muted); font-size: 0.9rem; line-height: 1.55; max-width: 56ch; margin: 0; }

.g-reserve-hero { padding-top: 2rem; margin-bottom: 0.25rem; }
.g-reserve-hero h2 {
  font-family: var(--g-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 1.7rem);
  margin: 0;
}
.g-reserve-wrap { max-width: 40rem; }
.g-reserve-form { margin-top: 1.4rem; }
.g-field-label {
  font-size: 0.75rem; color: var(--g-muted); margin: 0 0 0.5rem; font-weight: 600;
}
.g-guest-stepper {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: var(--g-radius);
  padding: 0.6rem 0.95rem; width: fit-content; margin: 0 0 1.5rem;
}
.g-guest-stepper button {
  width: 1.9rem; height: 1.9rem; border-radius: calc(var(--g-radius) * 0.67);
  border: 1px solid var(--g-border); background: var(--g-surface-2); color: var(--g-muted);
  font-size: 0.95rem; cursor: pointer; display: grid; place-items: center; padding: 0;
}
.g-guest-stepper button:hover { color: var(--g-text); border-color: var(--g-accent); }
.g-guest-count { font-family: var(--g-mono); font-size: 1rem; min-width: 0.9rem; text-align: center; }
.g-guest-unit { font-size: 0.78rem; color: var(--g-faint); }

.g-day-row {
  display: flex; gap: 0.55rem; overflow-x: auto; padding-bottom: 0.35rem;
  margin-bottom: 1.35rem; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.g-day-row::-webkit-scrollbar { display: none; }
.g-day-chip {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: var(--g-radius);
  padding: 0.6rem 0.95rem; cursor: pointer; min-width: 4rem;
}
.g-day-chip .g-dname { font-size: 0.68rem; color: var(--g-muted); font-weight: 600; }
.g-day-chip .g-dnum { font-family: var(--g-display); font-size: 1rem; font-weight: 600; }
.g-day-chip.sel { border-color: var(--g-accent); background: color-mix(in srgb, var(--g-accent) 10%, transparent); }
.g-day-chip.sel .g-dname { color: var(--g-accent); }

.g-time-panels { margin-bottom: 0.5rem; }
.g-time-section { margin-bottom: 1.15rem; }
.g-time-section-label {
  font-family: var(--g-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--g-faint); margin: 0 0 0.6rem;
}
.g-time-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
@media (max-width: 420px) {
  .g-time-grid { grid-template-columns: repeat(3, 1fr); }
}
.g-time-slot {
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.73);
  padding: 0.6rem 0.25rem; text-align: center;
  font-family: var(--g-mono); font-size: 0.82rem; color: var(--g-muted); cursor: pointer;
}
.g-time-slot.sel {
  background: var(--g-accent); border-color: var(--g-accent);
  color: var(--g-accent-ink); font-weight: 600;
}
.g-time-slot.full { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }

.g-selection-echo {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
  background: var(--g-surface-2); border: 1px solid var(--g-border);
  border-radius: calc(var(--g-radius) * 0.87); padding: 0.7rem 0.95rem; font-size: 0.82rem;
  margin: 0.85rem 0 1.35rem; color: var(--g-muted);
}
.g-selection-echo b { color: var(--g-text); font-weight: 700; }

.g-form-field { margin-bottom: 0.95rem; }
.g-form-field label {
  display: block; font-size: 0.75rem; color: var(--g-muted); margin-bottom: 0.4rem; font-weight: 600;
}
.g-form-field input,
.g-form-field textarea {
  width: 100%; box-sizing: border-box;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.87);
  color: var(--g-text); padding: 0.75rem 0.85rem; font-size: 0.9rem; outline: none;
}
.g-form-field input:focus,
.g-form-field textarea:focus { border-color: var(--g-accent); }
.g-form-field textarea { resize: vertical; min-height: 4.2rem; }
.g-check-row {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.78rem; color: var(--g-muted); margin: 1.1rem 0 1.2rem; cursor: pointer;
}
.g-check-row input {
  margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--g-accent); width: auto;
}
.g-reserve-submit { width: 100%; box-sizing: border-box; padding: 0.95rem 1rem; font-size: 0.9rem; }

/* —— Choice gates —— */
.g-choice-gate { margin-top: 1.75rem; max-width: 47.5rem; }
.g-choice-label {
  font-size: 0.82rem; font-weight: 600; color: var(--g-text); margin: 0 0 0.25rem;
}
.g-choice-sub {
  font-size: 0.78rem; color: var(--g-faint); margin: 0 0 1.1rem;
}
.g-choice-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
}
@media (max-width: 520px) {
  .g-choice-grid { grid-template-columns: 1fr; }
}
.g-choice-card {
  position: relative; text-align: left; width: 100%;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 1.2);
  padding: 1.35rem 1.35rem 1.2rem; cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
  color: inherit; font: inherit;
}
.g-choice-card:hover {
  border-color: var(--g-accent); transform: translateY(-1px);
}
.g-choice-card .g-c-arrow {
  position: absolute; top: 1.35rem; right: 1.2rem;
  color: var(--g-faint); font-size: 0.9rem;
  transition: transform 0.15s ease, color 0.15s ease;
}
.g-choice-card:hover .g-c-arrow { color: var(--g-accent); transform: translateX(3px); }
.g-choice-card .g-c-icon {
  width: 1.9rem; height: 1.9rem; margin-bottom: 1.1rem; color: var(--g-muted);
  transition: color 0.15s ease;
}
.g-choice-card .g-c-icon svg {
  width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4;
}
.g-choice-card:hover .g-c-icon { color: var(--g-accent); }
.g-choice-card h4 {
  font-family: var(--g-display); font-size: 1.02rem; font-weight: 600;
  margin: 0 0 0.3rem;
}
.g-choice-card p {
  font-size: 0.78rem; color: var(--g-muted); margin: 0; line-height: 1.5;
}
.g-choice-card .g-c-meta {
  margin-top: 0.85rem; font-family: var(--g-mono); font-size: 0.68rem;
  color: var(--g-accent); letter-spacing: 0.02em;
}

/* —— Orders lock (mode gate) —— */
.g-orders-lock {
  margin: 0 0 0.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--g-border);
  border-radius: calc(var(--g-radius) * 1.2);
  background: var(--g-surface);
  text-align: center;
  max-width: 28rem;
}
.g-orders-lock.hidden { display: none !important; }
.g-orders-lock-icon {
  width: 2.75rem; height: 2.75rem; margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--g-accent) 14%, transparent);
  color: var(--g-accent); font-size: 1.25rem;
}
.g-orders-lock-title {
  margin: 0 0 0.55rem;
  font-family: var(--g-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--g-text);
}
.g-orders-lock-msg {
  margin: 0;
  font-size: 0.9rem; line-height: 1.55;
  color: var(--g-muted);
}
#gModeGateOpen.hidden { display: none !important; }

html[data-g-theme="cream_classic"] .g-orders-lock {
  background: var(--g-surface);
  border-color: var(--g-border);
  box-shadow: 0 8px 24px rgba(33, 27, 20, 0.06);
}
html[data-g-theme="wine_elegant"] .g-orders-lock,
html[data-g-theme="modern_minimal"] .g-orders-lock,
html[data-g-theme="split_editorial"] .g-orders-lock {
  border-radius: 0;
}
html[data-g-theme="warm_bistro"] .g-orders-lock {
  border-width: 2px;
}

/* legacy aliases kept for safety */
.g-mode-gate { margin-top: 1.75rem; }
.g-mode-gate h2 { display: none; }

.g-weekly-panel { margin-bottom: 0.5rem; }
.g-weekly-head {
  display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
  margin-bottom: 0.85rem; padding: 0.95rem 1.05rem;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 1.2);
}
.g-weekly-head strong { display: block; font-family: var(--g-display); font-size: 1.05rem; font-weight: 600; }
.g-weekly-price { font-family: var(--g-mono); font-weight: 500; color: var(--g-accent); white-space: nowrap; }
.g-weekly-soup {
  margin: 0 0 0.75rem; padding: 0.7rem 0.9rem; border-radius: calc(var(--g-radius) * 0.87);
  background: var(--g-surface-2); border: 1px solid var(--g-border); font-size: 0.85rem; color: var(--g-muted);
}
.g-weekly-soup strong { color: var(--g-text); }
.g-dish.is-sold-out { opacity: 0.5; }
.g-dish.is-sold-out .g-add { display: none; }
.g-sold-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--g-accent); border: 1px solid color-mix(in srgb, var(--g-accent) 40%, transparent);
  border-radius: calc(var(--g-radius) * 0.53); padding: 0.2rem 0.5rem;
}

/* —— Layout —— */
.g-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.1rem;
  align-items: start;
  margin-top: 0.5rem;
}
.g-order-main { min-width: 0; }
.g-mode-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.87);
  padding: 0.55rem 0.85rem; margin: 1.4rem 0 1.6rem; font-size: 0.82rem;
}
.g-mode-chip button {
  border: 0; background: transparent; color: var(--g-accent);
  padding: 0; cursor: pointer; font-size: 0.82rem; font-weight: 700; margin-left: 0.15rem;
}

/* —— Categories —— */
.g-strip {
  display: flex; gap: 1.4rem; overflow-x: auto;
  border-bottom: 1px solid var(--g-border); margin-bottom: 1.4rem; padding: 0 0 1px;
  -webkit-overflow-scrolling: touch;
}
.g-strip::-webkit-scrollbar { height: 0; }
.g-cats button {
  flex: 0 0 auto; background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--g-faint); padding: 0.6rem 0.1rem 0.7rem; cursor: pointer;
  font-size: 0.84rem; font-weight: 600; white-space: nowrap;
}
.g-cats button.active { color: var(--g-text); border-bottom-color: var(--g-accent); }
.g-cats button:hover { color: var(--g-text); }

/* —— Menu list / dishes —— */
.g-menu-list {
  display: flex; flex-direction: column; gap: 0;
  /* Prefer page scroll — nested overflow caused choppy “click to scroll” */
  max-height: none;
  overflow: visible;
}
.g-weekly-list { gap: 0; }

/* Weekly mains: title + soup note stack; price/+ stay in a fixed side column */
.g-weekly-list .g-dish--weekly {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}
.g-weekly-list .g-dish--weekly .g-dish-body {
  grid-column: 1;
  min-width: 0;
}
.g-weekly-list .g-dish--weekly .g-dish-body h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.g-weekly-list .g-dish--weekly .g-dish-body p {
  max-width: none;
}
.g-weekly-list .g-dish--weekly .g-dish-foot,
.g-weekly-list .g-dish--weekly .g-dish-actions {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  flex-shrink: 0;
}

.g-dish {
  flex: 0 0 auto; width: 100%; box-sizing: border-box;
  background: transparent; border: 0; border-bottom: 1px solid var(--g-border);
  border-radius: 0; padding: 1.2rem 0.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1.2rem; row-gap: 0.3rem;
  align-items: start; position: relative;
}
.g-dish-media { display: none; }
.g-dish-body {
  grid-column: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.g-dish::before {
  content: ""; position: absolute; left: -0.25rem; top: 0.85rem; bottom: 0.85rem; width: 2px;
  background: var(--g-accent); opacity: 0; transition: opacity 0.15s ease;
}
.g-dish:hover::before { opacity: 1; }
.g-dish h3 {
  margin: 0; font-family: var(--g-display); font-size: 1.02rem; font-weight: 600;
  line-height: 1.3; letter-spacing: -0.01em;
}
.g-dish .g-tags { }
.g-dish p { margin: 0; color: var(--g-muted); font-size: 0.8rem; line-height: 1.55; max-width: 52ch; }
.g-dish .g-allergens { }
.g-allergens {
  font-size: 0.72rem; line-height: 1.4; color: var(--g-faint); font-style: italic; margin-top: 0.15rem;
}
.g-allergens-label { color: var(--g-muted); font-weight: 500; font-style: normal; margin-right: 0.2rem; }
.g-dish-foot {
  grid-column: 2; grid-row: 1 / span 4;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start;
  gap: 0.7rem; padding-top: 0.1rem;
}
.g-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.35rem; }
.g-tag {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.65rem; font-weight: 600; line-height: 1.2; letter-spacing: 0.02em;
  border-radius: 999px; padding: 0.2rem 0.5rem; border: 1px solid transparent;
}
.g-tag .ti { font-size: 0.7rem; }
.g-tag.badge-chef { background: rgba(248,113,113,.14); color: #fca5a5; border-color: rgba(248,113,113,.35); }
.g-tag.badge-specialty, .g-tag.badge-bestseller { background: rgba(252,211,77,.14); color: #fcd34d; border-color: rgba(252,211,77,.35); }
.g-tag.badge-seasonal { background: rgba(216,180,254,.14); color: #d8b4fe; border-color: rgba(216,180,254,.35); }
.g-tag.badge-craft { background: rgba(231,213,196,.12); color: #e7d5c4; border-color: rgba(231,213,196,.3); }
.g-tag.badge-wood-oven { background: rgba(253,186,116,.14); color: #fdba74; border-color: rgba(253,186,116,.35); }
.g-tag.badge-local, .g-tag.badge-plant { background: rgba(134,239,172,.12); color: #86efac; border-color: rgba(134,239,172,.3); }
.g-tag.badge-veggie { background: rgba(167,243,208,.12); color: #a7f3d0; border-color: rgba(167,243,208,.3); }
.g-tag.badge-gluten-free { background: rgba(254,240,138,.12); color: #fef08a; border-color: rgba(254,240,138,.3); }
.g-tag.badge-lactose-free { background: rgba(186,230,253,.12); color: #bae6fd; border-color: rgba(186,230,253,.3); }
.g-tag.badge-spicy { background: rgba(252,165,165,.14); color: #fca5a5; border-color: rgba(252,165,165,.35); }
.g-tag.badge-kids { background: rgba(254,205,211,.14); color: #fecdd3; border-color: rgba(254,205,211,.35); }
.g-price {
  font-family: var(--g-mono); font-weight: 500; white-space: nowrap; font-size: 0.95rem; color: var(--g-text);
}
.g-add {
  width: 2rem; height: 2rem; border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.67); cursor: pointer;
  background: var(--g-surface); color: var(--g-muted);
  font-size: 1rem; font-weight: 600; line-height: 1;
  display: grid; place-items: center; transition: all 0.15s ease;
}
.g-add:hover {
  background: var(--g-accent); border-color: var(--g-accent); color: var(--g-accent-ink);
}

/* —— Cart —— */
.g-cart-side {
  position: sticky; top: 5.5rem; align-self: start; width: 100%; box-sizing: border-box;
  background: var(--g-surface); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 1.33);
  padding: 1.35rem; display: flex; flex-direction: column; overflow: visible;
}
.g-cart-side.is-filled {
  max-height: calc(100dvh - 7rem);
  overflow: hidden;
}
.g-cart-side h2 {
  margin: 0 0 1rem; font-family: var(--g-display); font-size: 1rem; font-weight: 600; padding: 0;
  flex: 0 0 auto;
}
.g-cart-scroll {
  display: block; overflow: visible; padding: 0; min-height: 0; flex: 1 1 auto;
}
.g-cart-side.is-filled .g-cart-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--g-border) transparent;
}
.g-cart-side.is-filled .g-cart-scroll::-webkit-scrollbar { width: 6px; }
.g-cart-side.is-filled .g-cart-scroll::-webkit-scrollbar-thumb {
  background: var(--g-border); border-radius: 999px;
}
.g-cart-footer {
  margin-top: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--g-border);
  background: var(--g-surface); display: grid; gap: 0.75rem;
  flex: 0 0 auto; z-index: 2; padding-bottom: 0.1rem;
}
.g-cart-footer .g-btn-primary { width: 100%; box-sizing: border-box; }
.g-cart-list { display: grid; gap: 0; margin-bottom: 0.35rem; }
.g-cart-row {
  display: flex; justify-content: space-between; gap: 0.85rem; align-items: flex-start;
  background: transparent; border: 0; border-bottom: 1px solid var(--g-border);
  border-radius: calc(var(--g-radius) * 0.5); padding: 0.75rem 0.35rem; min-width: 0;
  transition: background 0.35s ease;
}
.g-cart-row.is-flash {
  animation: gCartFlash 0.85s ease;
}
@keyframes gCartFlash {
  0% { background: color-mix(in srgb, var(--g-accent) 32%, transparent); }
  100% { background: transparent; }
}
.g-cart-row > div:first-child { min-width: 0; flex: 1 1 auto; }
.g-cart-row > div:first-child strong {
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 0.84rem; font-weight: 600; margin-bottom: 0.15rem;
}
.g-cart-row .g-muted { font-size: 0.75rem; }
.g-cart-row > div:last-child { flex: 0 0 auto; display: flex; gap: 0.35rem; align-items: center; }
.g-cart-row button {
  width: 1.25rem; height: 1.25rem; border-radius: calc(var(--g-radius) * 0.4);
  border: 1px solid var(--g-border); background: var(--g-surface-2); color: var(--g-muted);
  cursor: pointer; font-size: 0.7rem; padding: 0; display: grid; place-items: center;
}
.g-cart-row button[data-rm] { border: 0; background: transparent; color: #f87171; width: auto; height: auto; }
.g-empty { color: var(--g-muted); padding: 0.35rem 0 0.75rem; font-size: 0.85rem; }

/* Add-to-cart confirmation toast */
.g-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 1.75rem;
  z-index: 80;
  transform: translateX(-50%) translateY(0.6rem);
  opacity: 0;
  pointer-events: none;
  background: var(--g-surface);
  color: var(--g-text);
  border: 1px solid var(--g-border);
  border-radius: calc(var(--g-radius) * 1.1);
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: opacity 0.22s ease, transform 0.25s ease;
  max-width: min(22rem, calc(100vw - 2rem));
  text-align: center;
}
.g-cart-toast strong { color: var(--g-accent); font-weight: 700; }
.g-cart-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
html[data-g-theme="warm_bistro"] .g-cart-toast { bottom: 6.5rem; }
html[data-g-theme="light_clean"] .g-cart-toast,
html[data-g-theme="modern_minimal"] .g-cart-toast {
  border-color: color-mix(in srgb, var(--g-accent) 35%, var(--g-border));
}

/* —— Forms —— */
.g-form { display: grid; gap: 0.75rem; }
.g-form-narrow { max-width: 34rem; margin-top: 0.75rem; }
.g-form label { display: grid; gap: 0.3rem; font-size: 0.78rem; color: var(--g-muted); }
.g-form input, .g-form textarea, .g-form select {
  background: var(--g-bg); border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.73);
  color: var(--g-text); padding: 0.7rem 0.8rem; outline: none; width: 100%; box-sizing: border-box;
}
.g-form input[type="radio"],
.g-form input[type="checkbox"] {
  width: auto; min-width: 1rem; height: auto; padding: 0; margin: 0;
  flex-shrink: 0; accent-color: var(--g-accent);
}
.g-form input:focus, .g-form textarea:focus, .g-form select:focus { border-color: var(--g-accent); }
.g-form select { cursor: pointer; }
.g-fee-hint { margin: 0; font-size: 0.78rem; color: var(--g-muted); }
.g-fee-hint strong { color: var(--g-text); }
.g-total-breakdown { display: grid; gap: 0.25rem; font-size: 0.85rem; color: var(--g-muted); margin: 0; }
.g-total-breakdown .g-total { color: var(--g-text); font-size: 0.95rem; }
.g-total { font-size: 0.95rem; }
.g-total strong {
  font-family: var(--g-display); font-size: 1.2rem; color: var(--g-accent); font-weight: 600;
}
.g-segment { border: 1px solid var(--g-border); border-radius: calc(var(--g-radius) * 0.87); padding: 0.7rem 0.85rem; margin: 0; }
.g-segment legend { padding: 0 0.3rem; color: var(--g-muted); font-size: 0.75rem; }
.g-pay-options { display: grid; gap: 0.35rem; }
.g-radio,
.g-check {
  display: flex !important; flex-direction: row !important;
  align-items: center !important; justify-content: flex-start !important;
  gap: 0.55rem !important; width: 100%; margin: 0.15rem 0;
  color: var(--g-text); font-size: 0.85rem; cursor: pointer;
}
.g-btn-primary, .g-btn-secondary {
  border: 0; border-radius: calc(var(--g-radius) * 0.87); padding: 0.85rem 1rem; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.g-btn-primary { background: var(--g-accent); color: var(--g-accent-ink); }
.g-btn-primary:hover { opacity: 0.92; }
.g-btn-secondary {
  background: var(--g-surface-2); color: var(--g-text); border: 1px solid var(--g-border);
}
.g-msg { font-size: 0.85rem; margin: 0.5rem 0 0; }
.g-msg.ok { color: #34d399; }
.g-msg.err { color: #f87171; }

.g-jump-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.15rem 0 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: calc(var(--g-radius) * 0.9);
  border: 1px solid var(--g-border);
  background: var(--g-surface);
  color: var(--g-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
.g-jump-cart:hover {
  border-color: color-mix(in srgb, var(--g-accent) 55%, var(--g-border));
  color: var(--g-accent);
}
.g-jump-cart.hidden { display: none !important; }

.g-order-success {
  margin: 0 0 1rem;
  padding: 1.15rem 1rem;
  border: 1px solid color-mix(in srgb, #34d399 35%, var(--g-border));
  border-radius: calc(var(--g-radius) * 1.1);
  background: color-mix(in srgb, #34d399 10%, var(--g-surface));
  text-align: center;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}
.g-order-success.hidden { display: none !important; }
.g-order-success-icon {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, #34d399 28%, transparent);
  color: #34d399; font-weight: 700; font-size: 1rem;
}
.g-order-success h3 {
  margin: 0; font-family: var(--g-display); font-size: 1.05rem; font-weight: 600;
}
.g-order-success p { margin: 0; color: var(--g-muted); font-size: 0.84rem; line-height: 1.45; max-width: 28ch; }
.g-order-success-code { font-size: 0.8rem !important; }
.g-order-success-code strong { color: var(--g-text); }
.g-order-success .g-btn-secondary {
  margin-top: 0.35rem;
  width: auto;
  padding: 0.55rem 0.95rem;
  font-size: 0.78rem;
}

/* —— Footer —— */
.g-footer { border-top: 1px solid var(--g-border); padding: 1.5rem 0 2rem; }
.g-footer .g-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.g-footer-contact { font-size: 0.75rem; color: var(--g-faint); }
.g-powered {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.75rem; color: var(--g-muted); text-decoration: none; margin: 0;
}
.g-powered:hover { color: var(--g-text); }
.g-powered img { width: 1.1rem; height: 1.1rem; border-radius: calc(var(--g-radius) * 0.4); object-fit: contain; }
.g-powered strong { color: var(--g-text); font-weight: 700; }

@media (max-width: 920px) {
  .g-order-layout { grid-template-columns: 1fr; }
  .g-cart-side,
  .g-cart-side.is-filled {
    position: static; max-height: none; overflow: visible;
  }
  .g-cart-side.is-filled .g-cart-scroll {
    overflow: visible; max-height: none;
  }
  .g-cart-footer { position: static; }
  .g-header-inner { align-items: flex-start; }
  .g-nav-actions { width: 100%; justify-content: space-between; }
}

/* =========================================================
   STRUCTURAL THEMES — aligned to gastro themes mock v2
   ========================================================= */

/* Featured chef block (Warm Bistro) */
.g-featured {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.35rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.g-featured-photo {
  min-height: 12.5rem;
  border-radius: calc(var(--g-radius) - 0.35rem);
  background: var(--g-surface-2);
  background-size: cover;
  background-position: center;
}
.g-featured-tag {
  font-family: var(--g-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-accent);
  margin-bottom: 0.6rem;
  display: block;
}
.g-featured-copy h2 {
  font-family: var(--g-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.g-featured-copy p {
  color: var(--g-muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}
.g-featured-foot { padding: 0; gap: 0.75rem; }

/* —— Warm Bistro: foto-magazín + spodný sticky košík —— */
html[data-g-theme="warm_bistro"] .g-header { border-bottom: 2px solid var(--g-border); }
html[data-g-theme="warm_bistro"] .g-mark,
html[data-g-theme="warm_bistro"] .g-mark img { border-radius: 50%; }
html[data-g-theme="warm_bistro"] .g-name { font-size: 1.15rem; }
html[data-g-theme="warm_bistro"] .g-order-layout {
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 0;
}
html[data-g-theme="warm_bistro"] .g-featured { display: grid; }
html[data-g-theme="warm_bistro"] .g-featured.hidden { display: none !important; }
html[data-g-theme="warm_bistro"] .g-cats {
  gap: 0.55rem;
  border-bottom: 0;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
html[data-g-theme="warm_bistro"] .g-cats button {
  border: 1px solid var(--g-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: var(--g-surface);
  border-bottom: 1px solid var(--g-border);
}
html[data-g-theme="warm_bistro"] .g-cats button.active {
  background: var(--g-accent);
  color: var(--g-accent-ink);
  border-color: var(--g-accent);
}
html[data-g-theme="warm_bistro"] .g-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-height: none;
}
html[data-g-theme="warm_bistro"] .g-dish {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  background: var(--g-surface);
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}
html[data-g-theme="warm_bistro"] .g-dish::before { display: none; }
html[data-g-theme="warm_bistro"] .g-dish-media {
  display: block;
  width: 100%;
  height: 7.4rem;
  background: var(--g-surface-2);
}
html[data-g-theme="warm_bistro"] .g-dish-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
html[data-g-theme="warm_bistro"] .g-dish-media--empty {
  background:
    radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--g-accent) 55%, #fff) 0%, transparent 42%),
    radial-gradient(circle at 65% 60%, color-mix(in srgb, var(--g-accent) 70%, #000) 0%, transparent 55%),
    linear-gradient(135deg, #8a5a2e, #4a2f16);
}
html[data-g-theme="warm_bistro"] .g-dish-body { padding: 0.85rem 1rem 0.25rem; }
html[data-g-theme="warm_bistro"] .g-dish h3 { font-size: 0.9rem; line-height: 1.35; }
html[data-g-theme="warm_bistro"] .g-dish-foot {
  grid-column: auto; grid-row: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  box-sizing: border-box;
}
html[data-g-theme="warm_bistro"] .g-weekly-list .g-dish--weekly {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
}
html[data-g-theme="warm_bistro"] .g-weekly-list .g-dish--weekly .g-dish-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
html[data-g-theme="warm_bistro"] .g-weekly-list .g-dish--weekly .g-dish-foot {
  margin-top: auto;
  width: 100%;
}
html[data-g-theme="warm_bistro"] .g-price { font-family: var(--g-display); font-weight: 600; }
html[data-g-theme="warm_bistro"] .g-add {
  background: var(--g-accent);
  border-color: var(--g-accent);
  color: var(--g-accent-ink);
  border-radius: 50%;
  font-weight: 700;
}
/* Cart below menu (document flow) — no fixed overlay covering featured/menu */
html[data-g-theme="warm_bistro"] .g-cart-side {
  position: static;
  left: auto; right: auto; bottom: auto;
  z-index: auto;
  max-width: none;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
  border-radius: var(--g-radius);
  box-shadow: none;
  padding: 1.25rem 1.15rem;
  max-height: none;
  overflow: visible;
  border: 1px solid var(--g-border);
  background: var(--g-surface);
}
html[data-g-theme="warm_bistro"] .g-cart-side.is-filled {
  max-height: none;
  overflow: visible;
}
html[data-g-theme="warm_bistro"] .g-cart-side h2 { margin: 0 0 0.35rem; flex: 0 0 auto; }
html[data-g-theme="warm_bistro"] .g-cart-scroll {
  flex: 1 1 auto;
  display: block;
  flex-direction: column;
  gap: 0;
  overflow: visible;
  min-width: 0;
  min-height: 0;
  max-height: none;
}
html[data-g-theme="warm_bistro"] .g-cart-list {
  display: grid;
  gap: 0;
  margin: 0 0 0.5rem;
}
html[data-g-theme="warm_bistro"] .g-cart-row {
  border: 0;
  border-bottom: 1px solid var(--g-border);
  padding: 0.7rem 0.15rem;
  flex-direction: row;
  gap: 0.75rem;
  white-space: normal;
  align-items: flex-start;
}
html[data-g-theme="warm_bistro"] .g-cart-footer {
  position: static;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--g-border);
  display: grid;
  align-items: stretch;
  gap: 0.75rem;
  background: transparent;
  flex: 0 0 auto;
}
html[data-g-theme="warm_bistro"] .g-cart-footer .g-btn-primary {
  width: 100%;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.65rem;
}
html[data-g-theme="warm_bistro"] .g-form {
  flex: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
html[data-g-theme="warm_bistro"] .g-form .g-address,
html[data-g-theme="warm_bistro"] .g-form .g-segment,
html[data-g-theme="warm_bistro"] .g-form .g-check,
html[data-g-theme="warm_bistro"] .g-form label:has(textarea) {
  grid-column: 1 / -1;
}
html[data-g-theme="warm_bistro"] .g-cart-toast { bottom: 1.75rem; }
@media (max-width: 760px) {
  html[data-g-theme="warm_bistro"] .g-featured { grid-template-columns: 1fr; }
  html[data-g-theme="warm_bistro"] .g-featured-photo { min-height: 9.5rem; }
  html[data-g-theme="warm_bistro"] .g-menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  html[data-g-theme="warm_bistro"] .g-dish-media { height: 5.6rem; }
  html[data-g-theme="warm_bistro"] .g-cart-side {
    left: auto; right: auto; bottom: auto;
    flex-direction: column; align-items: stretch;
    margin-top: 1.35rem;
    padding: 1.1rem 0.95rem;
  }
  html[data-g-theme="warm_bistro"] .g-cart-footer .g-btn-primary { width: 100%; }
  html[data-g-theme="warm_bistro"] .g-form { grid-template-columns: 1fr; }
  html[data-g-theme="warm_bistro"] .g-order-layout { padding-bottom: 0; }
}
@media (max-width: 480px) {
  html[data-g-theme="warm_bistro"] .g-menu-list { grid-template-columns: 1fr; }
}

/* —— Modern Minimal (mock): svetlé, ostré, list, cart s ľavou linkou —— */
html[data-g-theme="modern_minimal"] .g-header { border-bottom: 1px solid var(--g-border); padding: 1.4rem 0; }
html[data-g-theme="modern_minimal"] .g-header-inner { flex-direction: column; gap: 0.85rem; align-items: flex-start; }
html[data-g-theme="modern_minimal"] .g-mark { display: none !important; }
html[data-g-theme="modern_minimal"] .g-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--g-font);
}
html[data-g-theme="modern_minimal"] .g-sub { display: none; }
html[data-g-theme="modern_minimal"] .g-nav { gap: 1.75rem; }
html[data-g-theme="modern_minimal"] .g-nav button {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom-width: 1px;
}
html[data-g-theme="modern_minimal"] .g-nav-cta {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}
html[data-g-theme="modern_minimal"] .g-hero {
  text-align: center;
  padding: 3.5rem 0 2.75rem;
  border-bottom: 1px solid var(--g-border);
}
html[data-g-theme="modern_minimal"] .g-hero-eyebrow { color: var(--g-faint); }
html[data-g-theme="modern_minimal"] .g-hero h1 { font-weight: 400; letter-spacing: -0.02em; }
html[data-g-theme="modern_minimal"] .g-hero-sub { margin-left: auto; margin-right: auto; }
html[data-g-theme="modern_minimal"] .g-featured { display: none !important; }
html[data-g-theme="modern_minimal"] .g-order-layout {
  grid-template-columns: minmax(0, 1fr) minmax(15.5rem, 18rem);
  padding-top: 1.25rem;
  gap: 1.5rem;
}
html[data-g-theme="modern_minimal"] .g-order-main { min-width: 0; max-width: 100%; }
html[data-g-theme="modern_minimal"] .g-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-bottom: 1px solid var(--g-border);
  margin-bottom: 0.5rem;
  padding: 0 0 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--g-accent) 55%, #999) var(--g-surface-2);
}
html[data-g-theme="modern_minimal"] .g-cats::-webkit-scrollbar { height: 6px; }
html[data-g-theme="modern_minimal"] .g-cats::-webkit-scrollbar-track {
  background: var(--g-surface-2);
  border-radius: 999px;
}
html[data-g-theme="modern_minimal"] .g-cats::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--g-accent) 45%, #888);
  border-radius: 999px;
}
html[data-g-theme="modern_minimal"] .g-cats button {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}
html[data-g-theme="modern_minimal"] .g-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: none;
}
html[data-g-theme="modern_minimal"] .g-dish {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid var(--g-border);
  border-radius: 0;
  background: transparent;
  padding: 1.35rem 0;
}
html[data-g-theme="modern_minimal"] .g-dish::before { display: none; }
html[data-g-theme="modern_minimal"] .g-dish-media { display: none !important; }
html[data-g-theme="modern_minimal"] .g-dish-body { flex: 1; padding: 0; }
html[data-g-theme="modern_minimal"] .g-dish h3 {
  font-family: var(--g-font);
  font-weight: 500;
  font-size: 0.92rem;
}
html[data-g-theme="modern_minimal"] .g-dish p { color: var(--g-faint); }
html[data-g-theme="modern_minimal"] .g-dish-foot {
  grid-column: auto; grid-row: auto;
  flex-direction: row;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0;
}
html[data-g-theme="modern_minimal"] .g-weekly-list .g-dish--weekly {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  grid-template-columns: none;
}
html[data-g-theme="modern_minimal"] .g-weekly-list .g-dish--weekly .g-dish-body {
  flex: 1 1 auto;
  min-width: 0;
}
html[data-g-theme="modern_minimal"] .g-weekly-list .g-dish--weekly .g-dish-foot {
  flex: 0 0 auto;
  align-self: flex-start;
  padding-top: 0.1rem;
}
html[data-g-theme="modern_minimal"] .g-price {
  font-family: var(--g-mono);
  font-size: 0.82rem;
  color: var(--g-muted);
}
html[data-g-theme="modern_minimal"] .g-add {
  background: none;
  border: none;
  color: var(--g-accent);
  font-size: 1.25rem;
  font-weight: 300;
  width: auto;
  height: auto;
  padding: 0;
}
html[data-g-theme="modern_minimal"] .g-cart-side {
  background: none;
  border: none;
  border-left: 1px solid var(--g-border);
  border-radius: 0;
  padding: 0 0 0 1.5rem;
  box-shadow: none;
  position: sticky;
  top: 5rem;
  min-width: 15.5rem;
}
html[data-g-theme="modern_minimal"] .g-cart-side h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g-faint);
  font-weight: 700;
  font-family: var(--g-font);
}
html[data-g-theme="modern_minimal"] .g-cart-row > div:first-child strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
html[data-g-theme="modern_minimal"] .g-cart-row:hover > div:first-child strong,
html[data-g-theme="modern_minimal"] .g-cart-row:focus-within > div:first-child strong {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
html[data-g-theme="modern_minimal"] .g-tag {
  color: #2f3138;
  border-color: color-mix(in srgb, currentColor 30%, var(--g-border));
  background: color-mix(in srgb, currentColor 9%, #fff);
  font-weight: 700;
}
html[data-g-theme="modern_minimal"] .g-tag.badge-chef { color: #b42318; }
html[data-g-theme="modern_minimal"] .g-tag.badge-specialty,
html[data-g-theme="modern_minimal"] .g-tag.badge-bestseller { color: #8a5b00; }
html[data-g-theme="modern_minimal"] .g-tag.badge-seasonal { color: #5925dc; }
html[data-g-theme="modern_minimal"] .g-tag.badge-craft { color: #6b4c2e; }
html[data-g-theme="modern_minimal"] .g-tag.badge-wood-oven { color: #b54708; }
html[data-g-theme="modern_minimal"] .g-tag.badge-local,
html[data-g-theme="modern_minimal"] .g-tag.badge-plant,
html[data-g-theme="modern_minimal"] .g-tag.badge-veggie { color: #067647; }
html[data-g-theme="modern_minimal"] .g-tag.badge-gluten-free { color: #7a6200; }
html[data-g-theme="modern_minimal"] .g-tag.badge-lactose-free { color: #026aa2; }
html[data-g-theme="modern_minimal"] .g-tag.badge-spicy { color: #c01048; }
html[data-g-theme="modern_minimal"] .g-tag.badge-kids { color: #c11574; }
html[data-g-theme="modern_minimal"] .g-cart-row { border-bottom: 1px solid var(--g-border); }
html[data-g-theme="modern_minimal"] .g-btn-primary,
html[data-g-theme="modern_minimal"] .g-btn-secondary {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
html[data-g-theme="modern_minimal"] .g-choice-card { border-radius: 0; }
html[data-g-theme="modern_minimal"] body.g-theme-image::before,
html[data-g-theme="modern_minimal"].g-theme-image::before { background: color-mix(in srgb, var(--g-bg) 82%, transparent); }
@media (max-width: 760px) {
  html[data-g-theme="modern_minimal"] .g-order-layout { grid-template-columns: 1fr; }
  html[data-g-theme="modern_minimal"] .g-cart-side {
    border-left: none;
    border-top: 1px solid var(--g-border);
    padding: 1.25rem 0 0;
    margin-top: 0.75rem;
    position: static;
  }
}

/* —— Light Clean: soft light café (secondary to Minimal) —— */
html[data-g-theme="light_clean"] .g-nav-cta,
html[data-g-theme="light_clean"] .g-btn-primary,
html[data-g-theme="light_clean"] .g-add { border-radius: 999px; }
html[data-g-theme="light_clean"] .g-cats { gap: 0.45rem; border-bottom: 0; flex-wrap: wrap; }
html[data-g-theme="light_clean"] .g-cats button {
  border: 1px solid var(--g-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: var(--g-surface);
}
html[data-g-theme="light_clean"] .g-cats button.active {
  background: var(--g-accent); color: var(--g-accent-ink); border-color: var(--g-accent);
}
html[data-g-theme="light_clean"] .g-menu-list { gap: 0.7rem; max-height: none; }
html[data-g-theme="light_clean"] .g-dish {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--g-border);
  border-radius: calc(var(--g-radius) * 1.2);
  background: var(--g-surface);
  padding: 0.95rem 1rem;
  column-gap: 0.95rem;
  row-gap: 0.35rem;
}
html[data-g-theme="light_clean"] .g-dish::before { display: none; }
html[data-g-theme="light_clean"] .g-dish-media {
  display: block; width: 4.25rem; height: 4.25rem; border-radius: 999px;
  overflow: hidden; border: 1px solid var(--g-border); background: var(--g-surface-2);
  grid-column: 1; grid-row: 1 / span 2; align-self: center;
}
html[data-g-theme="light_clean"] .g-dish-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
html[data-g-theme="light_clean"] .g-dish-body {
  grid-column: 2; gap: 0.4rem; justify-content: center;
}
html[data-g-theme="light_clean"] .g-dish h3 { line-height: 1.35; }
html[data-g-theme="light_clean"] .g-tags { margin-top: 0.15rem; }
html[data-g-theme="light_clean"] .g-dish-foot {
  grid-column: 3; grid-row: 1 / span 2;
  align-self: center;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0;
}
html[data-g-theme="light_clean"] .g-weekly-list .g-dish--weekly {
  grid-template-columns: minmax(0, 1fr) auto;
}
html[data-g-theme="light_clean"] .g-weekly-list .g-dish--weekly .g-dish-body {
  grid-column: 1;
}
html[data-g-theme="light_clean"] .g-weekly-list .g-dish--weekly .g-dish-foot {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}
html[data-g-theme="light_clean"] .g-price {
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
}
html[data-g-theme="light_clean"] .g-tag {
  color: #3d3a32;
  border-color: color-mix(in srgb, currentColor 28%, var(--g-border));
  background: color-mix(in srgb, currentColor 10%, #fff);
}
html[data-g-theme="light_clean"] .g-tag.badge-chef { color: #b42318; }
html[data-g-theme="light_clean"] .g-tag.badge-specialty,
html[data-g-theme="light_clean"] .g-tag.badge-bestseller { color: #9a6700; }
html[data-g-theme="light_clean"] .g-tag.badge-seasonal { color: #6941c6; }
html[data-g-theme="light_clean"] .g-tag.badge-craft { color: #7a5c3e; }
html[data-g-theme="light_clean"] .g-tag.badge-wood-oven { color: #b54708; }
html[data-g-theme="light_clean"] .g-tag.badge-local,
html[data-g-theme="light_clean"] .g-tag.badge-plant,
html[data-g-theme="light_clean"] .g-tag.badge-veggie { color: #067647; }
html[data-g-theme="light_clean"] .g-tag.badge-gluten-free { color: #8a6d00; }
html[data-g-theme="light_clean"] .g-tag.badge-lactose-free { color: #026aa2; }
html[data-g-theme="light_clean"] .g-tag.badge-spicy { color: #c01048; }
html[data-g-theme="light_clean"] .g-tag.badge-kids { color: #c11574; }

/* —— Wine Elegant: úzky ledger —— */
html[data-g-theme="wine_elegant"] .g-wrap { width: min(820px, calc(100% - 2.5rem)); }
html[data-g-theme="wine_elegant"] .g-header-inner { justify-content: center; flex-direction: column; text-align: center; }
html[data-g-theme="wine_elegant"] .g-brand { justify-content: center; flex: 0; }
html[data-g-theme="wine_elegant"] .g-nav-actions { width: 100%; justify-content: center; }
html[data-g-theme="wine_elegant"] .g-hero { text-align: center; }
html[data-g-theme="wine_elegant"] .g-order-layout { grid-template-columns: 1fr; max-width: 40rem; margin: 0 auto; }
html[data-g-theme="wine_elegant"] .g-order-main { min-width: 0; max-width: 100%; }
html[data-g-theme="wine_elegant"] .g-cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1rem;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-bottom: 1px solid var(--g-border);
  margin-bottom: 1.25rem;
  padding: 0 0 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--g-accent) 75%, #fff) var(--g-surface-2);
}
html[data-g-theme="wine_elegant"] .g-cats::-webkit-scrollbar { height: 6px; }
html[data-g-theme="wine_elegant"] .g-cats::-webkit-scrollbar-track {
  background: var(--g-surface-2);
  border-radius: 999px;
}
html[data-g-theme="wine_elegant"] .g-cats::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--g-accent) 70%, transparent);
  border-radius: 999px;
}
html[data-g-theme="wine_elegant"] .g-cats button {
  flex: 0 0 auto;
}
html[data-g-theme="wine_elegant"] .g-cart-side { border-radius: 0; border-width: 1px 0; background: transparent; }
html[data-g-theme="wine_elegant"] .g-menu-list { max-height: none; }
html[data-g-theme="wine_elegant"] .g-dish {
  grid-template-columns: minmax(0, 1fr) auto;
  border: 0; border-bottom: 1px solid var(--g-border); border-radius: 0;
  background: transparent; padding: 1.1rem 0.1rem;
}
html[data-g-theme="wine_elegant"] .g-dish::before { display: none; }
html[data-g-theme="wine_elegant"] .g-dish-media { display: none !important; }
html[data-g-theme="wine_elegant"] .g-dish h3 {
  display: flex; align-items: baseline; gap: 0.55rem; font-weight: 500;
}
html[data-g-theme="wine_elegant"] .g-dish h3::after {
  content: ""; flex: 1;
  border-bottom: 1px dotted color-mix(in srgb, var(--g-faint) 70%, transparent);
  transform: translateY(-0.2rem);
}
html[data-g-theme="wine_elegant"] .g-dish-foot { grid-column: 2; grid-row: 1; }
html[data-g-theme="wine_elegant"] .g-btn-primary,
html[data-g-theme="wine_elegant"] .g-nav-cta { border-radius: 0; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
html[data-g-theme="wine_elegant"] .g-total,
html[data-g-theme="wine_elegant"] .g-total-breakdown,
html[data-g-theme="wine_elegant"] .g-total-breakdown .g-total {
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  width: auto;
  display: block;
}
html[data-g-theme="wine_elegant"] .g-total strong {
  display: inline;
  color: #e8a0ad;
  background: none !important;
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-fill-color: #e8a0ad;
  box-decoration-break: clone;
}

/* Premium Dark Gold = classic text list (base styles) */

/* —— Vitrína: teplý pás špecialít + kruhové thumbs + bočný košík —— */
html[data-g-theme="vitrina"] {
  --g-bg: #211a12;
  --g-surface: #2b2117;
  --g-surface-2: #36291b;
  --g-border: #4a3823;
  --g-text: #f7ecdd;
  --g-muted: #c4ac8c;
  --g-faint: #8e755a;
  --g-accent: #c98a3f;
  --g-accent-ink: #1a0f04;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 1.4rem;
}
html[data-g-theme="vitrina"] .g-mark,
html[data-g-theme="vitrina"] .g-mark img { border-radius: 50%; }
html[data-g-theme="vitrina"] .g-header-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.35rem 0 1.35rem;
  margin: 0.15rem 0 0.35rem;
  border-top: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
html[data-g-theme="vitrina"] .g-header-strip::-webkit-scrollbar { display: none; }
html[data-g-theme="vitrina"] .g-header-strip.hidden { display: none !important; }
html[data-g-theme="vitrina"] .g-strip-item {
  flex: 0 0 auto;
  width: 4.75rem;
  border: 0;
  background: transparent;
  color: var(--g-muted);
  padding: 0;
  cursor: pointer;
  text-align: center;
  font: inherit;
}
html[data-g-theme="vitrina"] .g-strip-photo {
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  border: 3px solid var(--g-accent);
  margin: 0 auto 0.45rem;
  background-size: cover;
  background-position: center;
  background-color: var(--g-surface-2);
}
/* Desktop: circular specialty icons +15% */
@media (min-width: 900px) {
  html[data-g-theme="vitrina"] .g-strip-item {
    width: 5.45rem;
  }
  html[data-g-theme="vitrina"] .g-strip-photo {
    width: 5.45rem;
    height: 5.45rem;
  }
  html[data-g-theme="vitrina"] .g-strip-label {
    font-size: 0.7rem;
  }
}
html[data-g-theme="vitrina"] .g-strip-label {
  display: block;
  font-size: 0.65rem;
  line-height: 1.25;
  color: var(--g-muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html[data-g-theme="vitrina"] .g-featured { display: none !important; }
html[data-g-theme="vitrina"] .g-cats {
  gap: 0.45rem;
  border-bottom: 0;
  flex-wrap: wrap;
}
html[data-g-theme="vitrina"] .g-cats button {
  border: 1px solid var(--g-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: var(--g-surface);
}
html[data-g-theme="vitrina"] .g-cats button.active {
  background: var(--g-accent);
  color: var(--g-accent-ink);
  border-color: var(--g-accent);
}
html[data-g-theme="vitrina"] .g-dish {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.9rem;
  border-bottom-color: color-mix(in srgb, var(--g-border) 80%, transparent);
}
html[data-g-theme="vitrina"] .g-dish::before { display: none; }
html[data-g-theme="vitrina"] .g-dish-media {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--g-border);
  background: var(--g-surface-2);
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
html[data-g-theme="vitrina"] .g-dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
html[data-g-theme="vitrina"] .g-dish-media--empty {
  background:
    radial-gradient(circle at 35% 30%, #f0d6a0, transparent 45%),
    radial-gradient(circle at 65% 65%, #a8461f, transparent 55%),
    linear-gradient(135deg, #6b4523, #33220f);
}
html[data-g-theme="vitrina"] .g-dish-body { grid-column: 2; }
html[data-g-theme="vitrina"] .g-dish-foot {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0;
}
html[data-g-theme="vitrina"] .g-add {
  border-radius: 50%;
  background: var(--g-accent);
  border-color: var(--g-accent);
  color: var(--g-accent-ink);
}
html[data-g-theme="vitrina"] .g-cart-side { border-radius: var(--g-radius); border-width: 1.5px; }
html[data-g-theme="vitrina"] .g-btn-primary,
html[data-g-theme="vitrina"] .g-nav-cta { border-radius: 999px; }

/* —— Split Editorial: split hero + accordion + cart below menu —— */
html[data-g-theme="split_editorial"] {
  --g-bg: #0d0d0e;
  --g-surface: #161617;
  --g-surface-2: #1e1e1f;
  --g-border: #2c2c2e;
  --g-text: #f5f5f4;
  --g-muted: #9c9c9b;
  --g-faint: #5c5c5b;
  --g-accent: #e8402f;
  --g-accent-ink: #ffffff;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Bodoni Moda", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 0.15rem;
}
html[data-g-theme="split_editorial"] .g-mark,
html[data-g-theme="split_editorial"] .g-mark img { border-radius: 0; }
html[data-g-theme="split_editorial"] .g-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}
html[data-g-theme="split_editorial"] .g-header { border-bottom-color: var(--g-border); }
html[data-g-theme="split_editorial"] .g-hero.hidden,
html[data-g-theme="split_editorial"] #gHeroBlock.hidden { display: none !important; }
html[data-g-theme="split_editorial"] .g-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 21rem;
  border-bottom: 1px solid var(--g-border);
}
html[data-g-theme="split_editorial"] .g-split-hero.hidden { display: none !important; }
html[data-g-theme="split_editorial"] .g-split-hero-text {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--g-bg);
}
html[data-g-theme="split_editorial"] .g-split-hero-text h1 {
  font-family: var(--g-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
html[data-g-theme="split_editorial"] .g-split-hero-text .g-hero-sub {
  color: var(--g-muted);
  font-size: 0.9rem;
  max-width: 36ch;
  margin: 0;
}
html[data-g-theme="split_editorial"] .g-split-hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
html[data-g-theme="split_editorial"] .g-split-photo {
  min-height: 10.5rem;
  background-size: cover;
  background-position: center;
  background-color: var(--g-surface-2);
}
html[data-g-theme="split_editorial"] .g-split-photo--empty {
  background:
    radial-gradient(circle at 40% 40%, rgba(232, 64, 47, 0.35), transparent 45%),
    linear-gradient(135deg, #333, #111);
}
html[data-g-theme="split_editorial"] .g-featured { display: none !important; }
html[data-g-theme="split_editorial"] .g-cats.hidden,
html[data-g-theme="split_editorial"] .g-menu-list.hidden { display: none !important; }
html[data-g-theme="split_editorial"] .g-accordion {
  display: block;
  margin-top: 0.5rem;
}
html[data-g-theme="split_editorial"] .g-accordion.hidden { display: none !important; }
html[data-g-theme="split_editorial"] .g-acc-section {
  border-bottom: 1px solid var(--g-border);
}
html[data-g-theme="split_editorial"] .g-acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: var(--g-text);
  cursor: pointer;
  font-family: var(--g-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: left;
}
html[data-g-theme="split_editorial"] .g-acc-head::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--g-accent);
  font-family: var(--g-font);
}
html[data-g-theme="split_editorial"] .g-acc-section.open .g-acc-head::after { content: "−"; }
html[data-g-theme="split_editorial"] .g-acc-body { display: none; padding-bottom: 0.85rem; }
html[data-g-theme="split_editorial"] .g-acc-section.open .g-acc-body { display: block; }
html[data-g-theme="split_editorial"] .g-acc-dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  color: var(--g-muted);
}
html[data-g-theme="split_editorial"] .g-acc-dish-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
html[data-g-theme="split_editorial"] .g-acc-dish-copy b {
  color: var(--g-text);
  font-weight: 500;
  font-family: var(--g-font);
}
html[data-g-theme="split_editorial"] .g-acc-dish-copy span {
  font-size: 0.75rem;
  color: var(--g-faint);
}
html[data-g-theme="split_editorial"] .g-acc-dish-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
html[data-g-theme="split_editorial"] .g-order-layout {
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 0;
}
/* Cart below accordion (document flow) — no fixed peek overlay */
html[data-g-theme="split_editorial"] .g-cart-side {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  max-width: none;
  width: auto;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  border-radius: 0;
  border: 1px solid var(--g-border);
  border-left: 0;
  border-right: 0;
  background: var(--g-surface);
  box-shadow: none;
  padding: 1.35rem 0 1.5rem;
  max-height: none;
  overflow: visible;
}
html[data-g-theme="split_editorial"] .g-cart-side.is-filled {
  max-height: none;
  overflow: visible;
}
html[data-g-theme="split_editorial"] .g-cart-side h2 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.65rem;
  flex: 0 0 auto;
}
html[data-g-theme="split_editorial"] .g-cart-scroll {
  flex: 1 1 auto;
  overflow: visible;
  max-height: none;
  min-height: 0;
}
html[data-g-theme="split_editorial"] .g-cart-list {
  display: grid;
  gap: 0;
  margin: 0 0 0.5rem;
}
html[data-g-theme="split_editorial"] .g-cart-row {
  border-bottom: 1px solid var(--g-border);
  padding: 0.75rem 0;
  align-items: flex-start;
}
html[data-g-theme="split_editorial"] .g-cart-footer {
  position: static;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--g-border);
  background: transparent;
  display: grid;
  gap: 0.75rem;
}
html[data-g-theme="split_editorial"] .g-cart-footer .g-btn-primary {
  width: 100%;
}
html[data-g-theme="split_editorial"] .g-btn-primary,
html[data-g-theme="split_editorial"] .g-nav-cta,
html[data-g-theme="split_editorial"] .g-add {
  border-radius: 0;
}
html[data-g-theme="split_editorial"] .g-jump-cart {
  margin: 1.25rem 0 0;
  border-radius: 0;
  width: 100%;
}
html[data-g-theme="split_editorial"] .g-cart-toast { bottom: 1.75rem; }
html[data-g-theme="split_editorial"] .g-acc-head {
  min-height: 2.75rem;
  -webkit-tap-highlight-color: transparent;
}
html[data-g-theme="split_editorial"] .g-acc-dish-meta .g-add {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  html[data-g-theme="split_editorial"] .g-split-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  html[data-g-theme="split_editorial"] .g-split-hero-text {
    padding: 1.75rem 1.15rem 1.1rem;
  }
  html[data-g-theme="split_editorial"] .g-split-hero-text h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  html[data-g-theme="split_editorial"] .g-split-hero-photos {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    height: 4.75rem;
  }
  html[data-g-theme="split_editorial"] .g-split-photo { min-height: 0; }
  html[data-g-theme="split_editorial"] .g-order-layout {
    padding-bottom: 0;
    gap: 0;
  }
  html[data-g-theme="split_editorial"] .g-accordion {
    margin-top: 0.25rem;
  }
  html[data-g-theme="split_editorial"] .g-acc-head {
    padding: 1rem 0;
    font-size: 0.92rem;
  }
  html[data-g-theme="split_editorial"] .g-acc-dish {
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    padding: 0.65rem 0;
  }
  html[data-g-theme="split_editorial"] .g-acc-dish-meta {
    width: 100%;
    justify-content: space-between;
    padding-top: 0.15rem;
  }
  html[data-g-theme="split_editorial"] .g-cart-side {
    margin: 1.5rem 0 0;
    padding: 1.15rem 0 1.35rem;
  }
  html[data-g-theme="split_editorial"] .g-cart-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  html[data-g-theme="split_editorial"] .g-cart-row > div:last-child {
    width: 100%;
    justify-content: flex-end;
  }
  html[data-g-theme="split_editorial"] .g-form label {
    font-size: 0.8rem;
  }
  html[data-g-theme="split_editorial"] .g-form input,
  html[data-g-theme="split_editorial"] .g-form select,
  html[data-g-theme="split_editorial"] .g-form textarea {
    font-size: 16px; /* iOS zoom prevent */
    min-height: 2.75rem;
  }
}

/* default: chrome for new themes stays hidden outside their theme */
.g-header-strip { display: none; }
.g-split-hero { display: none; }
.g-accordion { display: none; }

/* —— Cream Classic: svetlý dôstojný lístok, vínový akcent, kruhové fotky —— */
html[data-g-theme="cream_classic"] {
  --g-bg: #f7f2e9;
  --g-surface: #fffdf8;
  --g-surface-2: #f3ecdf;
  --g-border: #e4d9c2;
  --g-text: #211b14;
  --g-muted: #6f6252;
  --g-faint: #a5977f;
  --g-accent: #7a2e35;
  --g-accent-ink: #ffffff;
  --g-font: "Outfit", -apple-system, system-ui, sans-serif;
  --g-display: "Fraunces", Georgia, serif;
  --g-mono: "IBM Plex Mono", ui-monospace, monospace;
  --g-radius: 1rem;
}
html[data-g-theme="cream_classic"] .g-header {
  background: var(--g-surface);
  border-bottom: 1px solid var(--g-border);
}
html[data-g-theme="cream_classic"] .g-mark,
html[data-g-theme="cream_classic"] .g-mark img {
  border-radius: 50%;
  border: 1.5px solid var(--g-accent);
  background: var(--g-surface);
  color: var(--g-accent);
}
html[data-g-theme="cream_classic"] .g-name {
  font-family: var(--g-display);
  font-weight: 600;
  font-size: 1.1rem;
}
html[data-g-theme="cream_classic"] .g-sub { color: var(--g-muted); font-size: 0.75rem; }
html[data-g-theme="cream_classic"] .g-nav button {
  color: var(--g-muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
}
html[data-g-theme="cream_classic"] .g-nav button.active {
  color: var(--g-text);
  border-bottom-color: var(--g-accent);
}
html[data-g-theme="cream_classic"] .g-nav-cta {
  border-radius: 999px;
  background: var(--g-accent);
  color: #fff;
  border-color: var(--g-accent);
}
html[data-g-theme="cream_classic"] .g-hero-eyebrow {
  color: var(--g-accent);
  font-weight: 700;
  letter-spacing: 0.12em;
}
html[data-g-theme="cream_classic"] .g-featured { display: none !important; }
html[data-g-theme="cream_classic"] .g-cats {
  gap: 0.5rem;
  border-bottom: 0;
  padding: 0.5rem 0 1.1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
html[data-g-theme="cream_classic"] .g-cats button {
  border: 1px solid var(--g-border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: var(--g-surface);
  color: var(--g-muted);
  border-bottom-width: 1px;
}
html[data-g-theme="cream_classic"] .g-cats button.active {
  background: var(--g-accent);
  border-color: var(--g-accent);
  color: #fff;
}
html[data-g-theme="cream_classic"] .g-menu-list { gap: 0; }
html[data-g-theme="cream_classic"] .g-dish {
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 1.25rem;
  row-gap: 0.35rem;
  padding: 1.55rem 0;
  border-bottom-color: #ece3d0;
  align-items: center;
}
html[data-g-theme="cream_classic"] .g-dish::before { display: none; }
html[data-g-theme="cream_classic"] .g-dish-media {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--g-border);
  background: var(--g-surface);
  box-shadow: 0 8px 20px rgba(33, 27, 20, 0.08);
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
html[data-g-theme="cream_classic"] .g-dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
html[data-g-theme="cream_classic"] .g-dish-media--empty {
  background:
    radial-gradient(circle at 35% 35%, #f0e6cf, transparent 50%),
    radial-gradient(circle at 65% 65%, #d4b896, transparent 55%),
    #fffdf8;
}
html[data-g-theme="cream_classic"] .g-dish-body {
  grid-column: 2;
  gap: 0.45rem;
  min-width: 0;
}
html[data-g-theme="cream_classic"] .g-weekly-list .g-dish--weekly {
  grid-template-columns: minmax(0, 1fr) auto;
}
html[data-g-theme="cream_classic"] .g-weekly-list .g-dish--weekly .g-dish-body {
  grid-column: 1;
}
html[data-g-theme="cream_classic"] .g-weekly-list .g-dish--weekly .g-dish-actions {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}
html[data-g-theme="cream_classic"] .g-dish-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
html[data-g-theme="cream_classic"] .g-dish-top h3 {
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
html[data-g-theme="cream_classic"] .g-dish-top .g-price {
  font-family: var(--g-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--g-accent);
  white-space: nowrap;
}
html[data-g-theme="cream_classic"] .g-dish-actions {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[data-g-theme="cream_classic"] .g-dish-footer,
html[data-g-theme="cream_classic"] .g-dish-foot { display: none; }
html[data-g-theme="cream_classic"] .g-dish h3 {
  font-size: 1.1rem;
}
html[data-g-theme="cream_classic"] .g-add {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--g-accent);
  background: transparent;
  color: var(--g-accent);
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.15rem;
}
html[data-g-theme="cream_classic"] .g-add::after { content: " Pridať"; }
html[data-g-theme="cream_classic"] .g-add:hover {
  background: var(--g-accent);
  color: #fff;
}
html[data-g-theme="cream_classic"] .g-tag {
  color: var(--g-accent);
  background: #f1e3e1;
  border-color: transparent;
  border-radius: 6px;
  font-size: 0.65rem;
}
html[data-g-theme="cream_classic"] .g-tag.badge-chef,
html[data-g-theme="cream_classic"] .g-tag.badge-specialty,
html[data-g-theme="cream_classic"] .g-tag.badge-bestseller,
html[data-g-theme="cream_classic"] .g-tag.badge-seasonal,
html[data-g-theme="cream_classic"] .g-tag.badge-craft,
html[data-g-theme="cream_classic"] .g-tag.badge-wood-oven,
html[data-g-theme="cream_classic"] .g-tag.badge-local,
html[data-g-theme="cream_classic"] .g-tag.badge-plant,
html[data-g-theme="cream_classic"] .g-tag.badge-veggie,
html[data-g-theme="cream_classic"] .g-tag.badge-gluten-free,
html[data-g-theme="cream_classic"] .g-tag.badge-lactose-free,
html[data-g-theme="cream_classic"] .g-tag.badge-spicy,
html[data-g-theme="cream_classic"] .g-tag.badge-kids {
  color: var(--g-accent);
  background: #f1e3e1;
  border-color: transparent;
}
html[data-g-theme="cream_classic"] .g-allergens {
  font-style: normal;
  color: var(--g-faint);
}
html[data-g-theme="cream_classic"] .g-allergens-label {
  color: var(--g-muted);
  font-weight: 600;
}
html[data-g-theme="cream_classic"] .g-cart-side {
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 1rem;
  box-shadow: none;
}
html[data-g-theme="cream_classic"] .g-cart-side h2 {
  font-family: var(--g-display);
  font-size: 1.05rem;
}
html[data-g-theme="cream_classic"] .g-btn-primary {
  border-radius: 0.65rem;
  background: var(--g-accent);
  border-color: var(--g-accent);
  color: #fff;
}
html[data-g-theme="cream_classic"] .g-choice-card,
html[data-g-theme="cream_classic"] .g-btn-secondary {
  border-radius: 0.75rem;
  background: var(--g-surface);
  border-color: var(--g-border);
  color: var(--g-text);
}
html[data-g-theme="cream_classic"] body.g-theme-image::before,
html[data-g-theme="cream_classic"].g-theme-image::before {
  background: color-mix(in srgb, var(--g-bg) 88%, transparent);
}
@media (max-width: 760px) {
  html[data-g-theme="cream_classic"] .g-dish-media {
    width: 5.25rem;
    height: 5.25rem;
  }
  html[data-g-theme="cream_classic"] .g-dish h3 { font-size: 1rem; }
  html[data-g-theme="cream_classic"] .g-order-layout { grid-template-columns: 1fr; }
  html[data-g-theme="cream_classic"] .g-cart-side {
    position: static;
    margin-top: 1rem;
  }
}

