/* =============================================================
   PIZZERIA POST — Bestellseite
   Dunkles Theme, weisse Akzente
   ============================================================= */
/* Scrollleisten-Breite reservieren — Inhalt/Warenkorb rutscht nicht „unter“ die Bar */
html {
  scrollbar-gutter: stable;
}

/* ── Seiten-Hintergrund ──────────────────────────────────── */
.order-page {
  background: #f3f3f3b7;
}

/* Navbar auf Bestellseite immer deckend schwarz */
.order-page .site-header {
  background: #0f0f0f;
  border-bottom-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.order-page main {
  padding-top: 86px;
}

/* ── STICKY-STACK (Banner + Kategorien, gemeinsam = kein iOS-Bug) ─ */
.order-sticky-stack {
  position: -webkit-sticky;
  position: sticky;
  top: 86px;
  z-index: 90;
  background: #0e0b08;
}

@media (max-width: 899px) {
  .order-page main {
    padding-top: 92px;
  }
  .order-sticky-stack {
    top: 92px;
  }
}

/* ── INFO-BANNER ─────────────────────────────────────────── */
.order-banner {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.order-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  height: 46px;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-family: 'Inter', sans-serif;
  color: rgba(240,232,216,0.75);
  padding: 0 24px;
  height: 100%;
  white-space: nowrap;
}

.banner-item i {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.banner-item strong {
  color: #f0e8d8;
  font-weight: 600;
}

#deliveryStatus {
  justify-content: center;
}

.banner-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Status-Punkt */
.delivery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 400ms ease;
}

.delivery-dot.active {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse-green 2s ease-in-out infinite;
}

.delivery-dot.closed {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
  animation: none;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); }
}

.banner-hours-toggle {
  cursor: pointer;
  user-select: none;
  transition: color 220ms ease;
  margin-left: auto;
}

.banner-hours-toggle:hover {
  color: #f0e8d8;
}

.banner-chevron {
  font-size: 0.65rem;
  transition: transform 280ms ease;
}

.hours-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.22,1,0.36,1);
  background: #161109;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hours-dropdown.open {
  max-height: 280px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px 0;
}

.hours-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}

.hours-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hours-col li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,232,216,0.7);
}

.hours-col li span:first-child {
  color: rgba(240,232,216,0.5);
}

.closed {
  color: #e07070 !important;
}

/* ── HELLER LOOK: Karten + Warenkorb weiss ──────────────── */
.order-page .dish-card {
  background: #ffffff !important;
  border: 1px solid #afafaf !important;
}

.order-page .dish-card:hover {
  background: #f7f7f7 !important;
  border-color: #9f9f9f !important;
}

.order-page .dish-info h3 {
  color: #1a1a1a !important;
}

.order-page .dish-info p {
  color: rgba(0, 0, 0, 0.62) !important;
}

.order-page .dish-price {
  color: #111111 !important;
}

.order-page .cat-title {
  color: #000000 !important;
  border-bottom-color: #d3d3d3 !important;
}

/* Kategorie-Leiste (#f0f0f0): Buttons als klare „Chips“ + lesbare Scrollbar */
.order-page .cat-nav-wrap {
  border-bottom-color: #c8c8c8 !important;
  /* Weniger Abstand: Menü-Text liegt optisch näher unter der Scrollbar */
  padding-top: 22px !important;
  padding-bottom: 14px !important;
}

.order-page .cat-nav {
  scrollbar-color: rgba(0, 0, 0, 0.35) #e0e0e0 !important;
}

.order-page .cat-nav::-webkit-scrollbar-track {
  background: #e0e0e0 !important;
  border-radius: 99px;
}

.order-page .cat-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.28) !important;
  border-radius: 99px;
}

.order-page .cat-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.42) !important;
}

.order-page .cat-btn {
  background: #ffffff !important;
  border: 1px solid #b5b5b5 !important;
  color: #1f1f1f !important;
  
}

.order-page .cat-btn:hover {
  background: #fafafa !important;
  border-color: #6a6a6a !important;
  color: #0a0a0a !important;
}

.order-page .cat-btn.active {
  background: #141414 !important;
  border-color: #141414 !important;
  color: #ffffff !important;
}

/* .btn-secondary: sonst transparenter Rand — auf weissem Grund unsichtbar */
.order-page .dish-modal .btn.btn-secondary,
.order-page .btn-cart-upsell {
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.order-page .dish-modal .btn.btn-secondary:hover,
.order-page .btn-cart-upsell:hover {
  border-color: rgba(0, 0, 0, 0.32) !important;
  background: #f5f5f5 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Zur Kasse: primär, schwarz */
.order-page .cart-sidebar .btn-checkout,
.order-page #cartSidebar .btn-checkout {
  background: #0f0f0f !important;
  color: #ffffff !important;
  border: 1px solid #0f0f0f !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22) !important;
}

.order-page .cart-sidebar .btn-checkout:hover,
.order-page #cartSidebar .btn-checkout:hover {
  background: #252525 !important;
  border-color: #252525 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28) !important;
}

.order-page .cart-sidebar .btn-checkout i,
.order-page #cartSidebar .btn-checkout i {
  color: #ffffff !important;
}

.order-page .add-btn {
  border-color: rgba(0, 0, 0, 0.35) !important;
  color: rgba(0, 0, 0, 0.68) !important;
}

.order-page .add-btn:hover {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.order-page .cart-sidebar,
.order-page #cartSidebar.cart-sidebar,
.order-page aside.cart-sidebar,
.order-page #cartSidebar .cart-summary {
  background: #ffffff !important;
  border-color: #afafaf !important;
}

.order-page .cart-header,
.order-page #cartSidebar .cart-header {
  background: #ffffff !important;
  border-bottom-color: #d3d3d3 !important;
}

