/* ========================================
   KLAG'S Restaurant – Speisekarte Page Styles
   Premium full-menu layout
   ======================================== */

/* ================= Navigation ================= */

.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.menu-nav.scrolled {
  padding: 10px 0;
  background: rgba(16, 16, 15, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--gold-faint);
}

.menu-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  color: var(--gold);
  font-family: "Caveat", cursive;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(184, 154, 86, 0.08);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(184, 154, 86, 0.12);
}

.lang-switch {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 5px 10px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 3px;
  margin-left: 12px;
  transition: all 0.25s ease;
}

.lang-switch:hover {
  background: rgba(184, 154, 86, 0.15);
  border-color: var(--gold);
}

.lang-switch.active-lang {
  background: rgba(184, 154, 86, 0.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-faint);
  color: var(--gold);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

/* ================= Hero ================= */

.speisekarte-shell {
  min-height: 100vh;
}

.menu-hero {
  padding: 140px 24px 70px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(184, 154, 86, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--gold-faint);
}

.menu-hero-content .lotus {
  font-size: 38px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}

.menu-hero h1 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px auto 20px;
  max-width: 600px;
}

.hero-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.hero-rule p {
  margin: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

/* Speisekarten-Hero-Untertitel: italic entfernt für bessere Lesbarkeit
   (User-Feedback von mehreren Personen — Juli 2026). */
.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

/* ================= Menu Container ================= */

.menu-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

/* ================= Section Headers ================= */

.menu-section {
  margin-bottom: 64px;
  scroll-margin-top: 90px;
}

/* Indischer Panorama-Header oberhalb der Indisch-Sektion.
   Breiter/höher als auf der Startseite, weil hier mehr Platz zur Verfügung steht. */
.indian-hero-wide {
  margin: 0 0 26px;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--gold-faint);
  position: relative;
}

.indian-hero-wide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 65%;
  /* Kräftigerer Filter als der globale, damit die Gewürz-Farben nicht matt wirken.
     Analog zum .indian-hero auf der Startseite. */
  filter: saturate(1.15) contrast(1.15) brightness(0.95);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.indian-hero-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.35) 0%, rgba(16, 16, 15, 0) 30%, rgba(16, 16, 15, 0) 70%, rgba(16, 16, 15, 0.4) 100%),
    linear-gradient(90deg, rgba(16, 16, 15, 0.3) 0%, rgba(16, 16, 15, 0) 15%, rgba(16, 16, 15, 0) 85%, rgba(16, 16, 15, 0.3) 100%);
}

.indian-hero-wide:hover img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.1) brightness(0.85);
}

@media (max-width: 680px) {
  .indian-hero-wide {
    height: 150px;
    margin-bottom: 20px;
  }
}

/* Sonder-Positionierung fürs Vorspeisen-Bild: Fokus weiter oben, damit
   die Bruschettas dominieren und das Brett unten weniger Platz einnimmt. */
.indian-hero-wide img[src="hero-vorspeisen.webp"] {
  object-position: center 45%;
}

/* Sonder-Positionierung fürs Dessert-Bild: Fokus mittig,
   damit Kakao-Bestäubung oben UND Löffelspitze unten im Bild bleiben. */
.indian-hero-wide img[src="hero-dessert.webp"] {
  object-position: center 50%;
}

/* Sonder-Positionierung fürs Hauptgerichte-Bild: Fokus weit oben, damit
   die Flammen im Hintergrund präsent sind. Zusätzlich Vignette-Overlay-Anpassung
   in der zugehörigen Elternregel (siehe unten). */
.indian-hero-wide.hero-flames img {
  object-position: center 30%;
}

/* Reduzierte obere Abdunkelung im Vignette-Overlay für das Flammen-Bild —
   sonst würde der obere Rand die Flammen zusätzlich verschlucken. */
.indian-hero-wide.hero-flames::after {
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.1) 0%, rgba(16, 16, 15, 0) 25%, rgba(16, 16, 15, 0) 70%, rgba(16, 16, 15, 0.4) 100%),
    linear-gradient(90deg, rgba(16, 16, 15, 0.2) 0%, rgba(16, 16, 15, 0) 15%, rgba(16, 16, 15, 0) 85%, rgba(16, 16, 15, 0.2) 100%);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.section-ornament {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 6px;
}

