/* ==========================================================================
   Mendoza – Design-System
   Dunkles, warmes Steakhaus: Anthrazit, Holz, Glut. Wenig Chrom, viel Ruhe.
   ========================================================================== */

:root {
  /* Flächen */
  --bg:        #131110;
  --bg-2:      #1A1715;
  --surface:   #221E1B;
  --surface-2: #2B2521;
  --line:      rgba(255, 245, 230, 0.11);
  --line-soft: rgba(255, 245, 230, 0.06);

  /* Schrift */
  --text:   #F3ECE3;
  --muted:  #A99C8D;
  --faint:  #7C7266;

  /* Marke – Rot aus dem Logo, Messing als Preis-/Akzentfarbe */
  --brand:     #9D1B1E;
  --brand-lit: #C0392F;
  --brand-dim: #6E1315;
  --gold:      #C9A227;
  --gold-lit:  #E0BC45;

  /* Typo */
  --font-display: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --header-h: 74px;

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: 3px; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.94rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.95em 1.9em;
  border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-lit); }

.btn--ghost { background: transparent; color: var(--text); border-color: rgba(255, 240, 225, 0.32); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 240, 225, 0.07); }

.btn--gold { background: transparent; color: var(--gold-lit); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: #1a1512; }

.btn--sm { padding: 0.7em 1.3em; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------ Kopfzeilen */
.kicker {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.9em;
}

.sec-head { margin-bottom: 52px; }
.sec-head--center { text-align: center; margin-inline: auto; max-width: 660px; }
.sec-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 0.4em; }
.sec-lead { color: var(--muted); font-size: 1.04rem; margin: 0; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--bg-2); }

/* Dünne Messing-Trennlinie */
.rule {
  width: 64px; height: 2px; margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sec-head--left .rule { margin-inline: 0; }

/* ================================================================ Header */
.topbar {
  background: #0D0B0A; border-bottom: 1px solid var(--line-soft);
  font-size: 0.8rem; color: var(--muted);
}
.topbar__inner { display: flex; align-items: center; gap: 22px; min-height: 40px; flex-wrap: wrap; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--text); }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__social { margin-left: auto; display: flex; gap: 14px; }
.topbar__social a { display: grid; place-items: center; width: 26px; height: 26px; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

.status { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); flex: none; }
.status--open { color: #7BC47F; }
.status--open .status__dot { background: #7BC47F; box-shadow: 0 0 0 3px rgba(123, 196, 127, 0.18); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(19, 17, 16, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.site-header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { height: 34px; width: auto; }
.brand__text { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.16em; text-transform: uppercase; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 10px 14px; text-decoration: none; white-space: nowrap;
  font-family: var(--font-display); font-size: 0.87rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav .is-active > a { color: var(--text); border-bottom-color: var(--brand-lit); }

/* Untermenüs */
.nav li { position: relative; }
.nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px; display: none; flex-direction: column; gap: 0;
  box-shadow: var(--shadow);
}
.nav li:hover > .sub-menu, .nav li:focus-within > .sub-menu { display: flex; }
.nav .sub-menu a { padding: 9px 12px; border-bottom: 0; }
.nav .sub-menu a:hover { background: var(--surface-2); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.cart-link { position: relative; display: grid; place-items: center; width: 40px; height: 40px; color: var(--muted); text-decoration: none; }
.cart-link:hover { color: var(--text); }
.cart-link svg { width: 21px; height: 21px; fill: currentColor; }
.cart-link__count {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 9px; background: var(--brand); color: #fff;
  font-size: 0.66rem; font-weight: 700; line-height: 17px; text-align: center;
}

.burger {
  display: none; width: 44px; height: 44px; flex: none;
  background: none; border: 0; cursor: pointer; padding: 0;
  place-items: center;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; transition: background 0.2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text);
  transition: transform 0.28s var(--ease), top 0.28s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Mobilnavigation */
.mobile-nav {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg); padding: 88px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  display: block; padding: 15px 4px; text-decoration: none;
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .sub-menu a { font-size: 1rem; padding-left: 18px; color: var(--muted); }
.mobile-nav__foot { margin-top: 28px; display: grid; gap: 12px; }
.mobile-nav__close { position: absolute; top: 22px; right: 20px; }
body.nav-open { overflow: hidden; }

/* ================================================================== Hero */
.hero { position: relative; min-height: min(84vh, 760px); display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,17,16,0.55) 0%, rgba(19,17,16,0.15) 32%, rgba(19,17,16,0.88) 82%, var(--bg) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(19,17,16,0.7), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(48px, 9vw, 96px); width: 100%; }
.hero__title {
  font-size: clamp(2.6rem, 7.4vw, 5.1rem); line-height: 0.98; margin-bottom: 0.3em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero__title span { display: block; color: var(--gold-lit); font-size: 0.42em; letter-spacing: 0.24em; margin-bottom: 0.7em; }
.hero__lead { max-width: 52ch; color: #E4DAD0; font-size: clamp(1rem, 1.6vw, 1.16rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 38px;
  padding-top: 24px; border-top: 1px solid rgba(255, 240, 225, 0.15);
  font-size: 0.88rem; color: #CFC4B8;
}
.hero__facts strong { color: var(--text); font-weight: 600; }

/* ==================================================== Wochenaktionen */
.week { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }

.deal {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.deal:hover { transform: translateY(-5px); border-color: rgba(201, 162, 39, 0.45); }
.deal__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-2); }
.deal__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.deal:hover .deal__media img { transform: scale(1.05); }
.deal__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(34, 30, 27, 0.95) 100%);
}
.deal__day {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 2px;
}
.deal__price {
  position: absolute; bottom: 12px; right: 12px; z-index: 1;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-lit);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.deal__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.deal__kicker { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; font-family: var(--font-display); }