.order-page .cart-header h3,
.order-page #cartSidebar .cart-header h3 {
  color: #1a1a1a !important;
}

.order-page .cart-header h3 i,
.order-page #cartSidebar .cart-header h3 i {
  color: rgba(0, 0, 0, 0.52) !important;
}

.order-page .cart-header-meta,
.order-page #cartSidebar .cart-header-meta {
  color: rgba(0, 0, 0, 0.55) !important;
}

.order-page .cart-close-btn {
  background: #ffffff !important;
  border-color: #bdbdbd !important;
  color: rgba(0, 0, 0, 0.65) !important;
}

.order-page .cart-close-btn:hover {
  background: #f3f3f3 !important;
  color: #111111 !important;
}

.order-page .cart-item,
.order-page #cartSidebar .cart-item {
  border-bottom-color: #e1e1e1 !important;
}

.order-page .cart-item-name,
.order-page #cartSidebar .cart-item-name {
  color: #1a1a1a !important;
}

.order-page .cart-item-meta,
.order-page .cart-item-unit,
.order-page .cart-item-price,
.order-page #cartSidebar .cart-item-meta,
.order-page #cartSidebar .cart-item-unit,
.order-page #cartSidebar .cart-item-price {
  color: rgba(0, 0, 0, 0.62) !important;
}

.order-page .cart-item-line,
.order-page #cartSidebar .cart-item-line {
  color: #111111 !important;
}

.order-page .qty-btn,
.order-page #cartSidebar .qty-btn {
  border-color: rgba(0, 0, 0, 0.32) !important;
  color: rgba(0, 0, 0, 0.72) !important;
}

.order-page .qty-num,
.order-page #cartSidebar .qty-num {
  color: #1a1a1a !important;
}

.order-page .cart-row,
.order-page .cart-total,
.order-page #cartSidebar .cart-row,
.order-page #cartSidebar .cart-total {
  color: #1a1a1a !important;
}

.order-page .cart-total {
  border-top-color: #d3d3d3 !important;
}

.order-page .cart-empty i,
.order-page #cartSidebar .cart-empty i {
  color: rgba(0, 0, 0, 0.16) !important;
}

.order-page .cart-empty p,
.order-page #cartSidebar .cart-empty p {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Upsell „Noch dazu?“ — hell, zum weissen Warenkorb passend */
.order-page .cart-upsell,
.order-page #cartSidebar .cart-upsell {
  border: 1px solid #d5e3d7 !important;
  border-left: 3px solid #2a7d3e !important;
  background: linear-gradient(165deg, #f9fcf9 0%, #eef4ef 100%) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06) !important;
}

.order-page .cart-upsell-kicker,
.order-page #cartSidebar .cart-upsell-kicker {
  color: rgba(0, 0, 0, 0.48) !important;
}

.order-page .cart-upsell-title,
.order-page #cartSidebar .cart-upsell-title {
  color: #1a1a1a !important;
}

.order-page .cart-upsell-volume,
.order-page #cartSidebar .cart-upsell-volume {
  color: rgba(0, 0, 0, 0.5) !important;
}

.order-page .cart-upsell-price,
.order-page #cartSidebar .cart-upsell-price {
  color: #111111 !important;
}

.order-page .cart-upsell-visual,
.order-page #cartSidebar .cart-upsell-visual {
  background: #e8ece8 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07) !important;
}

/* Mindestbestellung / Ruhetag-Hinweis: gut lesbar */
.order-page .min-order-hint,
.order-page #cartSidebar .min-order-hint {
  background: rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.75) !important;
}

.order-page .min-order-hint i,
.order-page #cartSidebar .min-order-hint i {
  color: rgba(0, 0, 0, 0.42) !important;
}

.order-page .cart-closed-hint,
.order-page #cartSidebar .cart-closed-hint {
  background: #fff8ed !important;
  border: 1px solid rgba(200, 160, 90, 0.35) !important;
  color: rgba(0, 0, 0, 0.78) !important;
}

.order-page .cart-closed-hint i,
.order-page #cartSidebar .cart-closed-hint i {
  color: #a07020 !important;
}

.order-page .free-delivery,
.order-page #cartSidebar .free-delivery {
  color: #1a6b38 !important;
}

.order-page .cart-item-thumb--empty,
.order-page #cartSidebar .cart-item-thumb--empty {
  background: #ececec !important;
  border-color: #d8d8d8 !important;
}

.order-page .cart-item-thumb--drink,
.order-page #cartSidebar .cart-item-thumb--drink {
  background: #f0f4f0 !important;
  border-color: #d5e0d5 !important;
  color: rgba(0, 0, 0, 0.35) !important;
}

/* Popup: Gericht-Detail (Modal) */
.order-page .dish-modal-overlay {
  background: rgba(0, 0, 0, 0.45) !important;
}

.order-page .dish-modal {
  background: #ffffff !important;
  border: 1px solid #afafaf !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
}

.order-page .dish-modal-close {
  background: #ffffff !important;
  border: 1px solid #bdbdbd !important;
  color: #1a1a1a !important;
}

.order-page .dish-modal-close:hover {
  background: #f3f3f3 !important;
  border-color: #9e9e9e !important;
  color: #111111 !important;
}

.order-page .dish-modal-img-wrap {
  background: #f0f0f0 !important;
}

.order-page .dish-modal h3 {
  color: #1a1a1a !important;
}

.order-page .dish-modal p {
  color: rgba(0, 0, 0, 0.65) !important;
}

.order-page .dish-modal-footer #dishModalPrice {
  color: #111111 !important;
}

/* Checkout & Erfolg: hell wie Warenkorb */
.order-page .checkout-overlay {
  background: rgba(0, 0, 0, 0.45) !important;
  color-scheme: light !important;
}

