:root {
  --cream: #f5f0e8;
  --parchment: #ede5d0;
  --ink: #1a1410;
  --ink-soft: #3d322a;
  --gold: #b8932a;
  --gold-light: #d4aa4a;
  --rust: #8b3a1e;
  --sage: #5a6b4a;
  --divider: #c9b99a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

* { -webkit-tap-highlight-color: transparent; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── HEADER ─── */
header {
  position: relative;
  text-align: center;
  padding: 72px 40px 56px;
  border-bottom: 1px solid var(--divider);
  background: linear-gradient(to bottom, #ede5d0 0%, var(--cream) 100%);
  overflow: hidden;
}

.header-logo-link {
  display: inline-block;
  animation: fadeUp 1s ease both;
}

.header-logo {
  width: clamp(180px, 40vw, 340px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.header-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeUp 1s ease both;
}

.restaurant-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  animation: fadeUp 1s ease 0.15s both;
}

.restaurant-name em {
  display: block;
  font-style: italic;
  color: var(--rust);
  font-size: 0.58em;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeUp 1s ease 0.3s both;
}

.header-ornament span { flex: 1; max-width: 120px; height: 1px; background: var(--divider); }
.header-ornament i {
  font-style: normal;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

/* ─── PAGE TABS ─── */
.page-tabs {
  display: flex;
  justify-content: center;
  gap: 74px;
  padding: 0 0 28px;

}

.page-tab {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
  width: 100px;
  text-align: center;
}

.page-tab:hover { opacity: 0.8; }

.page-tab--active {
  color: var(--rust);
  opacity: 1;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  padding: 0 24px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  animation: fadeDown 0.8s ease 0.5s both;
}
nav::-webkit-scrollbar { display: none; }

nav a {
  display: inline-block;
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
nav a:focus { outline: none; }
nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
nav a.active { color: var(--rust); border-bottom-color: var(--rust); }

/* ─── MAIN ─── */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 100px;
  position: relative;
  z-index: 1;
}

/* ─── GETRÄNKE DESKTOP GRID ─── */
.getraenke-main {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  align-items: start;
}

.getraenke-full {
  grid-column: 1 / -1;
}

/* ─── SECTION ─── */
section {
  margin-top: 80px;
  scroll-margin-top: 60px;
  animation: fadeUp 0.8s ease both;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}

.section-header .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--divider), transparent);
}

.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.section-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 28px;
  opacity: 0.8;
}

/* ─── MENU ITEMS ─── */
.menu-list { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,185,154,0.4);
  transition: background 0.2s;
  position: relative;
}

.menu-item:last-child { border-bottom: none; }

.menu-item:hover .item-name { color: var(--rust); }

.item-left { display: flex; flex-direction: column; gap: 3px; }

.item-name-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.item-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.05em;
  min-width: auto;
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.item-tags { display: flex; gap: 5px; flex-wrap: wrap; }

.tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 500;
}

.tag-vegan    { background: #e8f0e5; color: var(--sage); border: 1px solid #b8ceaa; }
.tag-vegeta   { background: #f0ede5; color: #6b5830; border: 1px solid #c9b078; }
.tag-neu      { background: var(--rust); color: white; border: 1px solid var(--rust); }

.item-desc {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  opacity: 0.75;
}

.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.item-price .price-alt {
  display: block;
  font-size: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.6;
  font-style: italic;
}

/* ─── PIZZA GRID ─── */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 0;
}

.pizza-card {
  background: white;
  border: 1px solid var(--divider);
  border-radius: 2px;
  padding: 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.pizza-card:hover {
  box-shadow: 0 8px 30px rgba(26,20,16,0.08);
  transform: translateY(-2px);
}

.pizza-card .item-nr {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 17px;
}

.pizza-card .item-name {
  font-size: 17px;
}

.pizza-card .pizza-name-row {
  align-items: center;
  margin-bottom: 5px;
  padding-right: 24px;
}

.pizza-card .item-desc {
  font-size: 13.5px;
  padding-left: 0;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pizza-card .item-price {
  font-size: 17px;
  text-align: left;
}

.pizza-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

/* ─── EMPFEHLUNGEN ─── */
.empfehlung-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.empfehlung-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,185,154,0.4);
  transition: background 0.2s;
}
.empfehlung-item:last-child { border-bottom: none; }

.empfehlung-id-wrap {
  position: absolute;
  bottom: 4px;
  right: 6px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.empfehlung-id {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 45px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.save-icon-empf {
  position: relative !important;
  opacity: 0 !important;
  pointer-events: auto;
  touch-action: manipulation;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(184,147,42,0.4);
}
.save-icon-empf::after {
  content: '';
  position: absolute;
  inset: -10px;
}
.save-icon-empf.saved {
  opacity: 1 !important;
  color: var(--gold);
}
.empfehlung-item:hover .save-icon-empf { opacity: 0.7 !important; }
@media (max-width: 768px) {
  .save-icon-empf { opacity: 0.5 !important; }
  .save-icon-empf.saved { opacity: 1 !important; }
}

/* ─── MITTAGSTISCH ─── */
.mittag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.mittag-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  padding: 20px 22px 18px;
  position: relative;
  overflow: hidden;
}

.mittag-id {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  font-style: italic;
  color: var(--rust);
  opacity: 0.07;
  position: absolute;
  bottom: -10px;
  right: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mittag-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.4;
}

.mittag-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.65;
  margin-bottom: 14px;
}

.mittag-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.mittag-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

/* ─── DESSERTS ─── */

/* ─── FISCH / FLEISCH ─── */
.kategorie-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  opacity: 0.7;
  margin-top: 4px;
}