.deal__title { font-size: 1.42rem; margin-bottom: 0.25em; }
.deal__claim { color: var(--gold); font-size: 0.92rem; font-weight: 500; margin-bottom: 0.9em; }
.deal__text { font-size: 0.93rem; color: var(--muted); line-height: 1.62; margin-bottom: 1em; }
.deal__note {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: 0.85rem; color: var(--faint); font-style: italic;
}

/* ============================================================== Speisekarte */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.menu-tab {
  font-family: var(--font-display); font-size: 0.84rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7em 1.25em; border: 1px solid var(--line); border-radius: 2px;
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all 0.22s var(--ease);
}
.menu-tab:hover { color: var(--text); border-color: rgba(255, 240, 225, 0.3); }
.menu-tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.menu-panel[hidden] { display: none; }
.menu-note {
  text-align: center; color: var(--faint); font-size: 0.88rem; font-style: italic;
  margin: 0 auto 36px; max-width: 62ch;
}

.dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 30px 56px; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.dish__head { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-size: 1.08rem; font-weight: 500; margin: 0; letter-spacing: 0.04em; text-transform: none; font-family: var(--font-display); }
.dish__dots { flex: 1; border-bottom: 1px dotted rgba(255, 240, 225, 0.22); transform: translateY(-4px); min-width: 20px; }
.dish__price { font-family: var(--font-display); font-weight: 500; color: var(--gold-lit); white-space: nowrap; }
.dish__desc { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 5px 0 0; }
.dish__variants { list-style: none; margin: 11px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.dish__variants li {
  display: inline-flex; align-items: baseline; gap: 7px;
  background: var(--surface); border: 1px solid var(--line-soft);
  padding: 4px 10px; border-radius: 2px; font-size: 0.83rem;
}
.v-label { color: var(--muted); }
.v-price { font-family: var(--font-display); font-weight: 500; color: var(--gold-lit); }

/* ============================================================ Dry Aged */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; grid-template-columns: 1fr 1fr; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.split__media::before {
  content: ''; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--gold); opacity: 0.4; border-radius: var(--radius);
}
.split__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.split__body p { color: var(--muted); }

.facts { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 32px; }
.fact { background: var(--bg); padding: 20px 12px; text-align: center; }
.section--alt .fact { background: var(--bg-2); }
.fact__num { font-family: var(--font-display); font-size: clamp(1.4rem, 5vw, 1.9rem); color: var(--gold-lit); line-height: 1; }
.fact__label { font-size: 0.8rem; color: var(--faint); margin-top: 6px; letter-spacing: 0.04em; }

/* ============================================================== Aktionen */
.promos { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.promo {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--brand);
  padding: 28px 26px; border-radius: var(--radius);
  transition: border-left-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.promo:hover { border-left-color: var(--gold); transform: translateY(-3px); }
.promo__meta { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--faint); }
.promo__title { font-size: 1.28rem; margin: 10px 0 0.5em; }
.promo__text { font-size: 0.92rem; color: var(--muted); line-height: 1.62; margin: 0; }
.promo__price { display: inline-block; margin-top: 16px; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-lit); }

/* ========================================================== Lieferservice */
.packs { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pack {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px 28px; text-align: center;
  display: flex; flex-direction: column;
}
.pack--featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,39,0.07), transparent 55%), var(--surface); }
.pack__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1512;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 13px; border-radius: 2px;
  white-space: nowrap;
}
.pack__title { font-size: 1.35rem; margin-bottom: 0.4em; }
.pack__text { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.4em; }
.pack__price { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-lit); line-height: 1; }
.pack__unit { font-size: 0.82rem; color: var(--faint); margin: 6px 0 22px; }
.pack .btn { margin-top: auto; }

.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line-soft); padding: 24px 22px; border-radius: var(--radius); }
.step__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--brand-lit); display: block; margin-bottom: 10px; letter-spacing: 0.1em; }
.step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.tiers { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tier {
  flex: 1 1 140px; max-width: 190px; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 16px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--gold); }
.tier--best { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,39,0.1), transparent 60%), var(--surface); }
.tier__days { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.tier__value { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-lit); line-height: 1.1; }
.tier__label { font-size: 0.78rem; color: var(--faint); }

/* ============================================================ Wochenkarte */
.wochenkarte { --wk-gap: 14px; }