.section-header h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.section-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.subsection-title {
  margin: 32px 0 16px;
  padding-left: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

/* ================= Menu Grid ================= */

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

/* ================= Menu Item ================= */

.menu-item {
  position: relative;
  padding: 20px 24px 20px 60px;
  border-bottom: 1px solid rgba(184, 154, 86, 0.1);
  transition: background 0.3s ease;
}

.menu-item:hover {
  background: rgba(184, 154, 86, 0.04);
}


.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-item-header h3 {
  margin: 0;
  flex: 1;
  color: #d6d0c7;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.menu-item-header h3 small {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.menu-price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

/* Speise-Beschreibungen: italic entfernt für bessere Lesbarkeit
   (User-Feedback von mehreren Personen — Juli 2026). Die Serif-
   Cormorant-Font mit weight 500 sieht auch ohne italic elegant aus. */
.menu-desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.menu-nr {
  position: absolute;
  left: 20px;
  top: 22px;
  color: var(--dim);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  opacity: 0.6;
}

/* ================= Vegetarian Tag ================= */

.tag-veg {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  background: rgba(127, 143, 89, 0.15);
  color: #7f8f59;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ================= Menu Notes ================= */

/* Info-Notes ("Zu den Hauptgerichten servieren wir Basmatireis"):
   italic entfernt für Lesbarkeit. Bleibt durch den goldenen Border-Left
   trotzdem visuell abgesetzt. */
.menu-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  background: rgba(184, 154, 86, 0.04);
  border-left: 3px solid var(--gold-faint);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
}

/* ================= Mango Lassi Highlight ================= */

.mango-lassi-highlight {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  margin: 56px 0 24px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(184, 154, 86, 0.08), rgba(184, 154, 86, 0.02));
  border: 1px solid var(--gold-faint);
  border-radius: 6px;
  position: relative;
}

.mango-lassi-highlight::before {
  content: "✦";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--bg);
  padding: 0 12px;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.lassi-image {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.lassi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Foto ist warm/atmosphärisch — Klag's-Filter minimal übersteuern */
  filter: saturate(0.95) contrast(1.05) brightness(0.9);
  transition: transform 0.6s ease;
}

.mango-lassi-highlight:hover .lassi-image img {
  transform: scale(1.04);
}

.lassi-content {
  text-align: left;
}

.lassi-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--dim);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lassi-content h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.lassi-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}

.lassi-prices {
  display: flex;
  gap: 32px;
}

.lassi-prices span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.lassi-prices strong {
  color: var(--gold);
  font-size: 19px;
  font-weight: 600;
  margin-left: 6px;
}

@media (max-width: 640px) {
  .mango-lassi-highlight {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 20px 20px 24px;
  }
  .lassi-image {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }
  .lassi-content { text-align: center; }
  .lassi-prices { justify-content: center; }
}

/* ================= Info Section ================= */

.menu-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 60px;
}

.info-card {
  padding: 28px 24px;
  border: 1px solid var(--gold-faint);
  border-radius: 4px;
  background: rgba(184, 154, 86, 0.03);
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
}

/* "Wide" variant of info-card: spans full row in the 2-column grid.
   Used für den Abholrabatt-Hinweis, der sich klar abheben soll. */
.info-card.info-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(184, 154, 86, 0.07), rgba(184, 154, 86, 0.03));
  border-color: var(--gold-soft);
}

.info-card.info-card-wide h3 {
  font-size: 22px;
}

.info-card.info-card-wide strong {
  color: var(--gold);
  font-weight: 700;
}

.info-card.info-card-wide em {
  color: var(--dim);
  font-style: italic;
}

.info-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--gold-faint);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.info-card a:hover {
  color: #d4b46a;
  border-bottom-color: var(--gold-soft);
}

/* ================= Opening Hours ================= */

.opening-hours-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.opening-hours-card {
  padding: 40px 36px;
  border: 1px solid var(--gold-faint);
  background: rgba(184, 154, 86, 0.03);
  text-align: center;
  border-radius: 4px;
}

.opening-hours-card h2 {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hours-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: auto;
}

.hours-table tr {
  border-bottom: 1px solid rgba(184, 154, 86, 0.1);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 20px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  vertical-align: top;
}

.hours-table td:first-child {
  text-align: right;
  color: var(--muted);
  font-weight: 500;
}

.hours-table td:last-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

.hours-table .ruhetag td {
  color: var(--dim);
  font-style: italic;
}

.hours-table .ruhetag td:last-child {
  color: var(--dim);
}

.hours-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}

.hours-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.25s;
}

.hours-note a:hover {
  opacity: 0.8;
}

/* ================= Footer ================= */

.menu-footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-faint);
  padding: 40px 24px;
}