/* ─── GETRÄNKE CTA ─── */
.getraenke-cta {
  text-align: center;
  padding: 64px 24px;
  border-top: 1px solid var(--divider);
}

.getraenke-cta-ornament {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
}

.getraenke-cta-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.getraenke-cta-btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--divider);
  padding: 14px 36px;
  transition: border-color 0.2s, color 0.2s;
}

.getraenke-cta-btn:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.back-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover { color: var(--rust); }

/* ─── FOOTER ─── */
footer {
  text-align: center;
  padding: 64px 24px 48px;
  border-top: 1px solid var(--divider);
  position: relative;
  z-index: 1;
}

footer .footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 10px;
}

footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.5;
}

.footer-ornament {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.5;
  margin: 16px 0;
  display: block;
}

/* ─── PILL note ─── */
.pizza-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(184,147,42,0.05);
}

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,42,0.3);
  background: var(--cream);
  color: rgba(184,147,42,0.5);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: rgba(184,147,42,0.12);
}

/* ─── SAVED / MERKLISTE ─── */
#saved-btn {
  position: fixed;
  bottom: 32px;
  right: 82px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,42,0.3);
  background: var(--cream);
  color: rgba(184,147,42,0.7);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
}
#saved-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#saved-btn:hover { background: rgba(184,147,42,0.12); }
#saved-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  width: 17px; height: 17px;
  font-size: 10px;
  font-family: 'EB Garamond', serif;
  display: flex; align-items: center; justify-content: center;
  font-style: normal;
  pointer-events: none;
}

/* bookmark icon on items */
.save-icon {
  position: static;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245,240,232,0.92);
  border: 1px solid rgba(184,147,42,0.28);
  cursor: pointer;
  padding: 0;
  color: rgba(184,147,42,0.62);
  line-height: 0;
  transition: color 0.2s, opacity 0.2s, border-color 0.2s, background 0.2s;
  opacity: 0.72;
  touch-action: manipulation;
}
.save-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}
.save-icon svg path {
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
}
.save-icon.saved {
  color: var(--gold);
  border-color: rgba(184,147,42,0.7);
  background: rgba(184,147,42,0.08);
  opacity: 1 !important;
}
.save-icon.saved svg path { fill: rgba(184,147,42,0.2); }
.save-icon:hover { opacity: 1; }

/* drawer */
#saved-drawer {
  position: fixed;
  top: 0; right: -360px;
  width: 340px;
  max-width: 92vw;
  height: 100dvh;
  background: var(--cream);
  border-left: 1px solid rgba(184,147,42,0.2);
  z-index: 500;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(26,20,16,0.12);
}
#saved-drawer.open { right: 0; }
#drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(26,20,16,0.35);
  z-index: 499;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#drawer-overlay.open { opacity: 1; pointer-events: auto; }