.wk-weeks { display: flex; gap: 8px; margin-bottom: 18px; }
.wk-week {
  flex: 1; background: var(--surface); color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 10px 12px; cursor: pointer; text-align: center;
  font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.22s var(--ease);
}
.wk-week small { display: block; font-size: 0.7rem; letter-spacing: 0.04em; opacity: 0.75; margin-top: 3px; text-transform: none; }
.wk-week:hover { color: var(--text); border-color: rgba(255, 240, 225, 0.3); }
.wk-week[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.wk-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 20px; }
.wk-day {
  background: var(--surface); color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 4px; cursor: pointer; text-align: center;
  font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.06em;
  transition: all 0.2s var(--ease);
}
.wk-day small { display: block; font-size: 0.68rem; opacity: 0.7; margin-top: 2px; }
.wk-day:hover { color: var(--text); border-color: rgba(255, 240, 225, 0.3); }
.wk-day[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
.wk-day[aria-selected="true"] small { opacity: 0.9; }
.wk-day.is-past { opacity: 0.45; }
.wk-day.is-past[aria-selected="true"] { opacity: 1; }

.wk-date {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}

.wk-dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.wk-dish {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.wk-dish:last-child { border-bottom: 0; }
/* Vorspeise und Dessert sind gleichwertig – nur farblich unterschieden. */

.wk-tag {
  flex: none; width: 76px; text-align: center;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 6px; border-radius: 2px; margin-top: 2px;
  border: 1px solid transparent;
}
.wk-tag--meat  { background: rgba(157, 27, 30, 0.22);  color: #E8867F; border-color: rgba(157, 27, 30, 0.5); }
.wk-tag--fish  { background: rgba(58, 110, 140, 0.22); color: #86BEDC; border-color: rgba(58, 110, 140, 0.5); }
.wk-tag--veg   { background: rgba(72, 122, 60, 0.22);  color: #97CE86; border-color: rgba(72, 122, 60, 0.5); }
.wk-tag--starter { background: rgba(201, 162, 39, 0.20); color: var(--gold-lit); border-color: rgba(201, 162, 39, 0.5); }
.wk-tag--dessert { background: rgba(176, 110, 160, 0.20); color: #DFA8D0; border-color: rgba(176, 110, 160, 0.5); }

.wk-dish__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.wk-dish__title { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: 0.02em; }
.wk-dish__desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

.wk-empty { color: var(--faint); font-style: italic; text-align: center; padding: 26px 0; margin: 0; }
.wk-note { margin-top: 14px; font-size: 0.86rem; color: var(--gold); }
.wk-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between;
  margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--faint);
}

/* Als Kasten auf der Seite */
.wochenkarte--section {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--brand); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}

/* ------------------------------------------- Ausklapp-Reiter (statt SideTab) */
.wk-tab {
  position: fixed; right: 22px; bottom: 22px; z-index: 58;
  display: inline-flex; align-items: center; gap: 12px; text-align: left;
  background: var(--brand); color: #fff; border: 0; border-radius: 40px;
  padding: 11px 22px 11px 14px; cursor: pointer; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.wk-tab:hover { background: var(--brand-lit); transform: translateY(-2px); }
body.wk-open .wk-tab { opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease); }
.wk-tab__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.22); display: grid; place-items: center;
}
.wk-tab svg { width: 19px; height: 19px; fill: currentColor; }
.wk-tab__text { display: flex; flex-direction: column; gap: 1px; }
.wk-tab__title {
  font-family: var(--font-display); font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.2;
}
.wk-tab__today {
  font-family: var(--font-body); font-size: 0.74rem; line-height: 1.25;
  color: rgba(255, 255, 255, 0.82);
  max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Desktop: feste Karte unten rechts, alles ohne Scrollen sichtbar.
   Mobil (siehe Breakpoint unten): Blatt über die volle Breite. */
.wk-drawer {
  position: fixed; right: 22px; bottom: 22px; left: auto; z-index: 75;
  width: 540px; height: 740px; max-height: calc(100vh - 44px);
  background: var(--bg-2);
  border: 1px solid var(--line); border-top: 3px solid var(--brand);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  transform: translateY(calc(100% + 40px)); opacity: 0;
  transition: transform 0.38s var(--ease), opacity 0.28s var(--ease);
  display: flex; flex-direction: column;
}
.wk-drawer.is-open { transform: translateY(0); opacity: 1; }
.wk-drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 20px; border-bottom: 1px solid var(--line); flex: none;
}
.wk-drawer__head h2 { margin: 0; font-size: 1.05rem; }
.wk-drawer__head p { margin: 2px 0 0; font-size: 0.76rem; color: var(--faint); }
.wk-drawer__body { padding: 18px 20px; flex: 1; min-height: 0; overflow: hidden; }
.wk-drawer__body .wochenkarte { height: 100%; display: flex; flex-direction: column; }

/* Im Fenster etwas kompakter, damit alles ohne Scrollen hineinpasst. */
.wochenkarte--panel .wk-weeks { margin-bottom: 12px; }
.wochenkarte--panel .wk-week { padding: 8px 10px; font-size: 0.8rem; }
.wochenkarte--panel .wk-days { margin-bottom: 14px; gap: 5px; }
.wochenkarte--panel .wk-day { padding: 7px 2px; font-size: 0.84rem; }
.wochenkarte--panel .wk-week-panel { display: flex; flex-direction: column; min-height: 0; flex: 1; }
.wochenkarte--panel .wk-week-panel[hidden] { display: none; }
/* Der Tagesbereich gibt nach, damit der Fuß nie über den Gerichten liegt. */
.wochenkarte--panel .wk-panel { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: thin; }
.wochenkarte--panel .wk-panel[hidden] { display: none; }
.wochenkarte--panel .wk-date { margin-bottom: 8px; font-size: 0.74rem; }
.wochenkarte--panel .wk-dish { padding: 7px 0; gap: 10px; }
.wochenkarte--panel .wk-tag { width: 68px; font-size: 0.63rem; padding: 3px 5px; }
.wochenkarte--panel .wk-dish__title { font-size: 0.95rem; }
.wochenkarte--panel .wk-dish__desc {
  font-size: 0.8rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.wochenkarte--panel .wk-foot { margin-top: auto; padding-top: 12px; font-size: 0.76rem; }

/* Wenn der Bildschirm zu niedrig ist, darf im Notfall doch gescrollt werden. */
@media (max-height: 820px) {
  .wk-drawer { height: calc(100vh - 44px); }
}
.wk-backdrop {
  position: fixed; inset: 0; z-index: 74; background: rgba(8, 7, 6, 0.7);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.wk-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Hinweisband zum Spar-Abo */
.abo-teaser {
  background: linear-gradient(90deg, rgba(157, 27, 30, 0.18), rgba(201, 162, 39, 0.10));
  border-block: 1px solid var(--line);
}
.abo-teaser__inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-block: 18px;
}
.abo-teaser__icon {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-lit);
  background: rgba(201, 162, 39, 0.10);
}
.abo-teaser__icon svg { width: 19px; height: 19px; fill: currentColor; }
.abo-teaser__text { flex: 1 1 320px; margin: 0; font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.abo-teaser__text strong { color: var(--text); }
.abo-teaser .btn { flex: none; }

/* ================================================ Bestellwege (Lieferservice) */
.order-ways {
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 860px; margin-inline: auto;
}
.order-way {
  position: relative; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; display: flex; flex-direction: column; align-items: center;
}
.order-way--best {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.09), transparent 55%), var(--surface);
}
.order-way__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1512;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 2px; white-space: nowrap;
}
.order-way__icon {
  width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
}
.order-way--best .order-way__icon { border-color: var(--gold); background: rgba(201, 162, 39, 0.12); }
.order-way__icon svg { width: 21px; height: 21px; fill: currentColor; }
.order-way__title { font-size: 1.3rem; margin-bottom: 0.5em; }
.order-way__text { font-size: 0.93rem; color: var(--muted); line-height: 1.62; margin-bottom: 1.6em; }
.order-way .btn { margin-top: auto; }
.order-way .btn svg { width: 14px; height: 14px; fill: currentColor; }
.order-way__hint { margin: 14px 0 0; font-size: 0.78rem; color: var(--faint); }