.order-page .checkout-modal {
  background: #ffffff !important;
  border: 1px solid #afafaf !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
  color-scheme: light !important;
}

.order-page .checkout-close {
  background: #ffffff !important;
  border: 1px solid #bdbdbd !important;
  color: #1a1a1a !important;
}

.order-page .checkout-close:hover {
  background: #f3f3f3 !important;
  border-color: #9e9e9e !important;
  color: #111111 !important;
}

.order-page .checkout-modal h2 {
  color: #1a1a1a !important;
}

.order-page .co-prog-line {
  background: rgba(0, 0, 0, 0.12) !important;
}

.order-page .co-prog-step span {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
  color: rgba(0, 0, 0, 0.45) !important;
}

.order-page .co-prog-step small {
  color: rgba(0, 0, 0, 0.45) !important;
}

.order-page .co-prog-step.active span {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.order-page .co-prog-step.active small {
  color: rgba(0, 0, 0, 0.55) !important;
}

.order-page .co-prog-step.done span {
  background: rgba(0, 0, 0, 0.12) !important;
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.order-page .co-prog-step.done small {
  color: rgba(0, 0, 0, 0.4) !important;
}

.order-page .order-type-card {
  background: #fafafa !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
}

.order-page .order-type-card:hover {
  background: #f3f3f3 !important;
  border-color: rgba(0, 0, 0, 0.22) !important;
}

.order-page .order-type-card.selected {
  border-color: #111111 !important;
  background: #f0f0f0 !important;
}

.order-page .order-type-icon {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #1a1a1a !important;
}

.order-page .order-type-card.selected .order-type-icon {
  background: #111111 !important;
  color: #ffffff !important;
}

.order-page .order-type-info strong {
  color: #1a1a1a !important;
}

.order-page .order-type-info span {
  color: rgba(0, 0, 0, 0.52) !important;
}

.order-page .order-type-min-note {
  color: #8a4a12 !important;
}

.order-page .co-time-label {
  color: rgba(0, 0, 0, 0.55) !important;
}

.order-page .co-delivery-region {
  border-color: rgba(0, 0, 0, 0.12) !important;
  background: #f8f8f8 !important;
}
.order-page .co-delivery-plz-input {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.22) !important;
}
.order-page .co-delivery-msg {
  color: #8a4a12 !important;
}
.order-page .co-delivery-details {
  color: rgba(0, 0, 0, 0.75) !important;
}

.order-page .co-time-hint {
  color: rgba(0, 0, 0, 0.52) !important;
}

.order-page .co-desired-time {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  color-scheme: light !important;
}

.order-page .co-desired-time:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2) !important;
}

.order-page .co-desired-time option {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

.order-page .co-step0-error {
  color: #b00020 !important;
}

.order-page .pickup-info-box {
  background: #f5f5f5 !important;
  border: 1px solid #d8d8d8 !important;
  color: rgba(0, 0, 0, 0.75) !important;
}

.order-page .pickup-info-box i {
  color: #1a1a1a !important;
}

.order-page .pickup-info-box strong {
  color: #111111 !important;
}

.order-page .maps-btn {
  color: rgba(0, 0, 0, 0.65) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.order-page .maps-btn:hover {
  color: #111111 !important;
  border-color: rgba(0, 0, 0, 0.4) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

.order-page .checkout-step h4 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.order-page .checkout-step h4 span {
  background: #111111 !important;
  color: #ffffff !important;
}

.order-page .form-group label {
  color: rgba(0, 0, 0, 0.55) !important;
}

.order-page .form-group input,
.order-page .form-group textarea {
  background: #fafafa !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  color: #1a1a1a !important;
}

.order-page .form-group input::placeholder,
.order-page .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
}

.order-page .form-group input:focus,
.order-page .form-group textarea:focus {
  border-color: rgba(0, 0, 0, 0.35) !important;
  background: #ffffff !important;
}

.order-page .save-address-label {
  color: rgba(0, 0, 0, 0.55) !important;
}

.order-page .save-address-label input[type="checkbox"] {
  accent-color: #111111 !important;
}

.order-page .saved-address-banner {
  background: #f5f5f5 !important;
  border: 1px solid #d8d8d8 !important;
  color: rgba(0, 0, 0, 0.75) !important;
}

.order-page .saved-address-banner i {
  color: rgba(0, 0, 0, 0.45) !important;
}

.order-page .saved-address-banner button {
  border-color: rgba(0, 0, 0, 0.2) !important;
  color: rgba(0, 0, 0, 0.6) !important;
}

.order-page .saved-address-banner button:hover {
  border-color: rgba(0, 0, 0, 0.4) !important;
  color: #111111 !important;
}

.order-page .order-summary-list {
  background: #f5f5f5 !important;
}

.order-page .sum-row {
  color: rgba(0, 0, 0, 0.82) !important;
}

.order-page .sum-qty {
  color: rgba(0, 0, 0, 0.45) !important;
}

.order-page .order-summary-address {
  background: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.75) !important;
}

.order-page .order-summary-total {
  color: #111111 !important;
  border-top-color: #d3d3d3 !important;
}

.order-page .sum-wunschzeit {
  color: rgba(0, 0, 0, 0.78) !important;
}

.order-page .sum-wunschzeit strong {
  color: #111111 !important;
}

.order-page .sum-type-badge.lieferung,
.order-page .sum-type-badge.abholen {
  background: rgba(0, 0, 0, 0.06) !important;
  color: rgba(0, 0, 0, 0.72) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.order-page .btn-back {
  background: #f5f5f5 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  color: #1a1a1a !important;
}

.order-page .btn-back:hover {
  background: #ececec !important;
  border-color: rgba(0, 0, 0, 0.28) !important;
  color: #111111 !important;
}

.order-page .form-error-banner {
  background: #fff0f0 !important;
  border-color: rgba(200, 60, 60, 0.35) !important;
  color: #8a1f1f !important;
}

.order-page .form-error-banner i {
  color: #c03030 !important;
}

.order-page input.input-error,
.order-page textarea.input-error {
  border-color: rgba(200, 60, 60, 0.55) !important;
  background: #fff8f8 !important;
}

.order-page .success-overlay {
  background: rgba(0, 0, 0, 0.45) !important;
}

.order-page .success-modal {
  background: #ffffff !important;
  border: 1px solid #afafaf !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
}

.order-page .success-modal h2 {
  color: #1a1a1a !important;
}

.order-page .success-modal p {
  color: rgba(0, 0, 0, 0.65) !important;
}

.order-page .success-contact a {
  color: #111111 !important;
}

.order-page .checkout-modal .btn.btn-secondary,
.order-page .success-modal .btn.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.order-page .checkout-modal .btn.btn-secondary:hover,
.order-page .success-modal .btn.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.32) !important;
  background: #f5f5f5 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 1024px) {
  .order-page .checkout-modal::before {
    background: rgba(0, 0, 0, 0.15) !important;
  }
}