#drawer-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(184,147,42,0.15);
  display: flex; justify-content: space-between; align-items: center;
}
#drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
}
#drawer-close {
  background: none; border: none; cursor: pointer;
  color: rgba(26,20,16,0.4); font-size: 20px; padding: 4px 8px;
  line-height: 1;
}
#drawer-close:hover { color: var(--ink); }
#drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.drawer-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(184,147,42,0.08);
  gap: 12px;
}
.drawer-item-name {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--ink);
  flex: 1;
}
.drawer-item-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.drawer-item-name-row .drawer-item-name {
  flex: 0 1 auto;
}
.drawer-item-name-row .item-tags {
  flex: 0 0 auto;
}
.drawer-item-copy {
  min-width: 0;
}
.drawer-item-nr {
  font-size: 0.78rem;
  color: rgba(26,20,16,0.4);
  margin-bottom: 2px;
}
.drawer-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(26,20,16,0.65);
  margin-top: 2px;
}
.drawer-item .item-tags {
  margin-top: 0;
  gap: 4px;
}
.drawer-item .tag {
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 1px 6px;
}
.drawer-item-price {
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  white-space: nowrap;
}
.drawer-item-remove {
  background: none; border: none; cursor: pointer;
  color: rgba(26,20,16,0.25); font-size: 14px; padding: 2px 4px;
  line-height: 1; flex-shrink: 0;
  position: relative;
  touch-action: manipulation;
}
.drawer-item-remove::after {
  content: '';
  position: absolute;
  inset: -10px;
}
.drawer-item-remove:hover { color: var(--rust); }
#drawer-empty {
  padding: 48px 20px;
  text-align: center;
  font-family: 'EB Garamond', serif;
  color: rgba(26,20,16,0.35);
  font-size: 0.95rem;
  font-style: italic;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  body { font-size: 16px; }
  body.getraenke-page { font-size: 18px; }

  header { padding: 48px 20px 40px; }

  nav { justify-content: flex-start; padding: 0 12px; }
  nav a { padding: 12px 10px; font-size: 10px; letter-spacing: 0.1em; }

  main { max-width: 100%; padding: 0 16px 60px; }

  section { margin-top: 56px; }

  .section-header h2 { font-size: 28px; }

  /* Menu items: stack price below on very small screens */
  .menu-item { gap: 8px; padding: 14px 0; }

  .item-name { font-size: 16px; }
  .item-desc { font-size: 14px; padding-left: 0; }
  .item-nr { font-size: 17px; }

  .item-price { font-size: 15px; }

  /* Empfehlungen */
  .empfehlung-item { grid-template-columns: 1fr auto; gap: 10px; padding: 16px 0; }
  .empfehlung-id { font-size: 30px; }

  /* Grids: single column */
  .pizza-grid { grid-template-columns: 1fr; }
  .mittag-grid { grid-template-columns: 1fr; }
  .pizza-card { padding: 16px 18px; }
  .pizza-card .item-name { font-size: 16px; }

  .mittag-card { padding: 14px 16px; }
  .mittag-name { font-size: 15px; }

  footer { padding: 48px 16px 36px; }
  footer .footer-name { font-size: 22px; }
}

@media (max-width: 400px) {
  header { padding: 36px 14px 32px; }
  main { padding: 0 12px 48px; }

  .section-header { gap: 12px; }
  .section-header h2 { font-size: 24px; }

  .item-name-row { gap: 6px; }
  .item-name { font-size: 15px; }

  .empfehlung-item { grid-template-columns: 1fr auto; gap: 8px; padding: 14px 0; }
  .empfehlung-id { font-size: 30px; }

  nav a { padding: 10px 8px; font-size: 9px; letter-spacing: 0.08em; }

  .lang-wrapper { top: 12px; left: 12px; }
}

/* ─── GETRÄNKE ─── */
.getraenke-content {
  display: grid;
  gap: 0 56px;
  max-width: 900px;
  margin: 0 auto;
}

.drink-subsection {
  margin-bottom: 32px;
}

.drink-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(201,185,154,0.4);
}

.drink-name {
  font-size: 15px;
  color: var(--ink);
}

.drink-prices {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.drink-prices b {
  font-weight: 500;
  color: var(--ink);
}

.drink-wine-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 10px 0 4px;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .getraenke-content { grid-template-columns: 1fr; }
  .getraenke-main { grid-template-columns: 1fr; }
  .getraenke-full { grid-column: 1; }
}

/* ─── LANGUAGE DROPDOWN ─── */
.lang-wrapper {
  position: absolute;
  top: 20px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.lang-icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
  filter: opacity(0.45);
  transition: filter 0.2s;
}

.lang-wrapper:hover .lang-icon {
  filter: opacity(0.75);
}

.lang-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gold);
  opacity: 0.7;
  pointer-events: none;
  flex-shrink: 0;
}

.lang-select {
  position: absolute;
  inset: -4px -4px -4px -4px;
  opacity: 0;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  cursor: pointer;
  border: none;
  background: transparent;
}

/* ── ALLERGEN LEGEND ── */
.allergen-legende-section {
  max-width: 900px;
  padding: 32px 24px 60px;
  border-top: 1px solid var(--divider);
}

.allergen-legende-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.allergen-legend-group {
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .allergen-legende-section > div {
    grid-template-columns: 1fr;
  }
}

.allergen-legend-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 500;
}

.allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3px 24px;
}

.allergen-legend-item {
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.8;
}

.allergen-code {
  font-weight: 600;
  color: var(--ink);
  display: inline-block;
  min-width: 28px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ── ALLERGEN CODES ON ITEMS ── */
.allergen-codes {
  font-size: 9px;
  color: var(--ink-soft);
  opacity: 0.65;
  letter-spacing: 0.05em;
  margin-left: 3px;
  vertical-align: super;
  font-family: 'EB Garamond', serif;
}