/* ============================================================== Downloads */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card-dl {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-decoration: none; text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card-dl:hover { border-color: var(--gold); transform: translateY(-4px); }
.card-dl__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.card-dl__icon svg { width: 20px; height: 20px; fill: currentColor; }
.card-dl img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.card-dl__title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.05em; }
.card-dl__hint { font-size: 0.76rem; color: var(--faint); letter-spacing: 0.1em; text-transform: uppercase; }

/* ================================================================ Kontakt */
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: start; }
.info-block + .info-block { margin-top: 28px; }
.info-block h2, .info-block h3 { font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 0.8em; color: var(--gold); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.hours li:last-child { border-bottom: 0; }
.hours .d { color: var(--muted); }
.hours .t { font-variant-numeric: tabular-nums; }
.hours li.is-today .d, .hours li.is-today .t { color: var(--text); font-weight: 600; }
.hours li.is-today { position: relative; }
.hours li.is-today::before { content: ''; position: absolute; left: -14px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }

.contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-lines li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.96rem; }
.contact-lines svg { width: 17px; height: 17px; fill: var(--gold); flex: none; margin-top: 5px; }
.contact-lines a { text-decoration: none; }
.contact-lines a:hover { color: var(--gold-lit); }

.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.45) invert(0.9) hue-rotate(180deg) contrast(0.86); }
.map-consent { height: 100%; display: grid; place-content: center; gap: 14px; text-align: center; padding: 30px; }
.map-consent p { font-size: 0.9rem; color: var(--muted); max-width: 34ch; margin: 0 auto; }

/* ================================================================= Footer */
.site-footer { background: #0D0B0A; border-top: 1px solid var(--line-soft); padding-top: 64px; margin-top: 0; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; padding-bottom: 48px; }
.footer-col h3 { font-size: 0.86rem; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 1.3em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { text-decoration: none; color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--text); }
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: all 0.22s var(--ease); }
.footer-social a:hover { color: var(--text); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center;
  font-size: 0.82rem; color: var(--faint);
}
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 0 auto; padding: 0; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* ============================================ Schwebende Aktionsleiste (mobil) */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a, .action-bar button {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: #0D0B0A; color: var(--text); border: 0; cursor: pointer;
  padding: 11px 6px; text-decoration: none;
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase;
}
.action-bar svg { width: 18px; height: 18px; fill: currentColor; }
.action-bar .is-accent { color: var(--gold-lit); }