/* ── GESCHLOSSEN-HINWEIS ─────────────────────────────────── */
.closed-notice {
  background: #2a1010;
  border-bottom: 1px solid rgba(220,80,80,0.25);
  padding: 12px 0;
}

.closed-notice .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #f08080;
}

.closed-notice i {
  flex-shrink: 0;
  font-size: 1rem;
}

/* Mittagspause: Hinweis, aber Bestellung für später möglich */
.closed-notice.closed-notice--info {
  background: #1a2520;
  border-bottom: 1px solid rgba(100, 180, 140, 0.35);
}

.closed-notice.closed-notice--info .container {
  color: #a8d4b8;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  padding-top: 8px;
  padding-bottom: 80px;
}

/* ── KATEGORIE-NAV WRAPPER ───────────────────────────────── */
.cat-nav-wrap {
  position: relative;
  background: #f0f0f0;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.07);

}

/* ── KATEGORIE-NAV ───────────────────────────────────────── */
.cat-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
  padding: 10px 0 10px;
  /* kein scroll-behavior: smooth — sonst Konflikt mit JS + Scrollbar-Klicks */
  scroll-behavior: auto;
}

.cat-nav::-webkit-scrollbar {
  height: 2px;
}

.cat-nav::-webkit-scrollbar-track {
  background: transparent;
}

.cat-nav::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
}

.cat-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.28);
}

/* ── MENU-AREA ───────────────────────────────────────────── */
.menu-area {
  min-width: 0;
}

.cat-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,232,216,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.cat-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  color: #f0e8d8;
}

.cat-btn.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #0e0b08;
  font-weight: 600;
}

/* ── KATEGORIE-TITEL ─────────────────────────────────────── */
.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.01em;
}

/* ── MENU-SECTION ────────────────────────────────────────── */
.menu-section {
  margin-bottom: 52px;
  padding-top: 18px;
  scroll-margin-top: 210px; /* Header + Banner + CatNav + Puffer */
}

/* ── DISH-GRID ───────────────────────────────────────────── */
.dish-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── DISH-CARD ───────────────────────────────────────────── */
.dish-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 14px 16px 14px 14px;
  transition: background 200ms, border-color 200ms, transform 200ms;
  cursor: pointer;
}

.dish-card:hover {
  background: #282828;
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ── GERICHT-BILD ────────────────────────────────────────── */
.dish-img-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 3px;
  overflow: hidden;
  background: #2a2016;
}

.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.dish-card:hover .dish-img-wrap img {
  transform: scale(1.06);
}

.dish-img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 232, 216, 0.35);
  font-size: 1.5rem;
}

.menu-loading-msg {
  margin: 0;
  padding: 10px 0 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.menu-empty-hint {
  margin: 0;
  padding: 24px 0 40px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.menu-empty-hint--err {
  color: #f0a8a8;
}

/* ── GERICHT-INFO ────────────────────────────────────────── */
.dish-info {
  flex: 1;
  min-width: 0;
}

.dish-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 4px;
  line-height: 1.3;
}

.dish-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(240,232,216,0.5);
  margin: 0 0 8px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dish-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* ── ADD-BUTTON ──────────────────────────────────────────── */
.add-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms, transform 150ms;
  line-height: 1;
}

.add-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0e0b08;
  transform: scale(1.1);
}

.add-btn:active {
  transform: scale(0.95);
}

/* ── GERICHT-DETAIL MODAL ───────────────────────────────── */
.dish-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.dish-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.dish-modal-overlay.is-open .dish-modal {
  transform: translateY(0) scale(1);
}

.dish-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 0 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.98);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 11, 8, 0.65);
  color: #f0e8d8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 200ms, border-color 200ms, color 200ms;
}

.dish-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.dish-modal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 280px;
  background: #2a2016;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.dish-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.22s ease;
}

/* Während das neue Bild lädt: kein altes Bild anzeigen, stattdessen Spinner */
.dish-modal-img-wrap.is-loading img {
  opacity: 0;
}

.dish-modal-img-wrap.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  animation: dish-modal-img-spin 0.65s linear infinite;
  pointer-events: none;
}

@keyframes dish-modal-img-spin {
  to {
    transform: rotate(360deg);
  }
}

.dish-modal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 18px 20px 8px;
  line-height: 1.3;
  padding-right: 44px;
}

.dish-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(240, 232, 216, 0.65);
  margin: 0 20px 16px;
  line-height: 1.55;
  white-space: normal;
}

.dish-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 20px;
  padding-top: 4px;
}

