:root {
  --bg: #fff6ec;
  --bg-2: #f8e6d2;
  --card: #fffdf8;
  --card-2: #ffe9d2;
  --line: rgba(122, 62, 32, 0.16);
  --text: #3a2016;
  --muted: #7a5648;
  --red: #d62828;
  --gold: #c9892a;
  --ok: #2a9d6a;
  --shadow: 0 12px 28px rgba(90, 40, 20, 0.12);
  --wrap: 1180px;
  --header: 72px;
  --tap: 44px;
  --space: 16px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}
html.site-zoom { zoom: 1.25; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  line-height: 1.5;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 80;
  padding: 10px 14px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

main section[id] { scroll-margin-top: calc(var(--header) + 16px); }
.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 246, 236, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: max(10px, env(safe-area-inset-left));
  padding-right: max(4px, env(safe-area-inset-right));
}
.header-inner {
  min-height: calc(var(--header) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  width: min(var(--wrap), calc(100% - 16px));
  margin: 0;
}
.header-qr {
  display: grid;
  place-items: center;
  width: var(--tap);
  height: var(--tap);
  padding: 4px;
  margin: 10px 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.header-qr img { width: 100%; height: 100%; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--gold);
}
.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.site-nav a,
.site-nav button {
  min-height: var(--tap);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover,
.site-nav a.active,
.site-nav button:hover {
  color: var(--text);
  background: var(--card);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff1d6;
  color: #8a5a12;
  white-space: nowrap;
}
.badge.open { background: #e3f6ea; color: #1f7a4d; }
.badge.closed { background: #fde8e8; color: #b42318; }

.btn-red, .btn-gold, .btn-ghost, .action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:disabled, .action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.15);
}
.btn-gold { background: var(--gold); color: #2a1608; }
.btn-ghost { background: var(--card); border: 1px solid var(--line); }
.btn-full { width: 100%; }
.header-order { position: relative; padding-right: 22px; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #2a1608;
  min-width: 20px;
  height: 20px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-style: normal;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

.hero-section {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #000 center/cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 246, 236, 0.72) 0%, rgba(255, 246, 236, 0.18) 52%, rgba(255, 246, 236, 0.05) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  max-width: 760px;
  margin: 40px 0 40px max(20px, calc((100% - var(--wrap)) / 2));
  width: min(760px, calc(100% - 40px));
  color: var(--text);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-copy .lead { color: var(--muted); }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.display {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 52ch;
}
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 10px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.section { padding: 56px 0; }
.section-alt { background: var(--bg-2); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 16px 40px;
  align-items: end;
  margin-bottom: 28px;
}
.section-intro { color: var(--muted); line-height: 1.55; }

.menu-block { margin-bottom: 36px; }
.menu-block h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.menu-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(122, 62, 32, 0.18);
  text-align: left;
  width: 100%;
}
.menu-item-readonly { cursor: default; }
.menu-item h4 { font-size: 1.02rem; line-height: 1.25; }
.menu-item .desc { margin-top: 4px; }
.nr {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.desc { color: var(--muted); font-size: 0.86rem; line-height: 1.4; }
.plus {
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.facts {
  margin: 22px 0 0 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.photo-grid img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.info-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.info-card h3 { margin-bottom: 8px; }
.info-card p, .info-card a { color: var(--muted); line-height: 1.45; }
.hours { display: grid; gap: 8px; }
.hours div { display: flex; justify-content: space-between; gap: 12px; }
.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
  filter: grayscale(0.15) contrast(1.05);
}

#bestellen.section { padding: 48px 0 64px; }
#bestellen .wrap { width: min(1440px, calc(100% - 32px)); }
.order-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: var(--tap);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.channel strong { font-size: 0.9rem; }
.channel span { color: var(--muted); font-size: 0.85rem; }

.order-desk {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(300px, 0.75fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
}
.order-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px 20px;
  min-width: 0;
}
.cart-panel {
  position: sticky;
  top: calc(var(--header) + 18px);
}
.order-panel-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.order-panel-head h3, .cart-panel h3 { font-size: 1.2rem; }
.order-panel-head .search { margin: 0; flex: 1; }
.search {
  width: 100%;
  min-height: var(--tap);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  outline: none;
}
.search:focus { border-color: var(--gold); }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
}
.chip.active { border-color: var(--gold); color: var(--text); }

#order-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-height: min(780px, 74vh);
  overflow: auto;
  padding-right: 4px;
}
.item-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(201, 137, 42, 0.28);
  border-radius: 18px;
  padding: 14px;
  margin: 0;
  text-align: left;
  box-shadow: 0 4px 10px rgba(90, 40, 20, 0.05);
  cursor: pointer;
}
.item-row:hover {
  background: #fffaf3;
  border-color: var(--gold);
}
.item-row .dish-thumb {
  width: 96px;
  height: 96px;
  border-radius: 16px;
}
.item-row h3 { font-size: 1.18rem; line-height: 1.2; }
.item-row .desc { font-size: 0.92rem; margin-top: 4px; }
.item-row .nr { font-size: 1.12rem; }
.item-cat {
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}
.item-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}
.item-buy .price { font-size: 1.05rem; }
.item-row .plus, .item-qty .plus {
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
  font-size: 1.45rem;
}
.item-qty { margin-top: 0; }
.item-qty button {
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
}
.item-qty span { min-width: 1.2em; text-align: center; font-weight: 700; font-size: 1.05rem; }
.dish-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--card);
  flex-shrink: 0;
}
.dish-thumb.sm { width: 52px; height: 52px; }
.dish-thumb.empty { border: 1px dashed var(--line); }
.dish-photo {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin: 8px 0 12px;
}
.item-row .grow { flex: 1; min-width: 0; }
.menu-item .nr { font-size: 1.05rem; }