/* ============================================================ Reservierung */
.modal {
  position: fixed; inset: 0; z-index: 90; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(8, 7, 6, 0.86); backdrop-filter: blur(4px);
}
.modal.is-open { display: flex; }
.modal__box {
  position: relative; width: min(560px, 100%); max-height: 88vh;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.modal__head h2 { margin: 0; font-size: 1.15rem; }
.modal__close { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.7rem; line-height: 1; padding: 0 4px; }
.modal__close:hover { color: var(--text); }
.modal__body { padding: 0; flex: 1; min-height: 520px; background: #fff; }
.modal__body iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }
.modal__fallback { padding: 28px; background: var(--surface); text-align: center; }

/* ============================================ Inhalts-Seiten (Standard) */
.page-hero { position: relative; padding: clamp(64px, 10vw, 118px) 0 clamp(40px, 6vw, 62px); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.page-hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,17,16,0.7), var(--bg)); }
.page-hero__inner { position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); margin-bottom: 0.25em; }
.page-hero p { color: var(--muted); max-width: 60ch; margin: 0; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.7rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.6em; }
.prose h4, .prose h5, .prose h6 {
  font-size: 0.95rem; letter-spacing: 0.12em; color: var(--gold);
  margin-top: 1.8em; margin-bottom: 0.7em;
}
.prose a { color: var(--gold-lit); }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose img { border-radius: var(--radius); margin: 1.6em 0; }
.prose blockquote { border-left: 3px solid var(--brand); margin: 1.6em 0; padding: 4px 0 4px 22px; color: var(--muted); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.94rem; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line-soft); }
.prose th { font-family: var(--font-display); letter-spacing: 0.06em; color: var(--gold); font-weight: 500; }

/* ================================================== WooCommerce (schlank) */
.shop-main { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 110px); }
.woocommerce-products-header__title, .shop-main h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); }

.woocommerce ul.products { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; float: none !important;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.woocommerce ul.products li.product:hover { border-color: var(--gold); transform: translateY(-4px); }
.woocommerce ul.products li.product a img { border-radius: var(--radius); margin-bottom: 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 0; margin-bottom: 8px; color: var(--text);
}
.woocommerce ul.products li.product .price { color: var(--gold-lit); font-family: var(--font-display); font-size: 1.3rem; }
.woocommerce ul.products li.product .price del { color: var(--faint); font-size: 0.8em; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--brand); color: #fff; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85em 1.7em; font-size: 0.88rem; border: 0; line-height: 1.2;
  transition: background 0.22s var(--ease);
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce #respond input#submit:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
  background: var(--brand-lit); color: #fff;
}

.woocommerce div.product .product_title { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--gold-lit); font-family: var(--font-display); font-size: 1.9rem; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line); padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent; border: 0; border-radius: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { content: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--muted); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--gold-lit); }

.woocommerce table.shop_table, .woocommerce table.shop_attributes { border: 1px solid var(--line); border-radius: var(--radius); border-collapse: collapse; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--line-soft); color: var(--text); }
.woocommerce table.shop_table thead th { font-family: var(--font-display); letter-spacing: 0.06em; color: var(--gold); }

.woocommerce .quantity .qty, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce form .form-row select, .select2-container--default .select2-selection--single {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  border-radius: var(--radius); padding: 11px 13px; font-family: var(--font-body);
}
.woocommerce form .form-row label { color: var(--muted); font-size: 0.9rem; }
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  background: var(--surface); border-top: 3px solid var(--gold); color: var(--text);
  border-radius: var(--radius); padding: 16px 20px 16px 44px;
}
.woocommerce-error { border-top-color: var(--brand-lit); }
.woocommerce-info::before, .woocommerce-message::before { color: var(--gold); }
.woocommerce .woocommerce-breadcrumb { color: var(--faint); font-size: 0.85rem; }
.woocommerce .woocommerce-breadcrumb a { color: var(--muted); }
.woocommerce-cart table.cart img { width: 64px; border-radius: 2px; }
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); }
.woocommerce-checkout #payment div.payment_box { background: var(--bg-2); color: var(--muted); }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--bg-2); }
.cart_totals h2, .woocommerce-checkout h3 { font-size: 1.3rem; }

/* Hinweis, dass sich Karten wischen lassen (nur mobil sichtbar). */
.swipe-hint {
  display: none; text-align: center; margin: 4px 0 0;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
  font-family: var(--font-display);
}

/* Sortierung und Ergebniszahl im Shop */
.woocommerce .woocommerce-ordering select,
.woocommerce select.orderby {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 12px; font-family: var(--font-body); font-size: 0.9rem;
}
.woocommerce .woocommerce-result-count { color: var(--muted); font-size: 0.9rem; }
.woocommerce .woocommerce-ordering { margin-bottom: 1.4em; }

.mendoza-loop-btn { display: inline-block; margin-top: 16px; }

/* Germanized-Hinweise (MwSt., Lieferzeit) dezent halten */
.wc-gzd-additional-info { color: var(--faint); font-size: 0.8rem; margin: 6px 0 0; list-style: none; padding: 0; }
.wc-gzd-additional-info a { color: var(--muted); }

/* ================================================== Tagesgerichte (Produkt) */
.daily-picker {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--brand); border-radius: var(--radius);
  padding: 22px; margin: 24px 0 26px;
}
.daily-picker__lead { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.daily-picker__lead strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.04em; margin-bottom: 5px; }

