﻿@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/lora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/lora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/lora-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/lora-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --accent: #b84f32;
  --accent-hover: #9e3a22;
  --accent-tint: rgba(184, 79, 50, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: #1b1410;
  background: #faf6f0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body::before {
  background-image: none !important;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

nav {
  background: white;
  border-bottom: 1px solid rgba(27, 20, 16, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav .navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 73px;
  padding: 0.5rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1080px;
  margin: 0 auto;
}
nav .navbar-inner > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}
nav .navbar-inner > div:first-child img {
  height: 56px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
}
nav .navbar-inner > div:first-child span {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
}
nav .navbar-inner > div:last-child {
  gap: 1.5rem;
}
nav .navbar-inner > div:last-child a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(27, 20, 16, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.6rem 1.5rem 0.65rem;
}
nav .navbar-inner > div:last-child a:hover {
  color: #1b1410;
}
nav .navbar-inner > div:last-child a:last-child {
  border-radius: 50px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
nav .navbar-inner > div:last-child a:last-child:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  background: url("/images/background.jpg") center center/cover no-repeat #1b1410;
  min-height: 55vh;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 20, 16, 0.35) 0%, rgba(27, 20, 16, 0.7) 100%);
}
.hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 3rem);
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin-bottom: 1rem;
}
.hero p {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.hero-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-btn.hero-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-btn.hero-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.store-header .hero-btn {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
}
.store-header .hero-btn:hover {
  background: var(--accent);
  color: white;
}
.store-header .hero-btn.hero-btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.store-header .hero-btn.hero-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.hero-content {
  max-width: 800px;
  margin: -2rem auto 0;
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27, 20, 16, 0.08);
  text-align: center;
}
.hero-content h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #1b1410;
  margin-bottom: 1rem;
}
.hero-content p, .hero-content > :not(h2) {
  font-size: 0.9rem;
  color: rgba(27, 20, 16, 0.65);
  line-height: 1.8;
}

.store-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 0;
}
.store-header h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
}
.store-header p {
  font-size: 0.9rem;
  color: rgba(27, 20, 16, 0.6);
}