.cart-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(201, 137, 42, 0.22);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 8px;
}
.qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.qty button {
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
  background: var(--bg-2);
  font-size: 1.2rem;
  font-weight: 700;
}
.qty button[data-remove] {
  width: auto;
  height: auto;
  background: none;
  padding: 0 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.total-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin-top: 8px;
}
.total-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.empty { text-align: center; padding: 28px 12px; color: var(--muted); }
.notice { font-size: 0.8rem; color: var(--muted); margin-top: 8px; line-height: 1.4; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 calc(24px + var(--safe-bottom));
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 40;
}
.sheet {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  background: var(--card);
  border-radius: 24px;
  width: min(640px, calc(100% - 32px));
  max-height: 88vh;
  overflow: auto;
  padding: 14px 22px 24px;
  box-shadow: var(--shadow);
}
.sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #e2c4a8;
  margin: 2px auto 10px;
}
.sheet-close {
  position: sticky;
  top: 0;
  float: right;
  width: var(--tap);
  height: var(--tap);
  margin: -4px -8px 8px 8px;
  border-radius: 12px;
  background: var(--bg);
  font-size: 1.5rem;
  color: var(--muted);
  z-index: 2;
}
.opt-group { margin: 14px 0; }
.opt-group h4 { font-size: 0.86rem; margin-bottom: 8px; }
.opt {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-height: var(--tap);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 8px;
  background: var(--card);
  width: 100%;
  text-align: left;
}
.opt.on { border-color: var(--gold); }
.stepper { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 16px 0; }
.stepper button { width: var(--tap); height: var(--tap); border-radius: 14px; background: var(--bg); border: 1px solid var(--line); font-size: 1.4rem; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: var(--tap);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.field textarea { min-height: 72px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.toggle button { min-height: var(--tap); padding: 12px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); font-weight: 700; }
.toggle button.on { background: var(--red); border-color: var(--red); color: #fff; }
.ok-box { text-align: center; padding: 12px 8px 4px; }
.ok-box h2 { font-family: "Bebas Neue", sans-serif; font-size: 2rem; letter-spacing: 0.04em; margin: 8px 0; }

.kitchen-body { background: var(--bg); min-height: 100%; }

.menu-filter { margin: 0 0 12px; }
.menu-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.cart-ful { margin: 12px 0 10px; }
.cart-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: var(--muted);
}
.cart-area select {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}
.menu-block { margin-bottom: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.menu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 18px;
  text-align: left;
}
.menu-toggle h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0;
  padding: 0;
  border: 0;
}
.menu-toggle .chevron { color: var(--gold); font-size: 1.2rem; transition: transform 0.2s; }
.menu-block.open .chevron { transform: rotate(180deg); }
.menu-body { display: none; padding: 0 18px 18px; }
.menu-block.open .menu-body { display: grid; }
.facts-box {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(201, 137, 42, 0.45);
  border-radius: 16px;
  padding: 16px;
  margin: 14px 0 16px;
  font-size: 1rem;
}
.facts-box h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}
.facts-box .fact-row {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.facts-box .fact-row:last-child { padding-bottom: 0; border-bottom: 0; }
.facts-box .fact-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.facts-box .fact-value { color: var(--text); margin: 0; line-height: 1.45; font-size: 1rem; }
.item-detail .nr { font-size: 1.2rem; }
.photo-grid button {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}
.photo-grid img { height: 180px; width: 100%; object-fit: cover; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 24px;
}
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-height: 80vh; max-width: 100%; margin: 0 auto; border-radius: 12px; object-fit: contain; }
.lightbox figcaption { color: var(--muted); margin-top: 10px; }
.lb-close, .lb-prev, .lb-next {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--card);
  font-size: 1.6rem;
}
.lb-close { position: absolute; top: 16px; right: 16px; }