.dish-modal-footer #dishModalPrice {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.dish-modal-footer .btn {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .dish-modal-overlay,
  .dish-modal {
    transition: none;
  }
  .dish-modal-img-wrap img {
    transition: none;
  }
  .dish-modal-img-wrap.is-loading::after {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.45);
  }
}

/* ── WARENKORB SIDEBAR ───────────────────────────────────── */
.cart-sidebar {
  position: sticky;
  /* Header + Banner-Zeile + Kategorien-Leiste + Abstand */
  top: calc(86px + 46px + 56px + 12px);
  z-index: 40;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  max-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
}

.cart-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #242424;
  gap: 12px;
}

.cart-header-text {
  min-width: 0;
  flex: 1;
}

.cart-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-header-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240, 232, 216, 0.45);
  margin: 4px 0 0;
  line-height: 1.3;
}

.cart-header-meta:empty {
  display: none;
}

.cart-header h3 i {
  color: rgba(255,255,255,0.6);
}

.cart-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,232,216,0.6);
  font-size: 0.95rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms, color 180ms;
  flex-shrink: 0;
}

.cart-close-btn:hover {
  background: rgba(255,255,255,0.13);
  color: #f0e8d8;
}

@media (max-width: 1024px) {
  .cart-close-btn {
    display: flex;
  }
}

.cart-count {
  background: #ffffff;
  color: #0e0b08;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Leerer Warenkorb */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  text-align: center;
}

.cart-empty i {
  font-size: 2rem;
  color: rgba(255,255,255,0.12);
  display: block;
  margin-bottom: 4px;
}

.cart-empty p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,232,216,0.35);
  margin: 0;
  line-height: 1.5;
}

/* Warenkorb-Artikel */
.cart-items {
  list-style: none;
  padding: 8px 0 18px;
  margin: 0;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 150ms;
}

.cart-item-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-2, #141414);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-thumb--empty {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-thumb--drink {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2rem;
}

/* Upsell (z. B. Getränk) unter der Artikelliste */
.cart-upsell {
  flex-shrink: 0;
  display: none;
  padding: 10px 12px 14px;
  margin: 4px 10px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid #379b19e8;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.1) 0%, rgba(30, 30, 30, 0.95) 48%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cart-upsell-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.cart-upsell-visual {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.cart-upsell-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-upsell-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-upsell-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.55);
}

.cart-upsell-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.cart-upsell-volume {
  font-weight: 600;
  color: rgba(240, 232, 216, 0.55);
  font-size: 0.82rem;
}

.cart-upsell-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.btn-cart-upsell {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #ffffff;
  color: #0e0b08;
  cursor: pointer;
  transition: background 200ms, transform 150ms, box-shadow 200ms;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-cart-upsell:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.cart-item:hover {
  background: rgba(255,255,255,0.02);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #f0e8d8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.cart-item-unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
}

.cart-item-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.cart-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(240,232,216,0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}

.qty-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f0e8d8;
  min-width: 18px;
  text-align: center;
}

/* Warenkorb-Zusammenfassung */
.cart-summary {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 20px 20px;
  background: var(--surface, #1e1e1e);
}

.cart-summary .cart-row:not(.cart-total) {
  padding: 2px 0;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,232,216,0.6);
  padding: 4px 0;
}

.cart-total {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f0e8d8;
  padding-top: 4px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.free-delivery {
  color: #7ec899;
  font-weight: 600;
  font-size: 0.8rem;
}

.cart-closed-hint {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  border-radius: 3px;
}
.cart-closed-hint i {
  color: rgba(255,255,255,0.5);
}

.min-order-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 8px 12px;
  margin: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(240,232,216,0.55);
}

.min-order-hint i {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

/* Checkout-Button */
.btn-checkout {
  width: 100%;
  margin-top: 12px;
  padding: 13px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── FLY-TO-CART ANIMATION ───────────────────────────────── */
.fly-dot {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 9999;
  transition: none;
}

.fly-dot.flying {
  transition: top 550ms cubic-bezier(0.22, 1, 0.36, 1),
              left 550ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 550ms ease;
  transform: scale(0.4);
  opacity: 0;
}

@keyframes fab-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.28); }
  55%  { transform: scale(0.9); }
  75%  { transform: scale(1.12); }
  90%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

@keyframes fab-ring {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 0 rgba(255,255,255,0.3); }
  60%  { box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 0 rgba(255,255,255,0); }
}

.cart-fab.pop {
  animation: fab-bounce 480ms cubic-bezier(0.22,1,0.36,1),
             fab-ring    480ms ease forwards;
}

/* Toast-Hinweis */
.cart-toast {
  position: fixed;
  bottom: calc(116px + env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
  color: #f0e8d8;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  max-width: 220px;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-toast i {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ── WARENKORB-BACKDROP (Mobil) ──────────────────────────── */
.cart-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cart-backdrop.is-open {
  display: block;
}

.order-page.cart-sheet-open .cart-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

/* ── MOBILER FAB ─────────────────────────────────────────── */
.cart-fab {
  position: fixed;
  bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #0e0b08;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 200ms, box-shadow 200ms, opacity 200ms ease;
}

.cart-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

.fab-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #0e0b08;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CHECKOUT OVERLAY ────────────────────────────────────── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  /* Native Select-Dropdown (Windows/Chrome): dunkle Systemliste statt weiss/hellgrau */
  color-scheme: dark;
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1);
  color-scheme: dark;
}

.checkout-overlay.open .checkout-modal {
  transform: translateY(0);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,232,216,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}

.checkout-close:hover {
  background: rgba(255,255,255,0.1);
  color: #f0e8d8;
}

.checkout-modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 16px;
}