.content {
  max-width: 1080px;
  margin: 0 auto;
}
.content main {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.pill-popular {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.pill-popular::before {
  content: "★";
  font-size: 0.55rem;
}

.speisekarte > div {
  margin-bottom: 2.5rem;
}
.speisekarte h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1b1410;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.speisekarte .cat-description {
  font-size: 0.85rem;
  color: rgba(27, 20, 16, 0.65);
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}
.speisekarte .meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 0.6rem;
}
.speisekarte .meal-grid > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(27, 20, 16, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.speisekarte .meal-grid > div:hover {
  border-color: var(--accent-tint);
  box-shadow: 0 2px 12px rgba(27, 20, 16, 0.06);
}
.speisekarte .meal-grid > div.is-unavailable {
  opacity: 0.6;
}
.speisekarte .meal-grid > div > img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(27, 20, 16, 0.08);
}
.speisekarte .meal-grid > div > div:not(.meal-right) {
  flex: 1;
  min-width: 0;
}
.speisekarte .meal-grid > div > div:not(.meal-right) span {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
}
.speisekarte .meal-grid > div > div:not(.meal-right) .meal-description {
  font-size: 0.72rem;
  color: rgba(27, 20, 16, 0.6);
  margin-top: 0.1rem;
  white-space: pre-line;
  overflow: hidden;
  text-overflow: ellipsis;
}
.speisekarte .meal-grid > div > div:not(.meal-right) .meal-info {
  color: var(--accent-hover);
  font-weight: 500;
}
.speisekarte .meal-grid > div > div:not(.meal-right) .meal-hints {
  font-size: 9px;
  color: rgba(27, 20, 16, 0.65);
  font-style: italic;
  line-height: 1.4;
}
.speisekarte .meal-grid > div > div:not(.meal-right) .meal-hints a {
  color: var(--accent-hover);
  text-decoration: underline;
  font-style: normal;
}
.speisekarte .meal-grid > div > .meal-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.speisekarte .meal-grid > div .meal-price {
  margin-top: auto;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
}
.speisekarte .meal-grid > div .meal-baseprice {
  font-size: 0.7rem;
  color: rgba(27, 20, 16, 0.6);
  white-space: nowrap;
  margin-top: 0.1rem;
}
.speisekarte .meal-grid > div .variant-container .variant-pill {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  background: var(--accent-tint);
  color: var(--accent-hover);
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

.standorte {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 73px;
}
.standorte > h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.standorte > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.standorte > div > div {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(27, 20, 16, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
}
.standorte > div > div h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.standorte > div > div p {
  font-size: 0.85rem;
  color: rgba(27, 20, 16, 0.6);
  margin-bottom: 0.15rem;
}
.standorte > div > div .store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.standorte > div > div .store-card-btn {
  flex: 1 1 auto;
  padding: 0.55rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(27, 20, 16, 0.15);
  text-align: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: #1b1410;
  transition: all 0.2s;
}
.standorte > div > div .store-card-btn:hover {
  border-color: #1b1410;
}
.standorte > div > div .store-card-btn-primary {
  flex-basis: 100%;
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.standorte > div > div .store-card-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.kontakt {
  background: #1b1410;
  color: #faf6f0;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  margin-top: 2rem;
}
.kontakt > h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  max-width: 1080px;
  margin: 0 auto 1.5rem;
}
.kontakt > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.kontakt h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.kontakt p {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.55);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}
.kontakt p a {
  color: rgba(250, 246, 240, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.kontakt p a:hover {
  color: #faf6f0;
}
.kontakt #map {
  width: 400px;
  max-width: 90vw;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(250, 246, 240, 0.04);
  isolation: isolate;
}
.kontakt #map p {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  text-align: center;
  padding: 2rem 1rem;
}

.kontakt-reservation-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(250, 246, 240, 0.3);
  color: #faf6f0;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.kontakt-reservation-btn:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: rgba(250, 246, 240, 0.5);
}

footer {
  border-top: 1px solid #e8e0d4;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.75rem;
  color: rgba(27, 20, 16, 0.6);
}
footer nav {
  position: static;
  background: none;
  border: none;
  display: flex;
  gap: 1.5rem;
}
footer nav a {
  color: rgba(27, 20, 16, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
footer nav a:hover {
  color: var(--accent-hover);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal.modal-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 16, 0.5);
}

.modal-dialog {
  position: relative;
  overscroll-behavior: contain;
  background: white;
  border-radius: 12px;
  max-width: 700px;
  width: calc(100% - 2rem);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(27, 20, 16, 0.2);
}

.modal-close {
  background: white;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  color: white;
  background: #1b1410;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(27, 20, 16, 0.75);
}
.modal-body h1, .modal-body h2, .modal-body h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  color: #1b1410;
  margin: 1.25rem 0 0.5rem;
}
.modal-body h1 {
  font-size: 1.2rem;
}
.modal-body h2 {
  font-size: 1.1rem;
}
.modal-body h3 {
  font-size: 1rem;
}
.modal-body p {
  margin-bottom: 0.75rem;
}
.modal-body a {
  color: var(--accent);
  text-decoration: underline;
}
.modal-body a:hover {
  color: var(--accent-hover);
}
.modal-body ul, .modal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.store-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem;
}
.store-legal-nav[hidden] {
  display: none;
}

.store-legal-link {
  background: none;
  border: 1px solid #e8e0d4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  color: var(--accent);
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.store-legal-link:hover {
  background: #f0e6d8;
}

.store-legal-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.store-legal-back:hover {
  text-decoration: underline;
}

.legal-modal .modal-dialog {
  padding: 0;
  overflow: hidden;
}
.legal-modal .meal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.legal-modal .modal-body {
  padding: 2rem;
  padding-right: 2.5rem;
  scrollbar-width: thin;
}
.legal-modal .modal-body h1:first-child {
  margin-top: 0;
}

.meal-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 20, 16, 0.5);
}
.meal-loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(27, 20, 16, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: meal-modal-spin 0.8s linear infinite;
}
.meal-loading-overlay[hidden] {
  display: none;
}