.qr-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 10, 6, 0.72);
}
.qr-popup[hidden] { display: none !important; }
.qr-popup figure {
  margin: 0;
  padding: 28px 28px 22px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: min(92vw, 560px);
}
.qr-popup img {
  width: min(72vmin, 480px);
  height: min(72vmin, 480px);
  padding: 22px;
  background: #fff;
}
.qr-popup figcaption {
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}
.qr-popup figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-all;
}
.qr-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: var(--tap);
  height: var(--tap);
  border-radius: 14px;
  background: #fff;
  font-size: 1.6rem;
  color: var(--text);
}
.legal-copy { font-size: 0.88rem; line-height: 1.55; color: var(--muted); }
.legal-copy h2 { color: var(--text); }
.legal-copy h3 { color: var(--text); font-size: 1rem; margin: 16px 0 6px; }
.legal-copy p { margin: 0 0 8px; }
.legal-copy ul { margin: 0 0 10px 18px; }
.legal-copy a { text-decoration: underline; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.contact-line strong { color: var(--muted); font-weight: 600; }

.install-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.install-bar[hidden] { display: none !important; }
.install-bar img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.install-bar div { flex: 1; min-width: 0; }
.install-bar strong { display: block; font-size: 0.95rem; }
.install-bar span { display: block; font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.install-bar .btn-red { min-height: 40px; padding: 0 12px; font-size: 0.88rem; }
.install-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1.4rem;
  color: var(--muted);
  flex-shrink: 0;
}
body.has-install-bar { padding-bottom: calc(92px + var(--safe-bottom)); }
.install-help { text-align: center; }
.install-help img { margin: 4px auto 12px; border-radius: 16px; }
.install-help ol {
  text-align: left;
  margin: 16px 0 20px 18px;
  color: var(--text);
  line-height: 1.55;
}
.install-help li { margin-bottom: 8px; }
.install-share {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .lightbox { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { justify-self: center; }
}

@media (max-width: 980px) {
  .header-qr { display: none; }
  .header-inner { flex-wrap: wrap; gap: 10px; padding: 10px 0 calc(10px + var(--safe-top)); }
  .wrap { width: min(var(--wrap), calc(100% - 24px)); }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav, .header-actions .header-call { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 5;
    padding-bottom: 8px;
  }
  .site-nav.open a, .site-nav.open button { width: 100%; justify-content: flex-start; }
  .header-actions { margin-left: 0; }
  .section { padding: 40px 0; }
  .section-head, .about-grid, .contact-grid, .menu-cols, .order-desk {
    grid-template-columns: 1fr;
  }
  .section-head { margin-bottom: 20px; }
  .hero-section { min-height: min(68vh, 560px); }
  .hero-copy {
    margin: 20px auto 24px;
    padding: 22px 20px;
    width: min(760px, calc(100% - 24px));
  }
  .order-desk { min-height: 0; }
  #order-menu { grid-template-columns: 1fr; max-height: min(62vh, 560px); }
  .item-row { padding: 12px; gap: 12px; }
  .item-row .dish-thumb { width: 76px; height: 76px; }
  .cart-panel { position: static; }
  .photo-grid img { height: 140px; }
  .sheet {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    padding-bottom: calc(20px + var(--safe-bottom));
  }
  .install-bar { left: 10px; right: 10px; }
}

@media (max-width: 640px) {
  .hero-actions { display: grid; }
  .hero-actions .btn-red, .hero-actions .btn-gold, .hero-actions .btn-ghost { width: 100%; }
  .header-order span, .header-order { font-size: 0.85rem; }
  .menu-item { grid-template-columns: 48px 1fr auto; gap: 10px; padding: 12px 0; }
  .dish-thumb.sm { width: 48px; height: 48px; }
  .order-panel { padding: 14px; }
  #bestellen .wrap { width: min(1440px, calc(100% - 20px)); }
}