.menu-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Caveat", cursive;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  margin: 3px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
}

.footer-meta {
  text-align: right;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0 0 10px;
  color: var(--dim);
  font-family: var(--serif);
  font-size: 13px;
}

.footer-meta a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-meta a:hover {
  color: var(--gold);
}

/* ================= Responsive ================= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 16, 15, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gold-faint);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .menu-hero {
    padding: 120px 20px 50px;
  }

  .menu-container {
    padding: 40px 16px 20px;
  }

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

  .menu-item {
    padding: 16px 16px 16px 48px;
  }

  .menu-nr {
    left: 14px;
  }

  .menu-item-header {
    flex-wrap: wrap;
  }

  .menu-item-header h3 {
    font-size: 18px;
  }

  .menu-info-section {
    grid-template-columns: 1fr;
  }

  .menu-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-meta {
    text-align: center;
  }

  .subsection-title {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .menu-hero h1 {
    font-size: 36px;
    letter-spacing: 0.12em;
  }

  .hero-rule p {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .menu-item-header h3 {
    font-size: 17px;
  }

  .menu-price {
    font-size: 17px;
  }

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

/* ================= Print-Button (sichtbar nur am Screen) ================= */

.print-action-bar {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}

.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.print-btn:hover,
.print-btn:focus-visible {
  background: rgba(184, 154, 86, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.print-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ================= Print – Speisekarte (A4, ohne Bilder, kompakt) ================= */

@media print {
  /* Seiteneinstellungen */
  @page {
    size: A4;
    margin: 14mm 14mm 16mm 14mm;
  }

  /* Global: helle Druckfläche, dunkler Text.
     Font-Size leicht reduziert (10.5 → 10) auf User-Wunsch 5. Juli 2026,
     um die letzte Seite besser zu füllen und ggf. eine ganze Seite zu
     sparen. Bleibt gut lesbar. */
  html, body {
    background: #fff !important;
    color: #1a1a1a !important;
    font-size: 10pt;
  }

  /* Globalen Bild-Filter zurücksetzen (falls Bilder doch erscheinen) */
  img {
    filter: none !important;
  }

  /* Nicht drucken: Navigation, Sticky-Call, Print-Button selbst,
     Bilder, Footer-Decoration, Hero-Background, Scroll-Reveal-Bugs.

     User-Feedback vom 5. Juli 2026: Die Panorama-Header pro Sektion
     (.indian-hero-wide) wurden im PDF als große weiße Blöcke gerendert –
     Bild wurde durch anderen Print-Regelblock ausgeblendet, aber der
     figure-Container mit seiner festen Höhe blieb stehen. Fix: die
     Panorama-Figures komplett aus dem Print-Flow nehmen. */
  .menu-nav,
  .sticky-call,
  .print-action-bar,
  .menu-hero figure,
  .indian-hero-wide,
  .lang-switch,
  .nav-toggle,
  .page-lang-switch {
    display: none !important;
  }

  /* Klag's-Druck-Header (kompakt, ohne riesigen Hero) */
  .menu-hero {
    padding: 0 0 12pt 0;
    background: none !important;
    border-bottom: 1pt solid #b89a56;
    text-align: center;
  }

  .menu-hero-content .lotus {
    font-size: 18pt;
    color: #b89a56;
    margin: 0;
  }

  .menu-hero h1 {
    color: #b89a56 !important;
    font-size: 26pt;
    letter-spacing: 0.18em;
    margin: 4pt 0 4pt;
  }

  .hero-rule {
    margin: 4pt auto 4pt;
    max-width: 100%;
  }

  .hero-rule p {
    color: #b89a56 !important;
    font-size: 9pt;
    letter-spacing: 0.16em;
  }

  .hero-rule span {
    background: linear-gradient(90deg, transparent, rgba(184,154,86,0.8), transparent) !important;
  }

  .hero-subtitle {
    color: #555 !important;
    font-size: 12pt;
    font-style: italic;
    margin: 2pt 0 0;
  }

  /* Hauptcontainer flach */
  .speisekarte-shell {
    min-height: 0;
  }

  .menu-container {
    max-width: 100%;
    padding: 8pt 0 0;
  }

  /* Sektionen kompakter, neuer Seitenumbruch vermeiden mittendrin.
     Vertikaler Abstand auf 9pt reduziert (war 14pt), damit die Karte
     insgesamt kompakter wird und weniger Seiten braucht. */
  .menu-section {
    margin-bottom: 9pt;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Größere Sektionen dürfen umbrechen, aber Überschriften bleiben oben */
  .menu-section-indian,
  #hauptgerichte {
    page-break-inside: auto;
    break-inside: auto;
  }

  .section-header {
    margin-bottom: 6pt;
    page-break-after: avoid;
    break-after: avoid;
  }

  .section-ornament {
    font-size: 12pt;
    color: #b89a56 !important;
    opacity: 1;
  }

  .section-header h2 {
    color: #b89a56 !important;
    font-size: 16pt;
    margin: 0 0 4pt;
    letter-spacing: 0.06em;
  }

  .section-line {
    background: linear-gradient(90deg, transparent, rgba(184,154,86,0.6), transparent) !important;
  }

  .subsection-title {
    color: #2a2a2a !important;
    font-size: 11.5pt;
    margin: 5pt 0 3pt;
    border-left: 2pt solid #b89a56;
    padding-left: 8pt;
    page-break-after: avoid;
    break-after: avoid;
  }

  /* Menu-Grid: bleibt 1-spaltig; Items kompakt */
  .menu-grid {
    gap: 0;
  }

  .menu-item {
    padding: 3pt 0 3pt 26pt;
    border-bottom: 0.5pt solid #d8c98e;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .menu-item:hover {
    background: none !important;
  }

  .menu-item-header h3 {
    color: #1a1a1a !important;
    font-size: 11.5pt;
    font-weight: 700;
  }

  .menu-item-header h3 small {
    color: #555 !important;
    font-size: 9pt;
  }

  .menu-price {
    color: #8a6d2a !important;
    font-size: 11.5pt;
    font-weight: 700;
    text-shadow: none !important;
  }

  .menu-desc {
    color: #444 !important;
    font-size: 9pt;
    margin: 1pt 0 0;
    line-height: 1.25;
  }

  .menu-nr {
    color: #999 !important;
    font-size: 8pt;
    left: 0;
    top: 5pt;
    opacity: 1;
  }

  /* Notes / Lassi-Highlight: schlicht */
  .menu-note {
    background: none !important;
    border-left: 2pt solid #b89a56;
    color: #555 !important;
    font-size: 9pt;
    padding: 3pt 8pt;
    margin: 4pt 0 0;
  }

  .mango-lassi-highlight {
    display: block !important;
    background: #f9f3e3 !important;
    border: 0.5pt solid #b89a56;
    padding: 8pt 12pt;
    margin: 10pt 0 8pt;
    text-align: center;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Im Druck: Bild + Ornament + Eyebrow weglassen (Toner sparen, kompakt) */
  .mango-lassi-highlight::before,
  .lassi-image,
  .lassi-eyebrow {
    display: none !important;
  }

  .lassi-content {
    text-align: center !important;
  }

  .lassi-content h3 {
    color: #8a6d2a !important;
    font-size: 13pt;
    margin: 0 0 2pt;
  }

  .lassi-content p {
    color: #555 !important;
    font-size: 10pt;
    margin: 0 0 4pt;
  }

  .lassi-prices {
    display: flex;
    justify-content: center;
    gap: 18pt;
  }

  .lassi-prices span {
    color: #1a1a1a !important;
    font-size: 10pt;
  }

  .lassi-prices strong {
    color: #8a6d2a !important;
    font-size: 11pt;
  }

  /* Info-Karten am Ende: 2-spaltig knapp, weniger Padding */
  .menu-info-section {
    grid-template-columns: 1fr 1fr;
    gap: 6pt;
    margin: 8pt 0 6pt;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .info-card {
    background: none !important;
    border: 0.5pt solid #b89a56;
    padding: 6pt 8pt;
  }

  .info-card h3 {
    color: #8a6d2a !important;
    font-size: 11pt;
    margin: 0 0 4pt;
  }

  .info-card p {
    color: #444 !important;
    font-size: 9.5pt;
    line-height: 1.35;
  }

  .info-card a {
    color: #8a6d2a !important;
    border-bottom: none;
  }

  .info-card.info-card-wide {
    background: #f9f3e3 !important;
  }

  /* Öffnungszeiten kompakt */
  .opening-hours-section {
    padding: 0;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .opening-hours-card {
    background: none !important;
    border: 0.5pt solid #b89a56;
    padding: 8pt 12pt;
  }

  .opening-hours-card h2 {
    color: #8a6d2a !important;
    font-size: 13pt;
    margin: 0 0 4pt;
  }

  .hours-table td {
    color: #1a1a1a !important;
    font-size: 9.5pt;
    padding: 2pt 10pt;
  }

  .hours-table td:first-child {
    color: #555 !important;
  }

  .hours-table .ruhetag td {
    color: #888 !important;
  }

  .hours-note {
    color: #555 !important;
    font-size: 9.5pt;
    margin-top: 5pt;
  }

  .hours-note a {
    color: #8a6d2a !important;
  }

  /* Footer komplett ausblenden, stattdessen kompakter Print-Footer (s.u.) */
  .menu-footer {
    display: none !important;
  }

  /* Print-spezifischer Footer (Pflichtinfo unten auf jeder Druck-Seite).
     Kompakt gehalten, damit wenig Seitenplatz verschwendet wird.
     `break-before: avoid` verhindert dass Chrome den Footer auf eine
     leere neue Seite pusht, wenn Restplatz auf der vorletzten Seite
     eigentlich reichen würde (leere Seite am PDF-Ende, Fix 7.7.2026). */
  .print-only-footer {
    display: block !important;
    text-align: center;
    margin-top: 8pt;
    padding-top: 5pt;
    border-top: 0.5pt solid #b89a56;
    color: #555 !important;
    font-family: var(--serif);
    font-size: 8.5pt;
    line-height: 1.4;
    break-before: avoid;
    page-break-before: avoid;
  }

  /* Öffnungszeiten-Sektion und Print-Footer als visueller Block halten —
     Chrome soll nicht zwischen beiden umbrechen. */
  .opening-hours-section {
    break-after: avoid;
    page-break-after: avoid;
  }

  .print-only-footer strong {
    color: #8a6d2a !important;
    font-weight: 700;
  }
}

/* Print-only Footer ist im Screen-Modus unsichtbar */
.print-only-footer {
  display: none;
}

/* ================================================================
   Scroll-Reveal, Microinteractions & Ornamentale Trenner
   ================================================================ */

/* 1) Reveal-Animation
   Wird nur aktiv, wenn JS lädt und auf <html> die Klasse `js` setzt.
   So bleibt die Karte ohne JS / für Crawler vollständig sichtbar. */

html.js .section-header,
html.js .menu-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

html.js .section-header.is-visible,
html.js .menu-item.is-visible {
  opacity: 1;
  transform: none;
}

/* 2) Hover-Microinteractions */

.menu-price,
.menu-nr {
  transition: text-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.menu-item:hover .menu-price {
  text-shadow: 0 0 10px rgba(184, 154, 86, 0.45);
}

.menu-item:hover .menu-nr {
  transform: translateX(3px);
  opacity: 0.95;
  color: var(--gold);
}

/* 3) Ornamentale Trenner alle 4 Items innerhalb einer Sektion
   Sektionen mit weniger als 4 Items bleiben unverändert. */

.menu-item:nth-of-type(4n):not(:last-of-type) {
  margin-bottom: 22px;
  padding-bottom: 34px;
}

.menu-item:nth-of-type(4n):not(:last-of-type)::after {
  content: "✦";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  padding: 2px 14px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.3em;
  opacity: 0.6;
  pointer-events: none;
  /* Verdeckt die darunter durchlaufende 1-px-Linie nur in der Mitte,
     so dass das Ornament wie ein Druckstempel ON the line wirkt. */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 16, 15, 0.96) 25%,
    rgba(16, 16, 15, 0.96) 75%,
    transparent 100%
  );
}

/* 4) Accessibility – Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  html.js .section-header,
  html.js .menu-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-price,
  .menu-nr {
    transition: none;
  }

  .menu-item:hover .menu-nr {
    transform: none;
  }
}

/* 5) Print – Animationen & Ornamente ausblenden, Karte komplett sichtbar */

@media print {
  html.js .section-header,
  html.js .menu-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-item::after {
    display: none !important;
  }
}

/* PRINT-FOOTER-LOGO-START */
/* =============================================================
   PRINT-FOOTER-LOGO — Kleines Klag's-Logo im PDF-Footer
   BEWUSST SEHR KLEIN (14pt) und 0-margin, weil größere Werte zu
   einer leeren Seitenumbruch-Situation geführt haben (Chrome-Print
   mit page-break-inside: avoid).
   Rein für Print. Am Screen unsichtbar.
   ============================================================= */
.print-only-footer-logo {
  display: none;
}
@media print {
  .print-only-footer-logo {
    display: block;
    margin: 0 auto 2pt;
    height: 14pt;
    width: auto;
    max-width: 36pt;
    filter: none;
  }
}
/* PRINT-FOOTER-LOGO-END */