/* Schritt-Indikator */
.co-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 42px;
}
.co-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.co-prog-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.co-prog-step small {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.co-prog-step.active span {
  background: #ffffff;
  color: #0e0b08;
  border-color: #ffffff;
}
.co-prog-step.active small { color: rgba(255,255,255,0.7); }
.co-prog-step.done span {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
.co-prog-step.done small { color: rgba(255,255,255,0.45); }
.co-prog-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 8px 14px;
}

/* Bestellart-Karten */
.order-type-cards {
  display: flex;
  gap: 12px;
  margin: 18px 0 22px;
}
.order-type-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  color: inherit;
}
.order-type-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
}
.order-type-card.selected {
  border-color: #ffffff;
  background: rgba(255,255,255,0.09);
}
.order-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}
.order-type-card.selected .order-type-icon {
  background: #ffffff;
  color: #0e0b08;
}
.order-type-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.order-type-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f0e8d8;
}
.order-type-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.order-type-min-note {
  display: none;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 200, 150, 0.95);
  letter-spacing: 0.02em;
}

.order-type-card.order-type-card--unavailable,
.order-type-card:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.order-type-card.order-type-card--unavailable:hover,
.order-type-card:disabled:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.order-type-card.order-type-card--unavailable .order-type-min-note,
.order-type-card:disabled .order-type-min-note {
  display: block;
}

.co-delivery-region {
  margin: 0 0 18px;
  padding: 14px 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
}
.co-delivery-plz-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.co-delivery-plz-input {
  flex: 1 1 140px;
  min-width: 0;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #2c2c2c;
  color: #f5f0e8;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.co-delivery-plz-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.co-delivery-msg {
  font-size: 0.82rem;
  color: rgba(255, 220, 180, 0.9);
  margin: 10px 0 0;
  min-height: 1.2em;
}
.co-delivery-details {
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.co-delivery-region-name {
  margin: 0 0 8px;
}
.co-delivery-facts {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.45;
}

.co-time-slot {
  margin: 0 0 22px;
}

.co-time-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(240, 232, 216, 0.55);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.co-time-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 10px;
  line-height: 1.45;
}
.co-time-hint .co-time-hint-line {
  display: block;
  margin-top: 0.2em;
}
.co-time-hint .co-time-hint-line:first-of-type {
  margin-top: 0.35em;
}

.co-desired-time {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Explizit dunkel: sonst zeigen manche Browser die geöffnete Liste weiss mit kaum sichtbarem Text */
  background-color: #2c2c2c;
  color: #f5f0e8;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  color-scheme: dark;
}

.co-desired-time:focus {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 1px;
}

.co-desired-time option {
  background-color: #2c2c2c;
  color: #f5f0e8;
  padding: 0.5em 0.75em;
}

.co-step0-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #e8a0a0;
  margin: 10px 0 0;
  line-height: 1.35;
}

/* Abholinfo-Box */
.pickup-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 14px;
  margin: 14px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
/* Validierungs-Banner */
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 60, 60, 0.12);
  border: 1px solid rgba(220, 60, 60, 0.35);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #f5a0a0;
  animation: shake 0.3s ease;
}
.form-error-banner i {
  color: #f07070;
  font-size: 0.9rem;
  flex-shrink: 0;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

/* Ungültige Felder */
input.input-error,
textarea.input-error {
  border-color: rgba(220, 60, 60, 0.6) !important;
  background: rgba(220, 60, 60, 0.05) !important;
}
input.input-error:focus,
textarea.input-error:focus {
  border-color: rgba(220, 60, 60, 0.8) !important;
  box-shadow: 0 0 0 2px rgba(220, 60, 60, 0.15) !important;
}

.pickup-info-box i {
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}
.pickup-info-box div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pickup-info-box strong {
  color: #f0e8d8;
  font-size: 0.82rem;
}
.maps-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.maps-btn:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

/* Bestellart-Badge in Zusammenfassung */
.sum-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.sum-type-badge.lieferung {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.sum-type-badge.abholen {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.sum-wunschzeit {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(240, 232, 216, 0.88);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.sum-wunschzeit strong {
  color: #faf6ef;
  font-weight: 600;
}

.checkout-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.45);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-step h4 span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #0e0b08;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Formular-Felder */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group--wide {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240,232,216,0.5);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #f0e8d8;
  transition: border-color 200ms, background 200ms;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240,232,216,0.22);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.save-address-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(240,232,216,0.5);
  cursor: pointer;
  margin-top: 4px;
  margin-bottom: 16px;
}

.save-address-label input[type="checkbox"] {
  accent-color: #ffffff;
  width: 14px;
  height: 14px;
}

/* Gespeicherte Adresse */
.saved-address-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,232,216,0.7);
}

