/*
Theme Name: Fermac's 2026
Theme URI: https://fermacs.de
Author: Frank Hammel & Claude
Description: Mobile-first Custom-Theme für das Fermac's Irish Pub & Restaurant Mannheim. Dunkelgrün, Gold, Kerzenlicht.
Version: 1.2.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: fermacs
*/

@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --font-head: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --green-dark: #0d2b22;
  --green: #14483a;
  --green-light: #1d5c4a;
  --gold: #c9a227;
  --gold-light: #e3c766;
  --cream: #f6f1e3;
  --cream-dim: #e9e0c9;
  --ink: #1c1a16;
  --wood: #3a2a1c;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(0,0,0,.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-dark);
  color: var(--cream);
  padding: .65rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  box-shadow: var(--shadow);
}
.brand-wrap { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-badge {
  border-radius: 50%; border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(0,0,0,.4); background: #000;
}
.logo-sm { width: 42px; height: 42px; }
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .04em; color: var(--gold-light); }
.brand span { font-size: .72rem; opacity: .85; letter-spacing: .12em; text-transform: uppercase; }
.status-pill {
  font-size: .75rem; font-weight: 600;
  padding: .35rem .7rem; border-radius: 999px; white-space: nowrap;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
}
.status-pill.open::before  { content: "●"; color: #6fe09a; margin-right: .35rem; }
.status-pill.closed::before{ content: "●"; color: #e08b6f; margin-right: .35rem; }

nav.desktop { display: none; }
nav.desktop a {
  color: var(--cream); text-decoration: none;
  font-size: .9rem; padding: .4rem .7rem; border-radius: 8px;
}
nav.desktop a:hover { background: rgba(255,255,255,.12); }
nav.desktop a.cta { background: var(--gold); color: var(--green-dark); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 70% 10%, rgba(201,162,39,.14), transparent 60%),
    linear-gradient(180deg, rgba(13,43,34,.88) 0%, rgba(13,43,34,.60) 45%, rgba(13,43,34,.92) 100%),
    url('assets/img/hero-bar.jpg') center 60% / cover no-repeat,
    var(--green-dark);
  color: var(--cream);
  padding: 3rem 1.25rem 3.5rem;
  text-align: center;
}
.hero-logo {
  width: min(78vw, 430px); display: block; margin: 0 auto .5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.hero .claim { font-style: italic; font-size: 1.05rem; opacity: .92; }
.hero .today {
  margin: 1.4rem auto 0; max-width: 26rem;
  font-size: .95rem;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: .8rem 1rem;
}
.hero .today strong { color: var(--gold-light); }
.hero .actions { margin-top: 1.5rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn {
  font-weight: 700; text-decoration: none;
  padding: .85rem 1.5rem; border-radius: 999px; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .5rem; border: 0; cursor: pointer;
}
.btn.primary { background: var(--gold); color: var(--green-dark); box-shadow: var(--shadow); }
.btn.ghost   { background: transparent; color: var(--cream); border: 2px solid rgba(255,255,255,.45); }

/* ---------- Sections ---------- */
section.block, .content-wrap { padding: 2.5rem 1.25rem; max-width: 68rem; margin: 0 auto; }
section.block > h2 {
  font-size: 1.4rem; color: var(--green);
  text-transform: uppercase; letter-spacing: .09em;
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem;
}
section.block > h2::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }

/* Öffnungszeiten */
.hours-grid { display: grid; gap: 1rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.2rem 1.3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.07); border-top: 3px solid var(--gold);
}
.card h3 { color: var(--green); font-size: 1.05rem; margin-bottom: .6rem; }
table.hours { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.hours td { padding: .28rem 0; border-bottom: 1px dashed var(--cream-dim); }
table.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
table.hours tr.today-row td { font-weight: 700; color: var(--green); }
.kitchen-note { margin-top: .7rem; font-size: .85rem; color: #6b6455; }

/* Wochenprogramm */
.events-grid { display: grid; gap: .9rem; }
.event-card {
  background: var(--green); color: var(--cream);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: .3rem;
  box-shadow: var(--shadow);
}
.event-card .day {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light);
}
.event-card h3 { font-size: 1.15rem; }
.event-card p { font-size: .88rem; opacity: .9; }
.event-card .time { margin-top: auto; padding-top: .5rem; font-size: .85rem; font-weight: 600; }

/* Aktuelles */
.news-grid { display: grid; gap: 1rem; }
.news-card {
  background: #fff; border-radius: var(--radius); padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.07); border-left: 4px solid var(--gold);
  display: flex; flex-direction: column; gap: .4rem;
}
.news-card .date {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #8a6d14;
}
.news-card h3 { font-size: 1.12rem; color: var(--green); }
.news-card h3 a { text-decoration: none; }
.news-card p { font-size: .9rem; color: #474337; }
.news-card a.more {
  font-size: .88rem; font-weight: 700; color: var(--green);
  text-decoration: none; margin-top: auto; padding-top: .3rem;
}

/* Speisekarte-Teaser */
.menu-teaser { display: grid; gap: 1rem; }
.menu-cats { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .85rem; font-weight: 600;
  background: #fff; border: 1.5px solid var(--green); color: var(--green);
  padding: .4rem .9rem; border-radius: 999px; text-decoration: none;
}
@media (hover: hover) {
  .chip:hover { background: var(--green); color: var(--cream); }
}
.special {
  background: linear-gradient(135deg, var(--wood), #57402a);
  color: var(--cream); border-radius: var(--radius); padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.special .tag {
  display: inline-block; background: var(--gold); color: var(--green-dark);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 4px;
  margin-bottom: .5rem;
}
.special p { font-size: .9rem; opacity: .92; }

/* Der Pub */
.pub-photo { margin: 0 0 1.1rem; }
.pub-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.pub-text { font-size: 1rem; max-width: 46rem; }

/* Impressionen */
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.gallery-grid img {
  width: 100%; min-width: 0; height: auto; aspect-ratio: 1; object-fit: cover;
  border-radius: 10px; display: block;
}

/* Instagram */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.insta-tile {
  aspect-ratio: 1; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: rgba(255,255,255,.85);
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
}
.insta-tile:nth-child(2) { background: linear-gradient(135deg, #57402a, var(--wood)); }
.insta-tile:nth-child(3) { background: linear-gradient(135deg, var(--gold), #8a6d14); }

/* Google-Maps-Embed (nach Consent, in der Kontakt-Karte) */
.maps-embed { margin-top: .8rem; }
.maps-embed iframe {
  width: 100%; aspect-ratio: 4 / 3; border: 0;
  border-radius: 10px; display: block;
}

/* Zwei-Klick-Consent: externe Embeds (Insta-Feed, Google Maps) laden erst nach Einwilligung (DSGVO) */
.insta-consent {
  margin-top: .9rem; background: #fff; border-radius: var(--radius);
  padding: 1.2rem 1.3rem; box-shadow: 0 2px 10px rgba(0,0,0,.07);
  border-top: 3px solid var(--gold);
}
.insta-consent p { font-size: .95rem; }
.insta-note { margin-top: .7rem; font-size: .8rem; color: #6b6455; }
.insta-revoke {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: inherit; font: inherit; text-decoration: underline;
}

/* ---------- Innenseiten (Beiträge & Seiten) ---------- */
.content-wrap { background: transparent; }
.entry {
  background: #fff; border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.entry-header { margin-bottom: 1rem; }
.entry-header .date {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #8a6d14;
}
.entry-header h1 { color: var(--green); font-size: 1.6rem; margin-top: .2rem; }
.entry-thumb img { border-radius: 10px; margin-bottom: 1rem; }
.entry-content > * + * { margin-top: .9rem; }
.entry-content h2, .entry-content h3 { color: var(--green); margin-top: 1.4rem; }
.entry-content a { color: var(--green); }
.entry-content ul, .entry-content ol { padding-left: 1.3rem; }
.entry-content img { border-radius: 10px; }
.back-link { display: inline-block; margin-top: 1.2rem; font-weight: 700; color: var(--green); text-decoration: none; }

/* ---------- Speisekarte (Quick Restaurant Menu) ---------- */
.erm_menu { font-size: .95rem; }

/* Kategorie-Überschriften (STARTERS, MAINS ... / Getränke-Kategorien) */
.entry-content .erm_menu h2,
.entry-content h2.menu-kat {
  font-size: 1.15rem; margin-top: 1.8rem; margin-bottom: .2rem;
  color: var(--green); text-transform: uppercase; letter-spacing: .08em;
  scroll-margin-top: 5rem;
}
.entry-content h2.menu-kat {
  border-bottom: 2px solid var(--gold); padding-bottom: .25rem;
}

/* Kategorie-Sprungnavigation auf den Karten-Seiten */
.menu-kat-nav {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 1.3rem;
}
.menu-kat-nav a {
  font-size: .78rem; font-weight: 600; text-decoration: none;
  background: var(--cream); border: 1px solid var(--cream-dim);
  color: var(--green); padding: .3rem .7rem; border-radius: 999px;
}
@media (hover: hover) {
  .menu-kat-nav a:hover {
    background: var(--green); color: var(--cream); border-color: var(--green);
  }
}

/* Gericht-Titel: kein Absatz-Abstand, kompakter */
.entry-content .erm_menu h3.erm_product_title {
  margin-top: 0; font-size: 1rem; line-height: 1.3;
}

/* Zeilen-Layout: Bild kleiner, sauber ausgerichtet, Titel dichter an der Beschreibung */
.erm_menu .erm_product { margin-bottom: 1rem; }
.erm_menu .erm_title_price_desc { row-gap: 4px; }
.erm_menu a.image-popup { width: 88px !important; flex: 0 0 88px; }
.erm_menu img.erm_product_image { width: 100%; display: block; border-radius: 8px; }

/* Beschreibungen & Allergene: Altlast-Rahmen entfernen, einheitlich dezent */
.erm_menu .erm_product_desc { font-size: .85rem; color: #6b6455; }
.erm_menu .erm_product_desc p { margin: 0; }
/* Nur Altlast-Spans mit Inline-Styles neutralisieren (Badges bleiben unberührt) */
.erm_menu .erm_product_desc span[style] {
  border: 0 !important;
  font-size: .78rem !important;
  color: #8a8375 !important;
}

/* Allergen-Badges (Konvention: [A,C,G] in der Beschreibung) */
.erm_menu a.allergene {
  display: inline-flex; gap: .25rem; vertical-align: baseline;
  text-decoration: none; margin-left: .15rem;
}
.erm_menu .allergen {
  font-family: var(--font-head); font-size: .54rem; font-weight: 600;
  color: var(--green-dark); background: rgba(201, 162, 39, .25);
  border: 1px solid #a8861d; border-radius: 3px;
  padding: 0 .24rem; line-height: 1.4; letter-spacing: .03em;
}
@media (hover: hover) {
  .erm_menu a.allergene:hover .allergen { background: var(--gold); color: var(--green-dark); }
}

/* Preise: einzelner Preis schlicht, Varianten (Burger) als Pills */
.erm_menu .erm_title_price { flex-wrap: wrap; align-items: baseline; row-gap: .35rem; }
.erm_menu .erm_product_price { margin-left: auto; }
.erm_menu .erm_product_list_prices { flex-wrap: wrap; justify-content: flex-end; gap: .3rem .35rem; }
.erm_menu .erm_product_list_price {
  display: inline-flex; align-items: baseline; gap: .3rem;
  background: var(--cream); border: 1px solid var(--cream-dim);
  border-radius: 999px; padding: .12rem .55rem; white-space: nowrap;
}
.erm_menu .erm_product_list_price:only-child { background: none; border: 0; padding: 0; }
.erm_menu .price_name { font-size: .72rem; color: #6b6455; }
.erm_menu .price_name:empty { display: none; }
.erm_menu .price_price {
  font-size: .9rem; font-weight: 700; color: var(--green);
  font-variant-numeric: tabular-nums;
}
/* Mehrere Varianten: Preisblock auf eigene volle Zeile unter dem Titel */
.erm_menu .erm_product_price:has(.erm_product_list_price:nth-child(2)) {
  flex-basis: 100%; margin-left: 0;
}
.erm_menu .erm_product_price:has(.erm_product_list_price:nth-child(2)) .erm_product_list_prices {
  justify-content: flex-start;
}

/* Unbenannter Grundpreis bei Varianten-Gerichten: schlicht rechts neben dem Titel,
   nur die echten Varianten (mit Bezeichnung) bleiben als Pills */
.erm_menu .erm_title_price { position: relative; }
.erm_menu .erm_product_list_price:first-child:not(:only-child):has(> .price_name:empty) {
  position: absolute; top: 0; right: 0;
  background: none; border: 0; padding: 0;
}
.erm_menu .erm_title_price:has(.erm_product_list_price:nth-child(2)):has(.erm_product_list_price:first-child > .price_name:empty) h3.erm_product_title {
  padding-right: 4.5rem;
}

/* ---------- Getränkekarte: Spezial-Layout ---------- */
/* Grid: Titel oben links, Beschreibung DIREKT darunter, Preisstapel rechts über beide Zeilen */
.karte-getraenke .erm_menu .erm_title_price_desc {
  display: grid; grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr; /* Titelzeile bleibt schmal, Preisstapel-Überhang geht in Zeile 2 */
  column-gap: .7rem; row-gap: 3px; align-items: start;
}
.karte-getraenke .erm_menu .erm_title_price { display: contents; }
.karte-getraenke .erm_menu h3.erm_product_title { grid-column: 1; grid-row: 1; min-width: 0; }
.karte-getraenke .erm_menu .erm_product_price { grid-column: 2; grid-row: 1 / span 2; margin-left: 0; }
.karte-getraenke .erm_menu .erm_product_desc {
  grid-column: 1; grid-row: 2; min-width: 0; overflow-wrap: break-word;
}
/* Einzelpreis ohne Mengenangabe: keine leere Label-Spalte reservieren */
.karte-getraenke .erm_menu .erm_product_list_price:has(> .price_name:empty) {
  grid-template-columns: auto;
}

/* Größen-Preise: rechts untereinander statt Pills, Reihenfolge wie gepflegt,
   Preisspalte mit fester Breite, Mengen rechtsbündig -> "l" steht exakt untereinander */
.karte-getraenke .erm_menu .erm_product_list_prices {
  flex-direction: column; align-items: stretch; gap: .05rem;
  justify-content: flex-start;
}
.karte-getraenke .erm_menu .erm_product_list_price {
  background: none; border: 0; padding: 0;
  display: grid; grid-template-columns: auto 3.6rem; column-gap: .3rem;
  align-items: baseline;
}
.karte-getraenke .erm_menu .price_name {
  text-align: right; font-variant-numeric: tabular-nums;
}
.karte-getraenke .erm_menu .price_price { text-align: right; }
.karte-getraenke .erm_menu .erm_product_list_price:first-child:not(:only-child):has(> .price_name:empty) {
  position: static;
}
.karte-getraenke .erm_menu .erm_title_price h3.erm_product_title { padding-right: 0; }

/* Punktierte Führungslinie zwischen Titel und Preis */
.karte-getraenke .erm_menu h3.erm_product_title {
  flex: 1; display: flex; align-items: baseline; gap: .45rem;
}
.karte-getraenke .erm_menu h3.erm_product_title::after {
  content: ""; flex: 1; min-width: 1.5rem;
  border-bottom: 2px dotted rgba(107, 100, 85, .45);
  transform: translateY(-.28em);
}

/* Zweispaltig ab Tablet – alle Kategorien inkl. Whiskys */
@media (min-width: 800px) {
  .karte-getraenke .erm_menu .erm_menu_content {
    columns: 2; column-gap: 3.2rem;
  }
  .karte-getraenke .erm_menu .erm_product {
    break-inside: avoid; page-break-inside: avoid;
  }
}

/* ---------- Whisky Flavour Map ---------- */
.fwm-intro { font-size: .95rem; color: #474337; max-width: 46rem; margin-bottom: .9rem; }
.fwm-filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.fwm-filters button {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700; cursor: pointer;
  padding: .38rem .85rem; border-radius: 999px; border: 1.5px solid var(--green);
  background: #fff; color: var(--green);
}
.fwm-filters button.active { background: var(--green); color: var(--cream); }
.fwm-filters button .dot { display: inline-block; width: .6em; height: .6em; border-radius: 50%; margin-right: .3em; }

.fwm-layout { display: grid; gap: 1rem; }
@media (min-width: 900px) { .fwm-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }

.fwm-card {
  background: #fdfbf4; border-radius: var(--radius);
  border: 1px solid var(--cream-dim); padding: .6rem;
  position: relative; /* Anker für das Punkt-Popup */
}

/* Steckbrief-Popup am angeklickten Punkt (schließt bei Klick außerhalb) */
.fwm-popup {
  position: absolute; z-index: 20; display: none;
  min-width: 170px; max-width: 240px;
  background: var(--green); color: var(--cream);
  border-radius: 10px; padding: .7rem .85rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .3);
}
.fwm-popup.open { display: block; }
.fwm-popup .typ {
  font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.fwm-popup h4 {
  font-family: var(--font-head); font-size: 1.05rem; color: var(--cream);
  margin: .1rem 0 .15rem; letter-spacing: .03em;
}
.fwm-popup .preis { font-family: var(--font-head); font-size: .95rem; color: var(--gold-light); }
.fwm-popup .preis small { font-family: var(--font-body); font-size: .68rem; color: var(--cream); opacity: .8; }
.fwm-popup .tags { margin-top: .4rem; display: flex; flex-wrap: wrap; gap: .3rem; }
.fwm-popup .tags span {
  font-size: .7rem; padding: .12rem .5rem; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
}
.fwm-popup .lage { margin-top: .4rem; font-size: .74rem; opacity: .85; }
.fwm-card svg { display: block; width: 100%; height: auto; }
.fwm-card .axis-label { font-family: var(--font-head); font-weight: 600; letter-spacing: .18em; fill: var(--green); font-size: 19px; }
.fwm-card .axis-sub { font-family: var(--font-body); fill: #8a8375; font-size: 10.5px; letter-spacing: .08em; }
.fwm-card .grid-line { stroke: #eee7d4; stroke-width: 1; }
.fwm-card .mid-line { stroke: #d9cfae; stroke-width: 1.5; }
.fwm-card .dot-w { cursor: pointer; }
.fwm-card .dot-w circle.punkt { stroke: #fff; stroke-width: 1.6; }
.fwm-card .dot-w text {
  font-family: var(--font-body); font-size: 10.5px; fill: #6b6455;
  paint-order: stroke; stroke: #fdfbf4; stroke-width: 3px; stroke-linejoin: round;
}
.fwm-card .dot-w.dimmed { opacity: .15; }
.fwm-card .dot-w.selected circle.punkt { r: 9; stroke: var(--green-dark); stroke-width: 2.4; }
.fwm-card .leader { stroke: #c8bfa0; stroke-width: 1; fill: none; }

/* Tasting-Note-Tags in den Whisky-Listen (helle Variante der Steckbrief-Pills) */
.erm_menu .fwm-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.erm_menu .fwm-tags span {
  font-size: .72rem; padding: .1rem .5rem; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--cream-dim); color: var(--green);
}
/* Beschreibung einzeilig: erst Tasting Notes, dann Zusatzstoff-Badges */
.karte-getraenke .erm_menu .erm_product_desc:has(.fwm-tags) {
  display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .5rem;
}
.karte-getraenke .erm_menu .erm_product_desc:has(.fwm-tags) p { margin: 0; }
.karte-getraenke .erm_menu .erm_product_desc .fwm-tags { order: -1; }
@media (max-width: 799px) { .fwm-card .dot-w text { font-size: 9px; } }

.fwm-detail {
  background: var(--green); color: var(--cream); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow); min-height: 10.5rem;
}
.fwm-detail .typ {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light);
}
.fwm-detail h3 { font-size: 1.25rem; color: var(--cream); margin: .15rem 0 .3rem; }
.fwm-detail .preis { font-family: var(--font-head); font-size: 1.15rem; color: var(--gold-light); }
.fwm-detail .preis small { font-family: var(--font-body); font-size: .72rem; color: var(--cream); opacity: .8; }
.fwm-detail .tags { margin-top: .55rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.fwm-detail .tags span {
  font-size: .74rem; padding: .16rem .55rem; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
}
.fwm-detail .lage { margin-top: .6rem; font-size: .82rem; opacity: .85; }
.fwm-detail .hinweis { opacity: .78; font-size: .88rem; margin-top: .4rem; }

.fwm-finder {
  margin-top: 1rem; background: linear-gradient(135deg, var(--wood), #57402a);
  color: var(--cream); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow);
}
.fwm-finder h3 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-light);
}
.fwm-finder p { font-size: .88rem; opacity: .9; margin-top: .2rem; }
.fwm-finder .frage { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.fwm-finder .frage span { font-size: .85rem; font-weight: 700; margin-right: .3rem; }
.fwm-finder button {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700; cursor: pointer;
  padding: .34rem .8rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.4);
  background: transparent; color: var(--cream);
}
.fwm-finder button.active { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.fwm-fussnote { margin-top: .9rem; font-size: .78rem; color: #8a8375; }

/* Kategorie-Icons */
.karte-getraenke h2.menu-kat::before { margin-right: .45rem; }
#Whisky.menu-kat::before   { content: "🥃"; }
#Draught.menu-kat::before  { content: "🍺"; }
#Mix.menu-kat::before      { content: "🍻"; }
#Bottled.menu-kat::before  { content: "🍺"; }
#Long.menu-kat::before     { content: "🍹"; }
#Wine.menu-kat::before     { content: "🍷"; }
#Shot.menu-kat::before     { content: "🍸"; }
#Dig.menu-kat::before      { content: "🌿"; }
#Irish.menu-kat::before    { content: "🥃"; }
#Scottish.menu-kat::before { content: "🥃"; }
#American.menu-kat::before { content: "🥃"; }
#Hot.menu-kat::before      { content: "☕"; }
#Soft.menu-kat::before     { content: "🥤"; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--green-dark); color: var(--cream);
  padding: 2.5rem 1.25rem 6.5rem;
  margin-top: 1rem;
}
.footer-inner { max-width: 68rem; margin: 0 auto; display: grid; gap: 1.6rem; }
footer.site-footer h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: .5rem; }
footer.site-footer p, footer.site-footer a { font-size: .9rem; opacity: .92; }
footer.site-footer .legal { font-size: .8rem; opacity: .65; }

/* ---------- Sticky Action Bar (mobil) ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1px;
  background: rgba(13,43,34,.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
}
.sticky-bar a {
  font-weight: 700; text-decoration: none; white-space: nowrap;
  text-align: center; padding: 1rem .25rem; font-size: .85rem;
}
.sticky-bar .reserve { background: var(--gold); color: var(--green-dark); }
.sticky-bar .menu-link { background: var(--green-dark); color: var(--cream); }

/* ---------- Tablet ---------- */
@media (min-width: 640px) {
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .menu-teaser { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Desktop-Raster ---------- */
@media (min-width: 900px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .entry { padding: 2.2rem 2.4rem; }
}

/* ---------- Desktop-Navigation: erst wenn sie sicher in eine Zeile passt.
   Gedrehte Handys (Landscape, bis ~932px) behalten die mobile Ansicht. ---------- */
@media (min-width: 1100px) {
  nav.desktop { display: flex; gap: .3rem; align-items: center; }
  nav.desktop a { white-space: nowrap; }
  .sticky-bar { display: none; }
  footer.site-footer { padding-bottom: 2.5rem; }
}
