/* ==========================================================================
   Garden22 Builder – Basisstile aller Bloecke und Effekt-Presets.
   Alle Werte kommen aus den Design-Tokens (siehe Cms\Theme).
   ========================================================================== */

/* --- Struktur ----------------------------------------------------------- */

.b-section {
  position: relative;
  isolation: isolate;
}

.b-section.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--b-bg);
  background-size: cover;
  background-position: center;
}

.b-section.is-fixed::before { background-attachment: fixed; }

@media (max-width: 767px) {
  .b-section.has-bg-m::before { background-image: var(--b-bg-m); }
}

.b-section[class*="ov-"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.b-section.ov-light::after    { background: rgba(0, 0, 0, 0.25); }
.b-section.ov-medium::after   { background: rgba(0, 0, 0, 0.45); }
.b-section.ov-strong::after   { background: rgba(0, 0, 0, 0.68); }
.b-section.ov-gradient::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.b-inner {
  width: min(calc(100% - 2.4rem), var(--ly-container, 1180px));
  margin-inline: auto;
}
.b-inner.is-narrow { width: min(calc(100% - 2.4rem), var(--ly-container-narrow, 760px)); }
.b-inner.is-full   { width: 100%; }

.b-grid { display: grid; }
.b-cell { min-width: 0; }

.b-spacer { width: 100%; }

.b-divider { display: flex; align-items: center; justify-content: center; }
.b-divider.is-line span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--c-line, #2a2a2a);
}
.b-divider.is-dots span {
  display: block;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, var(--c-line, #2a2a2a) 1.5px, transparent 1.6px);
  background-size: 12px 3px;
  background-repeat: repeat-x;
}
.b-divider.is-ornament span {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 10px;
  background:
    linear-gradient(90deg, transparent, var(--c-line, #2a2a2a) 45%, transparent 46%) center / 100% 1px no-repeat;
  position: relative;
}
.b-divider.is-ornament span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--c-accent, #c4a46a);
}

/* --- Inhalt ------------------------------------------------------------- */

.b-heading { margin: 0; }
.b-heading-text { display: block; }
.b-kicker {
  display: block;
  font-family: var(--f-body, system-ui, sans-serif);
  font-size: var(--ts-xs, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-accent, #c4a46a);
  margin-bottom: 1.1em;
}

.b-text > :first-child { margin-top: 0; }
.b-text > :last-child { margin-bottom: 0; }
.b-text p { margin: 0 0 1em; }
.b-text a {
  color: var(--c-accent, #c4a46a);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.b-text ul, .b-text ol { margin: 0 0 1em; padding-left: 1.3em; }
.b-text li { margin-bottom: 0.4em; }
.b-text blockquote {
  margin: 1.5em 0;
  padding-left: 1.2em;
  border-left: 2px solid var(--c-accent, #c4a46a);
  font-style: italic;
}

.b-image { margin: 0; display: block; }
.b-image img { width: 100%; height: 100%; display: block; border-radius: inherit; }
.b-image figcaption {
  margin-top: 0.7em;
  font-size: var(--ts-sm, 0.875rem);
  color: var(--c-muted, #a39e93);
}
.b-image-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed var(--c-line, #2a2a2a);
  border-radius: inherit;
  color: var(--c-muted, #a39e93);
  font-size: var(--ts-sm, 0.875rem);
}
.b-image-zoom {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: inherit;
  width: 100%;
}

/* --- Button ------------------------------------------------------------- */

.b-button {
  --btn-bg: var(--c-primary, #74844a);
  --btn-fg: var(--c-white, #fff);
  --btn-bg-hover: var(--c-primary-hover, #8a9b58);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--f-button, system-ui, sans-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm, 2px);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.35s var(--ease, ease), color 0.35s var(--ease, ease),
              border-color 0.35s var(--ease, ease), transform 0.35s var(--ease, ease),
              box-shadow 0.35s var(--ease, ease);
}
.b-button.is-sm { padding: 0.6em 1.4em; font-size: var(--ts-xs, 0.75rem); }
.b-button.is-md { padding: 0.85em 2em;  font-size: var(--ts-sm, 0.875rem); }
.b-button.is-lg { padding: 1.05em 2.8em; font-size: var(--ts-base, 1rem); }

.b-button.is-primary { background: var(--btn-bg); color: var(--btn-fg); }
.b-button.is-primary:hover { background: var(--btn-bg-hover); }

.b-button.is-outline {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.b-button.is-outline:hover { background: var(--btn-bg); border-color: var(--btn-bg); color: var(--btn-fg); }

.b-button.is-ghost { background: transparent; color: currentColor; padding-inline: 0; }

/* --- Hover-Effekte ------------------------------------------------------ */

.fx-h-lift,
.fx-h-sink,
.fx-h-tilt,
.fx-h-glow,
.fx-h-brighten {
  transition: transform 0.45s var(--ease, cubic-bezier(0.22, 1, 0.36, 1)),
              box-shadow 0.45s var(--ease, ease),
              filter 0.45s var(--ease, ease);
  will-change: transform;
}
.fx-h-lift:hover     { transform: translateY(-6px); box-shadow: var(--sh-lg, 0 24px 60px rgba(0,0,0,.4)); }
.fx-h-sink:hover     { transform: translateY(2px) scale(0.985); }
.fx-h-tilt:hover     { transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-4px); }
.fx-h-glow:hover     { box-shadow: var(--sh-glow, 0 0 32px rgba(196,164,106,.28)); }
.fx-h-brighten:hover { filter: brightness(1.12); }

.fx-h-zoom { overflow: hidden; }
.fx-h-zoom img {
  transition: transform 0.7s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
  will-change: transform;
}
.fx-h-zoom:hover img { transform: scale(1.07); }

.fx-h-underline { position: relative; }
.fx-h-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease, ease);
}
.fx-h-underline:hover::after { transform: scaleX(1); transform-origin: left; }

.fx-h-fill { position: relative; z-index: 0; }
.fx-h-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-bg-hover, var(--c-accent, #c4a46a));
  transform: translateY(100%);
  transition: transform 0.45s var(--ease, ease);
}
.fx-h-fill:hover::before { transform: translateY(0); }

.fx-h-shine { position: relative; overflow: hidden; }
.fx-h-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.75s var(--ease, ease);
}
.fx-h-shine:hover::after { left: 130%; }

/* --- Scroll-Effekte ----------------------------------------------------- */

[data-reveal] {
  --fx-duration: 750ms;
  --fx-delay: 0ms;
  opacity: 0;
  transition: opacity var(--fx-duration) var(--ease, ease) var(--fx-delay),
              transform var(--fx-duration) var(--ease, ease) var(--fx-delay),
              filter var(--fx-duration) var(--ease, ease) var(--fx-delay),
              clip-path var(--fx-duration) var(--ease, ease) var(--fx-delay);
  will-change: opacity, transform;
}
.fx-r-fade-up    { transform: translateY(36px); }
.fx-r-fade-down  { transform: translateY(-36px); }
.fx-r-fade-left  { transform: translateX(-42px); }
.fx-r-fade-right { transform: translateX(42px); }
.fx-r-zoom-in    { transform: scale(0.92); }
.fx-r-blur-in    { filter: blur(14px); }
.fx-r-mask-up    { clip-path: inset(100% 0 0 0); transform: translateY(14px); }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .fx-h-lift, .fx-h-sink, .fx-h-tilt, .fx-h-zoom img, .fx-h-shine::after { transition: none !important; }
}

/* --- Nur im Editor sichtbar --------------------------------------------- */

.cms-empty {
  display: grid;
  place-items: center;
  min-height: 90px;
  border: 1px dashed currentColor;
  border-radius: 4px;
  opacity: 0.4;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Dynamisch: Menue-Kategorien ---------------------------------------- */

.b-cats.is-cards { display: grid; }
.b-cats.is-index { display: block; }
.b-cat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-md, 6px);
  overflow: hidden;
  background: var(--c-surface, #0c0c0c);
  border: 1px solid var(--c-line, #2a2a2a);
  transition: border-color 0.4s var(--ease, ease), transform 0.4s var(--ease, ease);
}
.b-cat:hover { border-color: var(--c-accent, #c4a46a); transform: translateY(-4px); }
.b-cat-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.b-cat-media img { width: 100%; height: 100%; object-fit: cover; }
.b-cat-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, var(--c-surface-2, #141414), var(--c-surface, #0c0c0c));
}
.b-cat-body { display: block; padding: 1.1rem 1.2rem 1.3rem; }
.b-cat-title {
  display: block;
  font-family: var(--f-heading, Georgia, serif);
  font-size: var(--ts-xl, 1.375rem);
  letter-spacing: 0.04em;
}
.b-cat-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--ts-sm, 0.875rem);
  color: var(--c-muted, #a39e93);
}

/* --- Video und Reels ----------------------------------------------------- */

.b-video { margin: 0; display: block; }
.b-video-frame {
  position: relative;
  display: block;
  aspect-ratio: var(--b-ratio, 9 / 16);
  border-radius: inherit;
  overflow: hidden;
  background: var(--c-surface-2, #141414);
}
.b-video-el { width: 100%; height: 100%; object-fit: cover; display: block; }
.b-video figcaption {
  margin-top: 0.6em;
  font-size: var(--ts-sm, 0.875rem);
  color: var(--c-muted, #a39e93);
}
.b-video-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px dashed var(--c-line, #2a2a2a);
  border-radius: inherit;
  color: var(--c-muted, #a39e93);
  font-size: var(--ts-sm, 0.875rem);
}

.b-video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease, ease);
}
.b-video-play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.b-video-play:hover { background: rgba(0, 0, 0, 0.12); }
.b-video-play.is-hidden { display: none; }

.b-video-link {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  font-size: var(--ts-xs, 0.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  transition: background 0.3s var(--ease, ease);
}
.b-video-link:hover { background: var(--c-primary, #74844a); }

.b-reels { display: flex; }
.b-reels.is-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.6rem;
  /* Randlos auslaufen lassen, ohne den Abschnitt zu sprengen */
  margin-inline: calc(var(--sp-4, 16px) * -1);
  padding-inline: var(--sp-4, 16px);
}
.b-reels.is-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }
.b-reels.is-grid { flex-wrap: wrap; }
.b-reels.is-grid > * { flex: 1 1 200px; }

.b-reels.w-sm.is-scroll > * { width: min(46vw, 190px); }
.b-reels.w-md.is-scroll > * { width: min(58vw, 260px); }
.b-reels.w-lg.is-scroll > * { width: min(72vw, 340px); }

@media (min-width: 768px) {
  .b-reels.w-sm.is-scroll > * { width: 190px; }
  .b-reels.w-md.is-scroll > * { width: 260px; }
  .b-reels.w-lg.is-scroll > * { width: 340px; }
}

/* --- Filmkorn ------------------------------------------------------------
   Legt einen sehr feinen Rauschfilm ueber die Seite. Nimmt dem dunklen
   Hintergrund die Flachheit, ohne dass man es bewusst wahrnimmt.
   -------------------------------------------------------------------------- */

body.has-grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.admin::after,
body.ed::after { content: none; }
/* Wird gesetzt, sobald eine Seite aus dem neuen Renderer kommt.
   Sobald alle Seiten umgestellt sind, kann die Regel auf body wandern. */

/* --- Laufband ------------------------------------------------------------ */

.b-ticker { overflow: hidden; border-block: 1px solid var(--c-line, #26251f); }
.b-ticker-track { display: flex; gap: 3rem; width: max-content; animation: b-ticker-slide 32s linear infinite; }
.b-ticker-track span { white-space: nowrap; letter-spacing: 0.16em; }
.b-ticker-track b { color: var(--c-accent, #c4a46a); font-weight: 400; }
.b-ticker.speed-slow .b-ticker-track { animation-duration: 52s; }
.b-ticker.speed-fast .b-ticker-track { animation-duration: 18s; }
.b-ticker.dir-right .b-ticker-track { animation-direction: reverse; }
.b-ticker:hover .b-ticker-track { animation-play-state: paused; }

/* Fuer Screenreader lesbar, visuell unsichtbar. */
.b-ticker-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes b-ticker-slide { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .b-ticker-track { animation: none; }
}

/* --- Öffnungszeiten ------------------------------------------------------ */

.b-hours { list-style: none; margin: 0; padding: 0; }
.b-hours li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.95em 0;
  border-bottom: 1px solid var(--c-line, #26251f);
}
.b-hours li span:first-child { color: inherit; }
.b-hours li span:last-child { color: var(--c-muted, #8d8679); font-variant-numeric: tabular-nums; }
.b-hours li.is-today span { color: var(--c-accent, #c4a46a); }

/* --- Kategorien als nummeriertes Register -------------------------------- */

.b-cats.is-index { border-top: 1px solid var(--c-line, #26251f); }
.b-cat-row {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-line, #26251f);
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.45s var(--ease, cubic-bezier(.22,1,.36,1));
}
.b-cat-row:hover { padding-left: 1.2rem; }
.b-cat-num { font-size: var(--ts-xs, 0.75rem); letter-spacing: 0.2em; color: var(--c-muted, #8d8679); }
.b-cat-name {
  font-family: var(--f-heading, Georgia, serif);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 300;
  line-height: 1.1;
  transition: color 0.4s var(--ease, ease);
}
.b-cat-row:hover .b-cat-name { color: var(--c-accent, #c4a46a); }
.b-cat-meta {
  font-size: var(--ts-xs, 0.75rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted, #8d8679);
}

/* Bildvorschau, die beim Darueberfahren auftaucht. */
.b-cat-peek {
  position: absolute;
  right: 9rem;
  top: 50%;
  width: 180px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  transform: translateY(-50%) scale(0.9) rotate(-3deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.45s var(--ease, ease), transform 0.45s var(--ease, ease);
}
.b-cat-peek img { width: 100%; height: 100%; object-fit: cover; }
.b-cat-row:hover .b-cat-peek { opacity: 1; transform: translateY(-50%) scale(1) rotate(-2deg); }

@media (max-width: 900px) {
  .b-cat-peek { display: none; }
  .b-cat-row { grid-template-columns: 2.6rem 1fr; }
  .b-cat-meta { grid-column: 2; }
}

/* --- Brücke zu den bestehenden Komponenten -------------------------------
   Formulare, Dialoge und das Zeitraster in frontend.css arbeiten mit den
   alten --color-*-Variablen. Statt sie alle neu zu schreiben, zeigen sie
   auf den Seiten aus dem neuen Renderer einfach auf die Design-Tokens.
   -------------------------------------------------------------------------- */

body.has-grain {
  --color-primary: var(--c-primary);
  --color-primary-hover: var(--c-primary-hover);
  --color-gold: var(--c-accent);
  --color-background: var(--c-bg);
  --color-surface: var(--c-surface);
  --color-surface-2: var(--c-surface2);
  --color-text: var(--c-text);
  --color-text-muted: var(--c-muted);
  --color-line: var(--c-line);
  --color-paper: var(--c-paper);
  --color-ink: var(--c-ink);
}

/* --- Formular-Blöcke ------------------------------------------------------ */

.b-form { display: block; }
.b-form-intro { margin-bottom: 1.6rem; }

.b-form-note {
  font-size: var(--ts-sm, 0.875rem);
  color: var(--c-muted, #8d8679);
  margin: 0.4rem 0 1rem;
}

.b-form-error {
  border-left: 2px solid #b4553f;
  background: rgba(180, 85, 63, 0.09);
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  font-size: var(--ts-sm, 0.875rem);
}

.b-form-success { max-width: 54ch; }
.b-form-success h2 {
  font-family: var(--f-heading, Georgia, serif);
  font-size: var(--ts-3xl, 2rem);
  font-weight: 300;
  margin: 0 0 1rem;
}
.b-form-success .b-button { margin-top: 1.4rem; }

.b-form-success-note {
  border-left: 2px solid var(--c-primary, #74844a);
  background: rgba(116, 132, 74, 0.1);
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  font-size: var(--ts-sm, 0.875rem);
}

/* Absende-Knoepfe so breit wie ihr Text, wie ueberall sonst auf der Seite. */
.b-form .form > button.b-button { justify-self: start; }

/* Der Button-Block wird auch in Formularen verwendet. */
.b-form button.b-button { border: 1px solid transparent; font-family: var(--f-button, system-ui, sans-serif); }
.b-form .b-button.is-outline { border-color: currentColor; }

/* --- Kontaktdaten und Social --------------------------------------------- */

.b-contact p { margin: 0 0 0.6em; }
.b-contact a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--c-line, #26251f); }
.b-contact a:hover { border-color: var(--c-accent, #c4a46a); color: var(--c-accent, #c4a46a); }
.b-contact-address {
  font-family: var(--f-heading, Georgia, serif);
  font-size: var(--ts-xl, 1.375rem);
  line-height: 1.45;
  margin-bottom: 1.2em;
}

.b-social { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; margin-top: 1.2rem; }
.b-social.is-stack { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.b-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--ts-xs, 0.75rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted, #8d8679);
  text-decoration: none;
  transition: color 0.35s var(--ease, ease);
}
.b-social a:hover { color: var(--c-accent, #c4a46a); }
.b-social img { width: 18px; height: 18px; object-fit: contain; }
.b-social.no-labels span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* --- Speisekarte: eine Kategorie mit Produkten --------------------------- */

.b-menu { display: block; }
.b-menu-preview {
  font-size: var(--ts-sm, 0.875rem);
  color: var(--c-accent, #c4a46a);
  border-left: 2px solid var(--c-accent, #c4a46a);
  padding: 0.4rem 0.8rem;
  margin: 0 0 1.6rem;
}

.b-menu-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
  margin: 0 0 3rem;
}
.b-menu-nav::-webkit-scrollbar { display: none; }
.b-menu-nav a {
  flex: 0 0 auto;
  padding: 0.55em 1.1em;
  border: 1px solid var(--c-line, #26251f);
  border-radius: 999px;
  font-size: var(--ts-xs, 0.75rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted, #8d8679);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s var(--ease, ease), border-color 0.3s var(--ease, ease);
}
.b-menu-nav a:hover { color: var(--c-text, #f4efe4); border-color: var(--c-muted, #8d8679); }
.b-menu-nav a.is-active { color: var(--c-ink, #0b0b09); background: var(--c-accent, #c4a46a); border-color: var(--c-accent, #c4a46a); }

.b-menu-group { margin: 0 0 3.2rem; }
.b-menu-group-title {
  font-family: var(--f-body, system-ui, sans-serif);
  font-size: var(--ts-xs, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent, #c4a46a);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--c-line, #26251f);
}

/* Eine Produktzeile: Name ········ Menge  Preis */
.b-menu-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--c-line, #26251f);
}
.b-menu-item.has-image { grid-template-columns: 64px 1fr; }
.b-menu-line { display: flex; align-items: baseline; gap: 0.7rem; }
.b-menu-line h4 {
  margin: 0;
  font-family: var(--f-heading, Georgia, serif);
  font-size: var(--ts-xl, 1.375rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.b-menu-leader {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted var(--c-line, #26251f);
  transform: translateY(-0.3em);
}
.b-menu-meta { display: inline-flex; align-items: baseline; gap: 0.8rem; white-space: nowrap; }
.b-menu-price {
  font-variant-numeric: tabular-nums;
  color: var(--c-accent, #c4a46a);
  font-size: var(--ts-base, 1rem);
}
.b-menu-volume { font-size: var(--ts-sm, 0.875rem); color: var(--c-muted, #8d8679); }
.b-menu-badge {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border: 1px solid var(--c-primary, #74844a);
  color: var(--c-primary-hover, #9aad68);
  border-radius: 999px;
}
.b-menu-allergens {
  font-family: var(--f-body, system-ui, sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--c-muted, #8d8679);
  vertical-align: 0.2em;
}
.b-menu-desc { margin-top: 0.3rem; font-size: var(--ts-sm, 0.875rem); color: var(--c-muted, #8d8679); line-height: 1.6; }
.b-menu-desc p { margin: 0; }

.b-menu-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: var(--r-sm, 2px);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--c-surface2, #1c1b16);
}
.b-menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease, ease); }
.b-menu-thumb:hover img { transform: scale(1.08); }

/* Sorten als kleine Marken */
.b-menu-flavors { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.b-menu-flavors span {
  padding: 0.45em 0.95em;
  border: 1px solid var(--c-line, #26251f);
  border-radius: 999px;
  font-size: var(--ts-sm, 0.875rem);
}

/* Preisstufen, z. B. Shisha-Groessen */
.b-menu-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.8rem; }
.b-menu-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.2rem;
  background: var(--c-surface, #131310);
  border: 1px solid var(--c-line, #26251f);
  border-radius: var(--r-sm, 2px);
}
.b-menu-card strong { font-family: var(--f-heading, Georgia, serif); font-size: var(--ts-xl, 1.375rem); font-weight: 400; }

.b-menu-note {
  margin: 0 0 3rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--c-accent, #c4a46a);
  background: var(--c-surface, #131310);
  font-size: var(--ts-sm, 0.875rem);
}

.b-menu-legend { font-size: var(--ts-sm, 0.875rem); color: var(--c-muted, #8d8679); }
.b-menu-legend dl {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.35rem 0.6rem;
  margin: 0 0 1.4rem;
}
@media (min-width: 768px) {
  .b-menu-legend dl { grid-template-columns: 1.6rem 1fr 1.6rem 1fr; }
}
.b-menu-legend dt { color: var(--c-accent, #c4a46a); font-weight: 500; }
.b-menu-legend dd { margin: 0; }
.b-menu-legal { margin-top: 0.8rem; font-size: var(--ts-xs, 0.75rem); }

@media (max-width: 560px) {
  .b-menu-line { flex-wrap: wrap; }
  .b-menu-leader { display: none; }
  .b-menu-meta { width: 100%; }
}