.saved-address-banner i {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.saved-address-banner button {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(240,232,216,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}

.saved-address-banner button:hover {
  border-color: rgba(255,255,255,0.35);
  color: #f0e8d8;
}

/* Zusammenfassung Schritt 2 */
.order-summary-list {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: rgba(240,232,216,0.75);
}

.sum-qty {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-right: 4px;
}

.order-summary-address {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: rgba(240,232,216,0.65);
  line-height: 1.5;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0e8d8;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-back {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(245, 240, 230, 0.92);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  margin-top: 12px;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.checkout-actions .btn-back {
  margin-top: 0;
}

/* ── ERFOLG OVERLAY ──────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 48px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.success-icon {
  font-size: 3.2rem;
  color: #7ec899;
  margin-bottom: 20px;
}

.success-modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 12px;
}

.success-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(240,232,216,0.6);
  line-height: 1.6;
  margin: 0 0 8px;
}

.success-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.success-modal .btn {
  margin-top: 24px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .order-layout {
    grid-template-columns: 1fr 320px;
    gap: 28px;
  }
}

/* Desktop: Warenkorb weiter unten starten, etwas breiter & luftiger */
@media (min-width: 1025px) {
  /*
   * Grid mit align-items:start macht die Warenkorb-Spalte nur so hoch wie der Inhalt —
   * dann endet der Sticky-Container früh und der Korb scrollt mit hoch (wirkt wie „verschwinden“).
   * Stretch: rechte Spalte = Höhe der Menü-Spalte → Sticky bleibt beim Scrollen sichtbar.
   */
  .order-layout > .cart-sidebar {
    align-self: stretch;
  }

  /* Mehr Luft unter der fixierten Leiste, kompaktere Zeilen, klarere Kontraste */
  .cart-sidebar {
    top: calc(86px + 46px + 56px + 100px);
    max-height: calc(100vh - 310px);
  }

  .cart-header {
    padding: 18px 22px 16px;
  }

  .cart-header h3 {
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    color: #faf6ef;
  }

  .cart-header-meta {
    font-size: 0.78rem;
    color: rgba(240, 232, 216, 0.55);
    margin-top: 5px;
  }

  .cart-items {
    padding: 6px 0 12px;
  }

  .cart-item {
    padding: 9px 20px;
    gap: 12px;
    border-bottom-color: rgba(255, 255, 255, 0.075);
  }

  .cart-item-thumb {
    width: 52px;
    height: 52px;
  }

  .cart-item-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: #f5f0e8;
    letter-spacing: 0.01em;
  }

  .cart-item-meta {
    margin-top: 4px;
  }

  .cart-item-unit {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.5);
  }

  .cart-item-line {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.93);
  }

  .cart-item-price {
    color: rgba(255, 255, 255, 0.68);
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: 0.88rem;
    border-radius: 5px;
  }

  .qty-num {
    font-size: 0.88rem;
  }

  .cart-summary {
    padding: 14px 22px 20px;
    border-top-color: rgba(255, 255, 255, 0.11);
  }

  .cart-row {
    font-size: 0.84rem;
    color: rgba(240, 232, 216, 0.68);
  }

  .cart-total {
    font-size: 1.02rem;
    color: #faf6ef;
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .btn-checkout {
    padding: 13px;
    font-size: 0.9rem;
  }

  .cart-upsell {
    margin: 4px 10px 8px;
    padding: 10px 12px 12px;
  }

  .cart-upsell-visual {
    width: 52px;
    height: 52px;
  }
}

/* Tablet & Handy: Warenkorb als Bottom-Sheet (nicht von rechts) */
@media screen and (max-width: 1024px) {
  /* Header: runterscrollen = ausblenden, hoch = wieder da (siehe setupHeaderAutoHide) — Transform ohne Verzögerung */
  .order-page .site-header {
    transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
  }
  .order-page.header-nav-hidden .site-header {
    transform: translateY(-100%);
  }
  .order-page main {
    transition: none;
  }
  .order-page.header-nav-hidden main {
    padding-top: 0 !important;
  }
  .order-page.header-nav-hidden .order-sticky-stack {
    top: 0 !important;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  /* Hohe Spezifität + ID, damit keine alten Regeln oder Cache überschreiben */
  .order-page #cartSidebar.cart-sidebar,
  .order-page aside.cart-sidebar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 14px 14px 0 0;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 300;
    box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.65);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Einheitlich neutral grau — kein Verlauf (wirkte auf Displays leicht „braun“) */
    background: #1e1e1e;
    /* Safe-Area nur unten in .cart-summary, nicht doppelt hier */
    padding-bottom: 0;
  }

  .order-page #cartSidebar.cart-sidebar.mobile-open,
  .order-page aside.cart-sidebar.mobile-open {
    transform: translateY(0) !important;
  }

  /* Drag-Indikator oben */
  .order-page #cartSidebar.cart-sidebar::before,
  .order-page aside.cart-sidebar::before {
    content: '';
    display: block;
    width: 44px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.22);
    margin: 12px auto 0;
    flex-shrink: 0;
  }

  .order-page #cartSidebar .cart-header {
    padding: 10px 18px 20px;
    border-bottom-color: rgba(255, 255, 255, 0.09);
    background: transparent;
  }

  .order-page #cartSidebar .cart-header h3 {
    font-size: 1.05rem;
    letter-spacing: 0.01em;
  }

  .order-page #cartSidebar .cart-header-meta {
    font-size: 0.78rem;
    color: rgba(240, 232, 216, 0.65);
    margin-top: 8px;
  }

  .order-page #cartSidebar .cart-header-right {
    padding-top: 4px;
  }

  .order-page #cartSidebar .cart-count {
    width: 26px;
    height: 26px;
    font-size: 0.74rem;
  }

  .order-page #cartSidebar .cart-body {
    padding: 4px 0 0;
  }

  .order-page #cartSidebar .cart-empty {
    padding: 32px 24px 48px;
    gap: 10px;
  }

  .order-page #cartSidebar .cart-empty i {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.1);
  }

  .order-page #cartSidebar .cart-empty p {
    font-size: 0.88rem;
    color: rgba(240, 232, 216, 0.45);
  }

  .order-page #cartSidebar .cart-items {
    padding: 18px 0 42px;
    gap: 0;
  }

  .order-page #cartSidebar .cart-upsell {
    margin: 6px 10px 12px;
    padding: 12px 12px 14px;
  }

  .order-page #cartSidebar .cart-upsell-visual {
    width: 64px;
    height: 64px;
  }

  .order-page #cartSidebar .btn-cart-upsell {
    padding: 10px 12px;
    font-size: 0.66rem;
  }

  .order-page #cartSidebar .cart-item {
    margin: 0 12px 16px;
    padding: 16px 16px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    background: rgba(255, 255, 255, 0.04);
    align-items: flex-start;
    gap: 14px;
  }

  .order-page #cartSidebar .cart-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 5px;
  }

  .order-page #cartSidebar .cart-item:last-child {
    margin-bottom: 0;
  }

  .order-page #cartSidebar .cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: normal;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-page #cartSidebar .cart-item-meta {
    margin-top: 10px;
  }

  .order-page #cartSidebar .cart-item-qty {
    align-self: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
  }

  .order-page #cartSidebar .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-width: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
  }

  .order-page #cartSidebar .qty-num {
    font-size: 0.9rem;
    min-width: 22px;
  }

  .order-page #cartSidebar .cart-summary {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    background: #1e1e1e;
    box-shadow: none;
  }

  .order-page #cartSidebar .cart-summary .cart-row:not(.cart-total) {
    padding: 2px 0;
  }

  .order-page #cartSidebar .cart-row {
    font-size: 0.78rem;
    padding: 2px 0;
  }

  .order-page #cartSidebar .cart-total {
    font-size: 1.05rem;
    padding-top: 6px;
    margin-top: 4px;
  }

  .order-page #cartSidebar .cart-total span:last-child {
    font-size: 1.15rem;
  }

  .order-page #cartSidebar .min-order-hint {
    margin: 18px 0 0;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .order-page #cartSidebar .btn-checkout {
    margin-top: 24px;
    padding: 15px;
    font-size: 0.88rem;
  }

  /* Hell-Theme: Mobile-Warenkorb nicht wieder auf Dunkel setzen */
  .order-page #cartSidebar.cart-sidebar,
  .order-page aside.cart-sidebar {
    background: #ffffff !important;
    border-top: 1px solid #d3d3d3 !important;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.12) !important;
  }

  .order-page #cartSidebar.cart-sidebar::before,
  .order-page aside.cart-sidebar::before {
    background: rgba(0, 0, 0, 0.18) !important;
  }

  .order-page #cartSidebar .cart-header {
    border-bottom-color: #e1e1e1 !important;
  }

  .order-page #cartSidebar .cart-header-meta {
    color: rgba(0, 0, 0, 0.55) !important;
  }

  .order-page #cartSidebar .cart-empty i {
    color: rgba(0, 0, 0, 0.12) !important;
  }

  .order-page #cartSidebar .cart-empty p {
    color: rgba(0, 0, 0, 0.48) !important;
  }

  .order-page #cartSidebar .cart-item {
    border: 1px solid #e8e8e8 !important;
    background: #fafafa !important;
  }

  .order-page #cartSidebar .cart-item-qty {
    border-color: rgba(0, 0, 0, 0.12) !important;
    background: #f3f3f3 !important;
  }

  .order-page #cartSidebar .qty-btn {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    color: rgba(0, 0, 0, 0.75) !important;
  }

  .order-page #cartSidebar .cart-summary {
    background: #ffffff !important;
    border-top-color: #d3d3d3 !important;
  }

  .cart-fab {
    display: flex !important;
  }

  .dish-img-wrap {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 600px) {
  /* Kein doppelter Rand: .container hat schon 2.5rem Seitenabstand — hier volle Breite nutzen */
  .order-banner .container.order-banner-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .order-banner-inner {
    flex-wrap: nowrap;
    height: 42px;
    padding: 0;
    justify-content: space-between;
    gap: 0;
  }

  /* Lieferstatus: Punkt + Text mittig im flexiblen Bereich */
  #deliveryStatus {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0 6px;
    height: auto;
    flex: 1;
    white-space: nowrap;
    justify-content: center;
  }

  /* Kostenlose Lieferung Item */
  .banner-item:not(#deliveryStatus):not(.banner-hours-toggle) {
    font-size: 0.78rem;
    padding: 0 8px;
    height: auto;
    flex: 1;
    justify-content: center;
  }

  /* Trennlinie sichtbar lassen, aber kleiner */
  .banner-divider {
    height: 14px;
    flex-shrink: 0;
  }

  /* Lieferzeiten-Toggle auf Handy ausblenden */
  .banner-hours-toggle,
  .banner-hours-toggle + .hours-dropdown {
    display: none !important;
  }

  .banner-item i {
    font-size: 0.82rem;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-section {
    scroll-margin-top: 175px; /* Mobile Header + Banner + CatNav + Puffer */
  }

  .cat-nav {
    padding: 8px 0 10px;
  }

  .cat-btn {
    font-size: 0.85rem;
    padding: 18px;
  }

  .dish-img-wrap {
    width: 68px;
    height: 68px;
  }

  .dish-info h3 {
    font-size: 0.88rem;
  }

  .dish-info p {
    display: block;
    white-space: normal;
    font-size: 0.74rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Checkout als Bottom-Sheet — passt in sichtbare Fläche (nicht unter Statusleiste weg) */
  .checkout-overlay {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .checkout-modal {
    width: 100%;
    max-width: 100%;
    /* Sichtbare Höhe: nicht über den Viewport — oben Titel & Schritte bleiben erreichbar */
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 16px);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 16px);
    border-radius: 20px 20px 0 0;
    padding: 0 18px calc(20px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    border-bottom: none;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .checkout-overlay.open .checkout-modal {
    transform: translateY(0);
  }

  /* Drag-Handle oben */
  .checkout-modal::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.18);
    margin: 10px auto 14px;
  }

  .checkout-modal h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    padding-right: 40px;
  }

  .co-progress {
    margin-bottom: 28px;
  }

  /* Schritt-Labels ausblenden auf Mobile */
  .co-prog-step small {
    display: none;
  }

  .order-type-cards {
    flex-direction: column;
    gap: 10px;
  }

  .order-type-card {
    padding: 14px 16px;
  }

  .checkout-modal .checkout-step h4 {
    margin-bottom: 12px;
  }

  .checkout-modal .form-row {
    margin-bottom: 10px;
    gap: 10px;
  }

  .res-form-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    flex-direction: column;
    gap: 10px;
  }
}