/* Die Tage bekommen alle dieselbe Breite und werden nicht gestaucht –
   passen sie nicht nebeneinander, wird seitlich gescrollt bzw. gezogen. */
.daily-days-wrap { position: relative; margin-bottom: 18px; }
.daily-days-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 4px; width: 42px;
  pointer-events: none; opacity: 0; transition: opacity 0.25s var(--ease);
  background: linear-gradient(90deg, transparent, var(--surface) 78%);
}
.daily-days-wrap.has-more::after { opacity: 1; }

.daily-days {
  display: flex; gap: 6px;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 4px;
  cursor: grab; scroll-behavior: smooth;
}
.daily-days::-webkit-scrollbar { display: none; }
.daily-days.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.daily-days.is-dragging .daily-day { pointer-events: none; }
.daily-day {
  flex: 0 0 62px;
  background: var(--bg-2); color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 6px; cursor: pointer; text-align: center;
  font-family: var(--font-display); font-size: 0.88rem; letter-spacing: 0.05em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.daily-day small { display: block; font-size: 0.68rem; opacity: 0.7; margin-top: 2px; }
.daily-day:hover { color: var(--text); border-color: rgba(255, 240, 225, 0.3); }
.daily-day[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.daily-dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.daily-dishes[hidden] { display: none; }

.daily-dish {
  width: 100%; display: flex; align-items: flex-start; gap: 13px; text-align: left;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; color: var(--text);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.daily-dish:hover { border-color: rgba(201, 162, 39, 0.55); background: var(--surface-2); }
.daily-dish.is-chosen { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,39,0.1), transparent 70%), var(--surface-2); }
.daily-dish__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.daily-dish__title { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.daily-dish__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.daily-dish__check {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: transparent; font-size: 0.8rem; margin-top: 2px;
  transition: all 0.2s var(--ease);
}
.daily-dish.is-chosen .daily-dish__check { background: var(--gold); border-color: var(--gold); color: #1a1512; }

/* Kaufen-Button im deaktivierten Zustand (noch kein Gericht gewählt) */
.woocommerce div.product form.cart .button.disabled,
.woocommerce div.product form.cart .button:disabled,
.woocommerce div.product form.cart .button[disabled] {
  background: var(--surface-2) !important; color: var(--faint) !important;
  cursor: not-allowed; opacity: 1;
}
.woocommerce div.product form.cart .button.disabled:hover { background: var(--surface-2) !important; }

/* Produktbild im dunklen Layout einfassen */
.woocommerce div.product div.images img { border-radius: var(--radius); }
/* Das Zoom-Symbol der Galerie darf nicht über Fenstern liegen */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger { z-index: 5; }
.woocommerce div.product div.images { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

/* ------------------------------------- Varianten-Auswahl von WooCommerce */
.woocommerce div.product form.cart .variations { margin-bottom: 18px; border: 0; width: 100%; }
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th { border: 0; padding: 0 0 10px; display: block; text-align: left; }
.woocommerce div.product form.cart .variations label {
  font-family: var(--font-display); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.woocommerce div.product form.cart .variations select {
  width: 100%; max-width: 420px;
  background: var(--bg-2); color: var(--text);
  border: 1px solid rgba(255, 240, 225, 0.28); border-radius: var(--radius);
  padding: 13px 40px 13px 14px; font-family: var(--font-body); font-size: 1rem;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A227'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 22px;
}
.woocommerce div.product form.cart .variations select:hover { border-color: var(--gold); }
.woocommerce div.product form.cart .variations select option { background: #1A1715; color: #F3ECE3; }
.woocommerce div.product form.cart .reset_variations {
  display: inline-block; margin-top: 8px; font-size: 0.84rem; color: var(--muted);
}
.woocommerce div.product form.cart .woocommerce-variation-price { margin-bottom: 14px; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.woocommerce div.product form.cart .quantity { margin: 0; }
.woocommerce .quantity input.qty { width: 74px; text-align: center; }

/* Urheberhinweis im Impressum */
.mentrix-credit {
  width: 200px; height: auto; margin: 6px 0 2px;
  opacity: 0.9; transition: opacity 0.22s var(--ease);
}
a:hover > .mentrix-credit { opacity: 1; }

/* ====================================================== Kasse (Checkout) */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_payment_heading {
  font-size: 1.15rem; letter-spacing: 0.08em; color: var(--text);
  padding-bottom: 12px; margin-bottom: 20px; border-bottom: 1px solid var(--line);
}

/* Beschriftungen der Eingabefelder: gut lesbar in Weiß.
   Die Auswahl muss spezifischer sein als '.woocommerce form .form-row label'. */
.woocommerce-checkout .checkout .form-row label,
.woocommerce-checkout .woocommerce-billing-fields .form-row label,
.woocommerce-checkout .woocommerce-shipping-fields .form-row label,
.woocommerce-checkout .woocommerce-additional-fields .form-row label,
.woocommerce-checkout form.checkout label {
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  display: block; margin-bottom: 6px;
}
.woocommerce-checkout .form-row label .optional { color: var(--faint); font-weight: 400; }
.woocommerce-checkout .required { color: var(--brand-lit); border: 0; text-decoration: none; }

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%; background: var(--bg-2); color: var(--text);
  border: 1px solid rgba(255, 240, 225, 0.22); border-radius: var(--radius);
  padding: 12px 14px; font-family: var(--font-body); font-size: 0.98rem;
}
.woocommerce-checkout .input-text::placeholder,
.woocommerce-checkout textarea::placeholder { color: var(--faint); }
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus { border-color: var(--gold); outline: none; }
.woocommerce-checkout select option { background: #1A1715; color: #F3ECE3; }

/* Auswahlfelder von select2 an das dunkle Layout anpassen */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  background: var(--bg-2); border: 1px solid rgba(255, 240, 225, 0.22);
  border-radius: var(--radius); height: auto; padding: 7px 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--text); line-height: 1.6; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; }
.select2-dropdown { background: var(--surface); border-color: var(--line); color: var(--text); }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--brand); }
.select2-search--dropdown .select2-search__field { background: var(--bg-2); color: var(--text); border-color: var(--line); }

/* Kontrollkästchen sichtbar machen */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  accent-color: var(--brand-lit); width: 17px; height: 17px; vertical-align: middle;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox span,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper { color: var(--muted); }
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a { color: var(--gold-lit); }

/* ------------------------------------------------------------ Zahlungsarten */
.woocommerce-checkout #payment,
#add_payment_method #payment, .woocommerce-cart #payment {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--line); padding: 8px; margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none; background: transparent; padding: 0; margin: 0 0 6px;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; align-items: center;
}
.woocommerce-checkout #payment ul.payment_methods li > input[type="radio"] {
  grid-column: 1; margin: 0 0 0 16px;
}
.woocommerce-checkout #payment ul.payment_methods li > div.payment_box { grid-column: 1 / -1; }
.woocommerce-checkout #payment ul.payment_methods li:last-child { margin-bottom: 0; }
.woocommerce-checkout #payment ul.payment_methods li > label,
.woocommerce-checkout #payment ul.payment_methods li label[for^="payment_method"] {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--text) !important; font-size: 1rem; font-weight: 500;
  padding: 14px 16px 14px 10px; margin: 0; cursor: pointer; grid-column: 2;
}
.woocommerce-checkout #payment ul.payment_methods li img { max-height: 24px; width: auto; margin-left: auto; }
.woocommerce-checkout #payment div.payment_box {
  background: var(--bg-2); color: var(--muted); margin: 0; padding: 14px 16px;
  border-top: 1px solid var(--line-soft); font-size: 0.9rem; line-height: 1.6;
}
.woocommerce-checkout #payment div.payment_box::before { content: none; }
.woocommerce-checkout #payment div.form-row.place-order { padding: 18px; margin: 0; }
.woocommerce-checkout #place_order { width: 100%; font-size: 1rem; padding: 1.05em 1.6em; }