.speisekarte .meal-grid > div[data-modal] {
  cursor: pointer;
  min-height: 80px;
}

.meal-modal .modal-dialog {
  padding: 0;
  overflow: hidden;
}
.meal-modal .meal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  color: black;
  background: white;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meal-modal .meal-modal-close:hover {
  color: white;
  background: #1b1410;
}
.meal-modal .meal-modal-image {
  max-height: 360px;
  max-width: 100%;
  margin: auto auto 2rem auto;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  display: block;
}
.meal-modal .modal-dialog:not(:has(.meal-modal-image)) .meal-modal-header {
  padding-right: 2.75rem;
}
.meal-modal .meal-modal-body {
  padding: 3rem;
  scrollbar-width: thin;
}
.meal-modal .meal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.meal-modal .meal-modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  flex: 1;
  min-width: 0;
}
.meal-modal .meal-modal-price {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--accent);
  white-space: nowrap;
}
.meal-modal .meal-modal-description {
  color: rgba(27, 20, 16, 0.75);
  white-space: pre-line;
  margin-bottom: 1rem;
}
.meal-modal .meal-modal-section {
  margin-top: 1rem;
}
.meal-modal .meal-modal-section h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1b1410;
  margin: 0 0 0.35rem;
}
.meal-modal .meal-modal-section p {
  color: rgba(27, 20, 16, 0.75);
  font-size: 0.85rem;
  margin: 0;
}
.meal-modal .meal-modal-section ul {
  padding-left: 1.25rem;
  margin: 0;
}
.meal-modal .meal-modal-section ul li {
  color: rgba(27, 20, 16, 0.75);
  font-size: 0.85rem;
}
.meal-modal .meal-modal-section a {
  color: var(--accent-hover);
  text-decoration: underline;
}
.meal-modal .meal-modal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.meal-modal .meal-modal-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(27, 20, 16, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: meal-modal-spin 0.8s linear infinite;
}
@keyframes meal-modal-spin {
  to {
    transform: rotate(360deg);
  }
}
.meal-modal .meal-modal-storeinfo {
  margin-top: 1.25rem;
  padding: 0.75rem 0.85rem;
  background: #f0e6d8;
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(27, 20, 16, 0.75);
  line-height: 1.5;
}
.meal-modal .meal-modal-disclaimer {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(27, 20, 16, 0.6);
  line-height: 1.5;
  text-align: center;
}
.meal-modal .nutri-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.meal-modal .nutri-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(27, 20, 16, 0.04);
  color: rgba(27, 20, 16, 0.75);
}
.meal-modal .nutri-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.meal-modal .nutri-table tr:last-child td {
  border-bottom: 0;
}

.floating-order-button {
  display: none;
  position: sticky;
  bottom: 32px;
  margin-left: auto;
  width: fit-content;
  border-radius: 50px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.6rem 1.5rem 0.65rem;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.floating-order-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-order-button:hover {
  background: var(--accent-hover);
}

.bottom-text {
  text-align: center;
  color: rgba(27, 20, 16, 0.65);
  font-size: 12px;
}

.meal-modal .meal-modal-image[hidden] {
  display: none;
}

.desc-item-detail {
  background: #f0e6d8;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: rgba(27, 20, 16, 0.75);
  line-height: 1.5;
}
.desc-item-detail strong {
  color: #1b1410;
}

.variant-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(27, 20, 16, 0.04);
  font-size: 0.88rem;
}
.variant-row:last-child {
  border-bottom: none;
}

.variant-name {
  color: rgba(27, 20, 16, 0.75);
}