/* ------------------------------------------------- Bestellübersicht (Tabelle) */
/* WooCommerce Germanized gibt '.woocommerce-checkout .shop_table' ein helles
   Grau (#eee). Das schien unter den durchsichtigen Zeilen durch – weiße Schrift
   auf hellem Grund. Deshalb hier spezifischer überschreiben. */
.woocommerce-checkout table.shop_table,
.woocommerce table.shop_table,
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  border-collapse: collapse; overflow: hidden;
  background: var(--surface) !important; color: var(--text);
}
.woocommerce-checkout table.shop_table tbody,
.woocommerce-checkout table.shop_table tbody tr { background: transparent; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  color: var(--text); background: transparent;
  border-bottom: 1px solid var(--line-soft); padding: 13px 16px; text-align: left;
}
.woocommerce-checkout-review-order-table thead th {
  font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-size: 0.82rem; background: var(--bg-2);
}
.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout-review-order-table tfoot td { text-align: right; }
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  background: var(--bg-2); color: var(--text); font-weight: 500;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-lit);
  border-bottom: 0;
}
.woocommerce-checkout-review-order-table .product-name { line-height: 1.5; }
.woocommerce-checkout-review-order-table .product-name dl.variation { margin: 6px 0 0; font-size: 0.85rem; color: var(--muted); }
.woocommerce-checkout-review-order-table .product-name dl.variation dt,
.woocommerce-checkout-review-order-table .product-name dl.variation dd { display: inline; margin: 0; }
.woocommerce-checkout-review-order-table img { width: 46px; height: auto; border-radius: 2px; margin-right: 10px; vertical-align: middle; }
.woocommerce-checkout-review-order-table .includes_tax,
.woocommerce-checkout-review-order-table small { color: var(--faint); font-size: 0.8rem; }