.variant-price {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.reservation {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.reservation-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(27, 20, 16, 0.08);
  padding: 2.5rem;
}
.reservation-card h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.reservation-store-info {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(27, 20, 16, 0.65);
}
.reservation-store-info strong {
  color: #1b1410;
}

.reservation-intro {
  font-size: 0.88rem;
  color: rgba(27, 20, 16, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-row {
  display: flex;
  gap: 0.75rem;
}

.reservation-field {
  flex: 1;
}
.reservation-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(27, 20, 16, 0.65);
  margin-bottom: 0.3rem;
}
.reservation-field label span {
  font-weight: 400;
  color: rgba(27, 20, 16, 0.6);
}
.reservation-field input, .reservation-field select, .reservation-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e8e0d4;
  border-radius: 8px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.88rem;
  color: #1b1410;
  background: #faf6f0;
  transition: border-color 0.2s;
}
.reservation-field input:focus, .reservation-field select:focus, .reservation-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.reservation-field input:disabled, .reservation-field select:disabled, .reservation-field textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.reservation-field textarea {
  resize: vertical;
}

.reservation-field-full {
  flex-basis: 100%;
}

.reservation-submit {
  margin-top: 0.5rem;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 50px;
  background: var(--accent);
  color: white;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.reservation-submit:hover {
  background: var(--accent-hover);
}
.reservation-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reservation-success {
  padding: 1rem;
  background: rgba(90, 99, 64, 0.1);
  border: 1px solid rgba(90, 99, 64, 0.3);
  border-radius: 8px;
  color: #5a6340;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.reservation-error {
  padding: 1rem;
  background: rgba(184, 79, 50, 0.08);
  border: 1px solid rgba(184, 79, 50, 0.2);
  border-radius: 8px;
  color: var(--accent-hover);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.air-datepicker {
  --adp-font-family: Outfit, system-ui, sans-serif;
  --adp-font-size: 14px;
  --adp-accent-color: var(--accent);
  --adp-day-name-color: var(--accent);
  --adp-cell-background-color-selected: var(--accent);
  --adp-cell-background-color-selected-hover: var(--accent-hover);
  --adp-cell-background-color-in-range: var(--accent-tint);
  --adp-cell-background-color-in-range-hover: var(--accent-tint);
  --adp-background-color: white;
  --adp-background-color-hover: #f0e6d8;
  --adp-color: #1b1410;
  --adp-color-secondary: rgba(27, 20, 16, 0.65);
  --adp-border-color: rgba(27, 20, 16, 0.1);
  --adp-border-radius: 8px;
  --adp-border-color-inner: rgba(27, 20, 16, 0.04);
  --adp-nav-arrow-color: var(--accent);
  --adp-nav-color-secondary: rgba(27, 20, 16, 0.75);
  --adp-cell-border-radius: 8px;
  --adp-pointer-size: 10px;
  border: 1px solid rgba(27, 20, 16, 0.1);
  box-shadow: 0 4px 24px rgba(27, 20, 16, 0.08);
}
.air-datepicker .air-datepicker-nav--title {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  color: #1b1410;
}
.air-datepicker .air-datepicker-nav--action svg {
  fill: var(--accent);
}
.air-datepicker .air-datepicker-nav--action:hover {
  background: #f0e6d8;
}
.air-datepicker .air-datepicker-body--day-name {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.air-datepicker .air-datepicker-cell.-selected- {
  font-weight: 600;
}
.air-datepicker .air-datepicker-cell.-current- {
  color: var(--accent);
  font-weight: 600;
}
.air-datepicker .air-datepicker-cell.-disabled- {
  color: rgba(27, 20, 16, 0.6);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .content main {
    padding: 1.5rem 1rem;
  }
  .speisekarte .meal-grid {
    grid-template-columns: 1fr;
  }
  .kontakt > div {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .navbar-links {
    display: none;
  }
  footer .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .floating-order-button {
    display: block;
  }
  .kontakt {
    text-align: center;
  }
  .kontakt #map {
    justify-self: center;
  }
  .reservation-row {
    flex-direction: column;
  }
  .reservation-card {
    padding: 1.5rem;
  }
}
[data-theme=ocean] {
  --accent: #2a7a8a;
  --accent-hover: #1e5f6b;
  --accent-tint: rgba(42, 122, 138, 0.12);
}

[data-theme=forest] {
  --accent: #467a4d;
  --accent-hover: #376340;
  --accent-tint: rgba(70, 122, 77, 0.12);
}

[data-theme=plum] {
  --accent: #8a4568;
  --accent-hover: #6e3252;
  --accent-tint: rgba(138, 69, 104, 0.12);
}