/* ------------------------------------------------------------- Gutschein */
.mendoza-coupon { margin-bottom: 26px; }
.mendoza-coupon .checkout_coupon { display: block !important; margin: 0; border: 0; padding: 0; }
.mendoza-coupon label {
  display: block; margin-bottom: 8px; color: var(--text);
  font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.mendoza-coupon__row { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.mendoza-coupon__row .input-text { flex: 1 1 200px; }
.mendoza-coupon__row .button { flex: none; }

/* ==================================================== Warenkorb (Block-Cart) */
/* Der Warenkorb läuft über die normale Seitenvorlage und lag dadurch in der
   schmalen Textspalte (.prose begrenzt auf 72 Zeichen Zeilenlänge).
   Für Text ist das richtig, für eine Warenkorb-Tabelle nicht. */
.woocommerce-cart .wrap--narrow { max-width: var(--wrap); }
.woocommerce-cart .prose { max-width: none; }
.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-cart .wc-block-cart {
  max-width: var(--wrap); margin-inline: auto; width: 100%;
}
@media (min-width: 1000px) {
  .woocommerce-cart .wc-block-cart__sidebar { flex-basis: 360px; max-width: 360px; }
  .woocommerce-cart .wc-block-cart__main { padding-right: 40px; }
}

/* Tabelle und Zusammenfassung ans dunkle Layout anpassen */
.woocommerce-cart .wc-block-cart-items__header {
  color: var(--gold); font-family: var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}
.woocommerce-cart .wc-block-cart-items__row { border-bottom: 1px solid var(--line-soft); }
.woocommerce-cart .wc-block-components-product-name { color: var(--text); font-size: 1.02rem; }
.woocommerce-cart .wc-block-components-product-metadata { color: var(--muted); }
.woocommerce-cart .wc-block-cart-item__image img { border-radius: var(--radius); }

.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-sidebar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.woocommerce-cart .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-heading-block,
.woocommerce-cart .wc-block-components-totals-item__label { color: var(--text); }
.woocommerce-cart .wc-block-components-totals-footer-item { color: var(--gold-lit); }
.woocommerce-cart .wc-block-components-totals-item__description { color: var(--faint); }

/* „Weiter zur Kasse“ als richtiger Knopf statt als Textlink */
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: var(--brand); color: #fff; border: 0;
  border-radius: var(--radius); padding: 1em 1.6em; text-decoration: none;
  font-family: var(--font-display); font-size: 0.94rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.22s var(--ease);
}
.woocommerce-cart .wc-block-cart__submit-button:hover { background: var(--brand-lit); color: #fff; }

/* Mengen-Wähler sichtbar machen */
.woocommerce-cart .wc-block-components-quantity-selector {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2);
}
.woocommerce-cart .wc-block-components-quantity-selector input,
.woocommerce-cart .wc-block-components-quantity-selector button { color: var(--text); }

/* ================================================================ Utilities */
/* Nur verstecken, wenn JS läuft – sonst bliebe der Inhalt unsichtbar. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

.text-center { text-align: center; }
.mt-l { margin-top: 44px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================== Breakpoints */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav a { padding: 10px 9px; font-size: 0.82rem; letter-spacing: 0.06em; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: grid; margin-left: auto; }
  .header-cta .btn { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media::before { display: none; }
  .topbar__item--hours { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .abo-teaser__inner { gap: 12px; }
  .abo-teaser__text { font-size: 0.88rem; }
  .abo-teaser .btn { width: 100%; }

  /* Karten nicht endlos stapeln, sondern seitlich wischen. */
  .week, .promos, .packs {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 80%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    margin-inline: -20px;
    padding: 4px 20px 14px;
    scrollbar-width: none;
  }
  .week::-webkit-scrollbar, .promos::-webkit-scrollbar, .packs::-webkit-scrollbar { display: none; }
  .deal, .promo, .pack { scroll-snap-align: start; }
  .deal:hover, .promo:hover, .pack:hover, .tier:hover { transform: none; }
  .deal__media { aspect-ratio: 16 / 9; }
  .swipe-hint { display: block; }

  /* Wochenkarten-Reiter über die Aktionsleiste heben */
  .wk-tab { right: 12px; bottom: 70px; padding: 9px 16px 9px 10px; gap: 9px; }
  .wk-tab__icon { width: 28px; height: 28px; }
  .wk-tab svg { width: 16px; height: 16px; }
  .wk-tab__title { font-size: 0.74rem; }
  .wk-tab__today { font-size: 0.68rem; max-width: 140px; }
  .wk-drawer {
    right: 0; left: 0; bottom: 0; width: auto;
    height: auto; max-height: 88vh; border-radius: 0; border-left: 0; border-right: 0;
    transform: translateY(100%);
  }
  .wk-drawer__body { overflow-y: auto; }
  .wochenkarte--panel .wk-dish__desc { -webkit-line-clamp: 3; }
  .wk-drawer__body { padding: 16px; padding-bottom: 76px; }
  .wk-dish { gap: 10px; }
  .wk-tag { width: 64px; font-size: 0.62rem; }
  .wk-days { gap: 4px; }
  .wk-day { font-size: 0.8rem; padding: 8px 2px; }

  /* Downloads zweispaltig statt untereinander. */
  .cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-dl { padding: 18px 12px; gap: 10px; }
  .card-dl img { width: 64px; height: 64px; }
  .card-dl__title { font-size: .9rem; }
  .action-bar { display: flex; }
  body { padding-bottom: 62px; }
  .site-footer { margin-bottom: 0; }
  .hero { min-height: 74vh; }
  .hero__facts { gap: 8px 20px; font-size: 0.82rem; }
  .dishes { grid-template-columns: 1fr; gap: 26px; }
  .menu-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; margin-inline: -20px; padding-inline: 20px; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom ul { margin-left: 0; }
  .topbar__inner { gap: 14px; }
  .topbar__item--address { display: none; }
}

@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .tier { max-width: none; flex-basis: calc(50% - 6px); }
}
