/*
 * CREVIANO — Overrides & Fixes
 * Lädt nach styles.css — korrigiert White-Screen-Bug
 * und bringt das Brand-Styling von Creviano.
 */

/* ── 0. Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { overflow-x: hidden; }

/* ── 1. White Screen Fix ────────────────────────── */
body.loaded #page-content   { opacity: 1 !important; }
body.loaded #main           { opacity: 1 !important; transform: none !important; }
body.loaded #header-container { opacity: 1 !important; transform: none !important; }
body.loaded #showcase-holder  { opacity: 1 !important; transform: none !important; }
body.loaded #footer-container { opacity: 1 !important; transform: none !important; }
.cd-cover-layer             { display: none !important; }
#magic-cursor               { display: none !important; }

/* Fallback: zeige alles wenn kein JS */
#page-content, #main, #header-container { opacity: 1; }

/* ── 2. Scroll Animations ───────────────────────── */
.has-animation,
.has-mask,
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.has-animation.in-view,
.has-mask.in-view,
.anim-fade.in-view {
  opacity: 1;
  transform: none;
}

/* ── 3. Navigation ──────────────────────────────── */
header nav .flexnav { display: none; flex-direction: column; gap: 0; }
header nav.open .flexnav { display: flex; }
header nav .flexnav li.link {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
header nav.open .flexnav li.link { opacity: 1; transform: none; }
header nav.open .flexnav li.link:nth-child(1) { transition-delay: 0.04s; }
header nav.open .flexnav li.link:nth-child(2) { transition-delay: 0.08s; }
header nav.open .flexnav li.link:nth-child(3) { transition-delay: 0.12s; }
header nav.open .flexnav li.link:nth-child(4) { transition-delay: 0.16s; }
header nav.open .flexnav li.link:nth-child(5) { transition-delay: 0.20s; }
header nav.open .flexnav li.link:nth-child(6) { transition-delay: 0.24s; }

#burger-wrapper { cursor: pointer; }

/* ── 4. Fullscreen Nav Overlay ───────────────────── */
body.fnav-open { overflow: hidden; }

#fullscreen-nav {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1);
}
#fullscreen-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.fn-close {
  position: absolute;
  top: 1.8rem;
  right: 2.5rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  z-index: 10;
}
.fn-close span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transition: background 0.2s;
}
.fn-close span:first-child { transform: translateY(1px) rotate(45deg); }
.fn-close span:last-child  { transform: translateY(-1px) rotate(-45deg); }
.fn-close:hover span { background: #fff; }

/* Nav links */
.fn-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
}

.fn-inner > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
#fullscreen-nav.is-open .fn-inner > :nth-child(1) { opacity:1; transform:none; transition-delay: 0.06s; }
#fullscreen-nav.is-open .fn-inner > :nth-child(2) { opacity:1; transform:none; transition-delay: 0.13s; }
#fullscreen-nav.is-open .fn-inner > :nth-child(3) { opacity:1; transform:none; transition-delay: 0.20s; }
#fullscreen-nav.is-open .fn-inner > :nth-child(4) { opacity:1; transform:none; transition-delay: 0.27s; }

.fn-link {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.15rem 0;
  display: block;
  transition: opacity 0.2s;
}
.fn-link:hover { opacity: 0.55; }

/* Menu sub-links (filiale) */
.fn-group { text-align: center; }
.fn-sub {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0.1rem 0 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.18s, transform 0.35s ease 0.18s;
}
#fullscreen-nav.is-open .fn-sub {
  opacity: 1;
  transform: none;
}
.fn-sub a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.fn-sub a:hover { color: rgba(255,255,255,0.9); }

/* Bottom legal links */
.fn-footer-links {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  text-align: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease 0.35s;
}
#fullscreen-nav.is-open .fn-footer-links { opacity: 1; }
.fn-footer-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.fn-footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── 5. Hero Section ────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d1a2d;
}
#hero-bg-wrapper {
  position: absolute;
  inset: -20%;
  z-index: 0;
}
#hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
#hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
}
#hero-styles {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hero-caption { text-align: center; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-title img { max-height: 80px; width: auto; filter: brightness(0) invert(1); }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-bottom {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
#scrolldown { writing-mode: vertical-rl; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; }

/* ── 6. Showcase Slider (index.html) ────────────── */
#showcase-holder { height: 100vh; overflow: hidden; position: relative; }
#showcase-slider { height: 100vh; }
.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-image {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
}
.section-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
}
.swiper-slide .outer { position: relative; z-index: 2; text-align: center; }
.swiper-slide .title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.swiper-slide .title img { max-height: 70px; filter: brightness(0) invert(1); }
.swiper-slide .title span { font-size: 1rem; opacity: 0.4; }
.showcase-captions-wrap {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.showcase-captions .tab__link {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.showcase-captions .tab__link.swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.5);
}
.showcase-footer {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 1rem;
}
.swiper-button-prev,
.swiper-button-next {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  user-select: none;
  position: static;
}
.swiper-button-prev::after { content: '↑'; }
.swiper-button-next::after { content: '↓'; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--color-primary); border-color: var(--color-primary); }

/* ── 7. Menu Content ────────────────────────────── */
.menu-hero-title { color: #fff; }
#main-content { background: var(--color-bg); }

/* Location bar */
.menu-location-info {
  background: var(--color-location-bg);
  color: rgba(255,255,255,0.88);
  text-align: center;
  padding: 2.2rem var(--menu-padding-x);
  font-size: 0.9rem;
}
.menu-location-info a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-location-info a:hover { color: #fff; }
.location-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.03em;
}
.menu-location-info .delivery-badges { margin-top: 1.2rem; }

/* Menu section container */
.menu-section {
  max-width: var(--menu-max-width);
  margin: 0 auto;
  padding: 4rem var(--menu-padding-x) 1rem;
}

/* Section header — text between two rules */
.menu-section-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.35rem;
}
.menu-section-title::before,
.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.menu-section-subtitle {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

/* Pizza rows */
.pizza-menu-row {
  padding: 1.4rem 0.75rem;
  margin: 0 -0.75rem;
  border-bottom: 1px solid rgba(208,208,208,0.55);
  border-radius: 4px;
  transition: background 0.18s ease;
}
.pizza-menu-row:last-of-type { border-bottom: none; }
.pizza-menu-row:hover { background: var(--color-row-hover); }

/* Name + dot-leader + price on one line */
.pizza-menu-head {
  display: flex;
  align-items: baseline;
  width: 100%;
}
.pizza-menu-head h3,
.pizza-menu-head h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  order: 1;
}
/* Dot-leader between name and price via order */
.pizza-menu-head::after {
  content: '';
  order: 2;
  flex: 1;
  border-bottom: 1.5px dotted rgba(0,0,0,0.18);
  margin: 0 0.6rem;
  position: relative;
  bottom: 0.25em;
}
.pizza-menu-head strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-price);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  order: 3;
}
.pizza-menu-head strong::before {
  content: '€\00a0';
  font-size: 0.85em;
  opacity: 0.55;
  font-weight: 400;
}
.pizza-menu-head strong .mezza {
  font-size: 0.78em;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 0.3em;
}

/* Ingredients */
.pizza-menu-desc p {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin: 0.3rem 0 0;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.pizza-menu-desc em {
  font-size: 0.78rem;
  opacity: 0.6;
  font-style: normal;
  display: inline-block;
  margin-left: 0.4rem;
}
.pizza-menu-allergen {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.5;
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Allergen note */
.menu-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 2.5rem var(--menu-padding-x);
  border-top: 1px solid var(--color-border);
  max-width: var(--menu-max-width);
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.8;
}

/* ── 8. Filialauswahl ───────────────────────────── */
.filiale-page {
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}
.filiale-hero {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 9rem 2rem 4rem;
}
.filiale-hero-logo img {
  max-height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.filiale-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
}
.filiale-hero p {
  opacity: 0.75;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.filiale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  flex: 1;
}
.filiale-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  min-height: 420px;
  background: #0d1a2d;
}
.filiale-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.filiale-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,80,151,0.85) 0%, rgba(0,0,0,0.2) 60%);
  z-index: 1;
}
.filiale-card:hover .filiale-card-bg { transform: scale(1.04); }
.filiale-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: #fff;
}
.filiale-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}
.filiale-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.filiale-card-address {
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.filiale-card-hours {
  font-size: 0.8rem;
  opacity: 0.6;
}
.filiale-card-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.filiale-card:hover .filiale-card-cta {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.filiale-divider {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0.6rem 1rem;
  border-radius: 2px;
}
@media (min-width: 600px) { .filiale-divider { display: block; } }

/* ── 9. About Page ──────────────────────────────── */
.vc_row.full figure img { width: 100%; display: block; }
.project-page { max-width: 1200px; margin: 0 auto; }
#project-nav {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next-project-image { position: absolute; inset: 0; z-index: 0; }
.next-project-image-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.next-project-title {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
}
.next-subtitle-info { font-size: 0.75rem; letter-spacing: 0.3em; opacity: 0.6; margin-bottom: 0.5rem; }
.main-title { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: 0.1em; }
.next-subtitle-name { display: none; }

/* ── 10. Global Header ──────────────────────────── */
.fullscreen-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.fullscreen-menu.dark-header {
  background: rgba(13,26,45,0.95);
}
.fullscreen-menu.solid-header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
}
.fullscreen-menu.transparent-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}
#logo img { max-height: 44px; width: auto; display: block; }
#logo .white-logo { display: none; }
.dark-header #logo .black-logo,
.transparent-header #logo .black-logo { display: none; }
.dark-header #logo .white-logo,
.transparent-header #logo .white-logo { display: block; }

header nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,80,151,0.97);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
header nav.open { opacity: 1; pointer-events: all; }
header nav .flexnav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
header nav .flexnav li.link a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
header nav .flexnav li.link a:hover { opacity: 1; }
header nav .flexnav li.link a img { max-height: 50px; filter: brightness(0) invert(1); }

/* Burger icon */
#menu-burger {
  width: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
#menu-burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}
.dark-header #menu-burger span,
.transparent-header #menu-burger span,
nav.open + * #menu-burger span { background: #fff; }
#burger-wrapper.active #menu-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#burger-wrapper.active #menu-burger span:nth-child(2) { opacity: 0; }

/* Button wrap */
.button-wrap { cursor: pointer; display: flex; align-items: center; gap: 0.5rem; }
.button-text { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-muted); }
.dark-header .button-text,
.transparent-header .button-text { color: rgba(255,255,255,0.6); }
.button-wrap.right.menu { position: relative; z-index: 101; }

/* Header left side (quickmenu button + logo) */
.header-middle { display: flex; align-items: center; }

/* ── 11. Footer ─────────────────────────────────── */
.page-footer {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.page-footer a { color: rgba(255,255,255,0.75); }
.page-footer a:hover { color: #fff; }
.page-footer .footer-logo img {
  max-height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.page-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.page-footer .footer-copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.5;
}
.footer.hidden { display: none; }

/* ── 12. Content scroll padding ─────────────────── */
#content-scroll { padding-top: 77px; }
.has-image + #content-scroll { padding-top: 0; }
/* For pages with hero, content-scroll starts after hero */

/* ── 13. Delivery badges ────────────────────────── */
.delivery-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.delivery-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.delivery-badge:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.55);
}

/* ── 14. HALAL badge ────────────────────────────── */
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── 15. Back-link bar ──────────────────────────── */
.menu-back-bar {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}
.menu-back-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.menu-back-link:hover { opacity: 1; }

/* Hero back-link */
.hero-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.hero-bottom a:hover { color: rgba(255,255,255,0.9); }

/* ── 17. Kontakt Page ───────────────────────────── */
.kontakt-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2.5rem 2rem;
}
.kontakt-heading {
  margin-bottom: 2.5rem;
}
.kontakt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.kontakt-card {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
}
.kontakt-card-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.kontakt-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.kontakt-card-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.kontakt-card-detail i { margin-top: 0.15rem; flex-shrink: 0; }
.kontakt-card-detail a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.kontakt-card-detail a:hover { color: var(--color-primary); }
.kontakt-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.kontakt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  transition: background 0.2s;
}
.kontakt-btn:hover { background: var(--color-accent-hover); }
.kontakt-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.kontakt-btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Email section */
.kontakt-email-section {
  background: var(--color-location-bg);
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.85);
}
.kontakt-email-section .menu-section-title {
  justify-content: center;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.kontakt-email-section .menu-section-title::before,
.kontakt-email-section .menu-section-title::after {
  background: rgba(255,255,255,0.15);
}
.kontakt-email-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.kontakt-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, opacity 0.2s;
}
.kontakt-email-link:hover { opacity: 0.75; border-color: rgba(255,255,255,0.6); }

/* ── 18. Contact Form ───────────────────────────── */
.kontakt-form-section {
  background: var(--color-bg);
  padding: 4rem 2rem;
}
.kontakt-form-section .form-inner {
  max-width: 640px;
  margin: 0 auto;
}
.kontakt-form-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.kontakt-form-section p { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.form-type-toggle { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.type-option { flex: 1; min-width: 160px; }
.type-option input[type="radio"] { display: none; }
.type-option label {
  display: flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px; padding: 0.9rem 1.2rem;
  cursor: pointer; font-size: 0.88rem; font-weight: 500;
  color: var(--color-text-muted); transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.type-option input:checked + label {
  border-color: var(--color-primary); color: var(--color-primary); background: rgba(16,80,151,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--color-text-muted); text-transform: uppercase; }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--color-border); border-radius: 6px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--color-text); background: #fff;
  transition: border-color 0.2s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-primary); }
.form-submit { margin-top: 0.5rem; }
.form-submit-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-primary); color: #fff;
  border: none; border-radius: 6px; padding: 0.85rem 2rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.form-submit-btn:hover { background: var(--color-accent-hover); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-feedback {
  display: none; align-items: center; gap: 0.6rem; border-radius: 6px; padding: 0.85rem 1.2rem;
  font-size: 0.88rem; margin-top: 1rem;
}
.form-feedback.success { background: #edf7f0; color: #1a7a3f; border: 1px solid #b6e0c4; }
.form-feedback.error   { background: #fdf2f2; color: #c0392b; border: 1px solid #f5c6c2; }
.req { color: var(--color-primary); }
.contact-form { max-width: 640px; margin: 0 auto; }
.kontakt-form-section .menu-section-title { margin-bottom: 0.6rem; }
.kontakt-email-text { font-size: 0.9rem; color: var(--color-text-muted); margin: 0 0 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.kontakt-or-mail { text-align: center; margin-top: 1.2rem; font-size: 0.85rem; color: var(--color-text-muted); max-width: 640px; margin-left: auto; margin-right: auto; }
.kontakt-or-mail a { color: var(--color-primary); font-weight: 600; text-decoration: none; }
.kontakt-or-mail a:hover { text-decoration: underline; }
/* Honeypot — visually hidden, invisible to real users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ── 19. Speed-Dial FAB ──────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.fab-main-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(16,80,151,0.45);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.fab-main-btn:hover { background: var(--color-accent-hover); box-shadow: 0 8px 30px rgba(16,80,151,0.55); }
.fab-group.open .fab-main-btn { transform: rotate(45deg); }

.fab-subs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.fab-group.open .fab-subs {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-sub-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.fab-sub-label {
  background: rgba(10,20,40,0.85);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
  margin-right: 0.65rem;
  backdrop-filter: blur(6px);
}
.fab-sub-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(16,80,151,0.35);
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.fab-sub-btn:hover .fab-sub-icon { background: var(--color-accent-hover); }

/* ── 19b. Reservation Modal ──────────────────────── */
.resv-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(3px);
}
.resv-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.resv-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateY(40px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
}
.resv-overlay.is-open .resv-modal { transform: translateY(0); }

.resv-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.resv-step-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-primary);
  opacity: 0.7;
}
.resv-x {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f2f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.resv-x:hover { background: #e0e3e8; }

.resv-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}
.resv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5de;
  transition: background 0.2s ease, transform 0.2s ease;
}
.resv-dot.active { background: var(--color-primary); transform: scale(1.3); }
.resv-dot.done   { background: var(--color-primary); opacity: 0.45; }

.resv-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1a2d;
  margin: 0 0 1.2rem;
}

/* Card grid (filiale / anlass) */
.resv-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.resv-anlass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.resv-sel-card {
  border: 2px solid #e0e4ed;
  border-radius: 14px;
  padding: 1.1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.15s ease;
  background: #f7f8fb;
}
.resv-sel-card:hover { border-color: var(--color-primary); background: #eef3fb; }
.resv-sel-card.selected {
  border-color: var(--color-primary);
  background: #e8f0fc;
}
.rsc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.rsc-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1a2d;
  margin-bottom: 0.2rem;
}
.rsc-sub {
  font-size: 0.72rem;
  color: #6b7280;
}
.anlass-card .rsc-icon { font-size: 1.5rem; }
.anlass-card .rsc-name { font-size: 0.8rem; }

/* Form fields */
.resv-form { display: flex; flex-direction: column; gap: 1rem; }
.resv-field { display: flex; flex-direction: column; gap: 0.3rem; }
.resv-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.resv-lbl .req { color: var(--color-primary); }
.resv-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0d5de;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0d1a2d;
  background: #f7f8fb;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.resv-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(16,80,151,0.12); background: #fff; }
textarea.resv-input { resize: vertical; min-height: 80px; }
.resv-sel-wrap { position: relative; }
.resv-sel-wrap select.resv-input { padding-right: 2.5rem; }
.resv-sel-wrap .fa-chevron-down {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
  font-size: 0.8rem;
}

/* Qty row */
.resv-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.resv-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f0f2f5;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
}
.resv-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.15s ease;
  line-height: 1;
}
.resv-qty-btn:hover { background: #e0e8f8; }
#rqty-val { font-size: 1rem; font-weight: 700; min-width: 28px; text-align: center; color: #0d1a2d; }

/* Summary (step 5) */
.resv-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f7f8fb;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.resv-sum-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
}
.resv-sum-row i { color: var(--color-primary); width: 16px; margin-top: 2px; flex-shrink: 0; }

/* Send buttons */
.resv-send-btns {
  display: flex;
  gap: 0.85rem;
}
.resv-send-wa,
.resv-send-mail {
  flex: 1;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.resv-send-wa   { background: #25D366; color: #fff; }
.resv-send-mail { background: var(--color-primary); color: #fff; }
.resv-send-wa:hover,
.resv-send-mail:hover { opacity: 0.88; transform: translateY(-1px); }
.resv-send-wa:disabled,
.resv-send-mail:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.resv-send-hint {
  font-size: 0.76rem;
  color: #6b7280;
  text-align: center;
  margin: 0.75rem 0 0;
  line-height: 1.5;
}
.resv-send-error {
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  font-size: 0.84rem;
  margin-top: 0.75rem;
}
.resv-or-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0 0.75rem;
  color: #9ca3af;
  font-size: 0.8rem;
}
.resv-or-divider::before,
.resv-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e4ed;
}
.resv-send-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #f0f5ff;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(16,80,151,0.18);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.resv-send-call:hover {
  background: #deeafc;
  border-color: rgba(16,80,151,0.35);
  color: var(--color-primary);
}

/* Success */
.resv-success {
  text-align: center;
  padding: 2rem 1rem;
}
.resv-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}
.resv-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #0d1a2d;
  margin: 0 0 0.5rem;
}
.resv-success p { font-size: 0.92rem; color: #555; margin: 0; }

/* Footer nav */
.resv-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid #e8ebf0;
}
.resv-btn-back,
.resv-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.15s ease;
}
.resv-btn-back { background: #f0f2f5; color: #374151; }
.resv-btn-back:hover { background: #e0e3e8; }
.resv-btn-next { background: var(--color-primary); color: #fff; margin-left: auto; }
.resv-btn-next:hover { background: var(--color-accent-hover); }
.resv-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

@media (min-width: 481px) {
  .resv-modal {
    border-radius: 24px;
    margin: auto;
    max-height: 85vh;
  }
  .resv-overlay { align-items: center; }
}
@media (max-width: 400px) {
  .resv-anlass-grid { grid-template-columns: repeat(2, 1fr); }
  .resv-card-grid   { grid-template-columns: 1fr; }
}

/* ── Bestellen note bar ─────────────────────────── */
.bestellen-note {
  text-align: center;
  padding: 1.2rem 2rem;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ── 20. Order Page ──────────────────────────────── */
body.page-order {
  background: #0d1a2d;
  color: #fff;
  min-height: 100vh;
}

/* Order header */
.order-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 60px;
  background: #0d1a2d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}
.order-header-logo img { height: 32px; display: block; }
.order-header-loc {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-left: 0.5rem;
}
.order-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.order-header-back {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.order-header-back:hover { color: #fff; }
.order-cart-badge {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
}

/* Category tabs */
.order-cats {
  position: sticky;
  top: 60px;
  z-index: 150;
  background: #0d1a2d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  overflow-x: auto;
  padding: 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}
.order-cats::-webkit-scrollbar { display: none; }

.order-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  padding: 0.9rem 1.1rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.order-cat-btn:hover { color: rgba(255,255,255,0.85); }
.order-cat-btn.active {
  color: #fff;
  border-bottom-color: var(--color-primary);
}

/* Layout grid */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 6rem;
  gap: 2rem;
  align-items: start;
}

/* Menu sections */
.menu-cat-section { margin-bottom: 2.5rem; }
.menu-cat-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Menu item cards */
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
  transition: background 0.15s;
  border-radius: 4px;
}
.menu-item-card:hover { background: rgba(255,255,255,0.04); }
.mic-info { flex: 1; min-width: 0; }
.mic-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.25rem;
}
.mic-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.mic-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #e8b84b;
}
.mic-add {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.mic-add:hover  { background: var(--color-accent-hover); transform: scale(1.08); }
.mic-add.added  { background: #1a7a3f; }

/* Cart sidebar */
.order-cart-sidebar {
  position: sticky;
  top: calc(60px + 48px + 1.5rem);
  background: #162236;
  border-radius: 10px;
  padding: 1.5rem;
  max-height: calc(100vh - 60px - 48px - 3rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.ocs-header {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ocs-items { flex: 1; }
.ocs-empty {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  line-height: 1.8;
  padding: 2rem 0;
}
.ocs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}
.ocs-total strong { color: #e8b84b; font-size: 1.1rem; }
.ocs-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  transition: background 0.2s;
}
.ocs-checkout:hover { background: var(--color-accent-hover); color: #fff; }
.ocs-payment-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Cart items */
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ci-main { flex: 1; min-width: 0; }
.ci-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.ci-qty { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 0.78rem; }
.ci-extras { margin-top: 0.2rem; }
.ci-extra {
  display: inline-block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-right: 0.4rem;
}
.ci-notes { margin-top: 0.2rem; }
.ci-note { font-size: 0.7rem; color: rgba(255,255,255,0.35); font-style: italic; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; flex-shrink: 0; }
.ci-price { font-size: 0.85rem; font-weight: 600; color: #e8b84b; white-space: nowrap; }
.ci-remove {
  background: none; border: none; color: rgba(255,255,255,0.25); cursor: pointer;
  font-size: 0.75rem; padding: 2px; transition: color 0.15s;
}
.ci-remove:hover { color: #e74c3c; }

/* Mobile cart bar — hidden on desktop, shown via JS on mobile only */
.mobile-cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--color-primary);
  padding: 0 1rem env(safe-area-inset-bottom, 0.75rem);
  display: none; /* JS overrides this only on mobile */
}
.mcb-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.9rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.mcb-count { font-weight: 600; }
.mcb-cta   { font-weight: 700; }
.mcb-total { font-weight: 700; color: rgba(255,255,255,0.85); }

/* ── Item Modal ─────────────────────────────────── */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.order-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.order-modal {
  background: #162236;
  border-radius: 16px 16px 0 0;
  padding: 2rem 1.5rem 2.5rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  position: relative;
}
.order-modal-overlay.is-open .order-modal { transform: translateY(0); }
.om-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.6);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s;
}
.om-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.om-item-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  padding-right: 2.5rem;
  margin-bottom: 0.35rem;
}
.om-item-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; line-height: 1.5; }
.om-item-price { font-size: 1.05rem; font-weight: 700; color: #e8b84b; margin-bottom: 1.5rem; }

/* Extras */
.om-extras { margin-bottom: 1.25rem; }
.extras-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.extra-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 0.2rem;
}
.extra-opt:hover { background: rgba(255,255,255,0.05); }
.extra-opt input { width: 16px; height: 16px; accent-color: var(--color-primary); flex-shrink: 0; }
.extra-opt-name { flex: 1; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.extra-opt-price { font-size: 0.8rem; color: rgba(255,255,255,0.4); white-space: nowrap; }

/* Note field */
.om-note { margin-bottom: 1.25rem; }
.om-note-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.om-note textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 6px; color: #fff; font-family: var(--font-body); font-size: 0.85rem;
  padding: 0.65rem 0.9rem; resize: none; outline: none; transition: border-color 0.2s;
}
.om-note textarea:focus { border-color: rgba(255,255,255,0.3); }

/* Qty */
.om-qty {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.qty-btn {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: rgba(255,255,255,0.15); }
#qty-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; min-width: 2rem; text-align: center; }

/* Add button */
.om-add-btn {
  width: 100%; padding: 0.9rem; background: var(--color-primary); color: #fff;
  border: none; border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 700; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 0.5rem; transition: background 0.2s;
}
.om-add-btn:hover { background: var(--color-accent-hover); }

/* ── 21. Checkout Page ───────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  gap: 2rem;
  align-items: start;
}
.co-panel-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.co-summary-panel,
.co-form-panel {
  background: #162236;
  border-radius: 10px;
  padding: 1.75rem;
}
.co-filiale-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.co-summary-items { margin-bottom: 1rem; }
.co-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem;
}
.co-item-info { flex: 1; }
.co-item-name { color: rgba(255,255,255,0.85); }
.co-item-extras { margin-top: 0.2rem; }
.co-extra { display: inline-block; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-right: 0.3rem; }
.co-item-note-wrap { margin-top: 0.15rem; }
.co-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-style: italic; }
.co-item-price { white-space: nowrap; font-weight: 600; color: #e8b84b; font-size: 0.88rem; flex-shrink: 0; }
.co-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; font-size: 0.88rem; color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.25rem;
}
.co-total-row strong { color: #e8b84b; font-size: 1.15rem; }
.co-payment-notice {
  margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.03); border-radius: 6px; padding: 0.65rem 0.9rem;
  display: flex; align-items: center; gap: 0.5rem; line-height: 1.4;
}
.co-payment-notice strong { color: rgba(255,255,255,0.55); }

/* Checkout form fields */
.co-field { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.co-field label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.req { color: #e8b84b; }
.co-field input,
.co-field select,
.co-field textarea {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 7px; color: #fff; font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; width: 100%;
}
.co-field input:focus, .co-field select:focus, .co-field textarea:focus { border-color: rgba(255,255,255,0.35); }
.co-field input::placeholder, .co-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.co-field select { appearance: none; cursor: pointer; }
.co-select-wrap { position: relative; }
.co-select-wrap i {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.3); pointer-events: none; font-size: 0.8rem;
}
.co-hint { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.2rem; }
.co-field textarea { resize: vertical; }
.co-confirm-note {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 0.85rem 1rem; font-size: 0.78rem;
  color: rgba(255,255,255,0.4); line-height: 1.55; margin-bottom: 1.2rem;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.co-confirm-note i { margin-top: 0.15rem; flex-shrink: 0; }
.co-confirm-note strong { color: rgba(255,255,255,0.6); }
.co-error {
  background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.3);
  color: #f1948a; border-radius: 6px; padding: 0.8rem 1rem; font-size: 0.82rem;
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.co-submit-btn {
  width: 100%; background: var(--color-primary); color: #fff; border: none;
  border-radius: 8px; padding: 1rem; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 700; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 0.6rem; transition: background 0.2s;
}
.co-submit-btn:hover:not(:disabled) { background: var(--color-accent-hover); }
.co-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success screen */
.checkout-success {
  max-width: 520px; margin: 4rem auto; padding: 2rem 1.5rem;
  text-align: center; display: none;
}
.cs-icon { font-size: 4rem; color: #2ecc71; margin-bottom: 1rem; }
.cs-title { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.cs-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 2rem; }
.cs-details {
  background: #162236; border-radius: 10px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
}
.cs-details i { margin-right: 0.4rem; }
.cs-details strong { color: #fff; }
.cs-payment-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.cs-payment-note strong { color: rgba(255,255,255,0.6); }
.cs-home-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-primary); color: #fff; text-decoration: none;
  border-radius: 6px; padding: 0.85rem 2rem; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.cs-home-btn:hover { background: var(--color-accent-hover); color: #fff; }

/* ── 22. Admin Page ──────────────────────────────── */
.admin-page { background: #0d1a2d; color: #fff; min-height: 100vh; }

/* Login */
.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.al-box {
  background: #162236; border-radius: 12px; padding: 3rem 2.5rem;
  width: 100%; max-width: 380px; text-align: center;
}
.al-logo { height: 44px; margin: 0 auto 1.5rem; display: block; }
.al-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.al-sub { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; letter-spacing: 0.08em; }
.al-error {
  background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.3); color: #f1948a;
  border-radius: 6px; padding: 0.65rem 1rem; font-size: 0.82rem; margin-bottom: 1rem;
}
.al-form { display: flex; flex-direction: column; gap: 1rem; }
.al-form input {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 7px; color: #fff; font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.85rem 1.1rem; outline: none; transition: border-color 0.2s; text-align: center;
}
.al-form input:focus { border-color: rgba(255,255,255,0.35); }
.al-form input::placeholder { color: rgba(255,255,255,0.2); }
.al-form button {
  background: var(--color-primary); color: #fff; border: none; border-radius: 7px;
  padding: 0.85rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center;
  justify-content: center; gap: 0.5rem;
}
.al-form button:hover { background: var(--color-accent-hover); }

/* Dashboard */
.adm-topbar {
  background: #162236; border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 1.5rem; height: 58px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.adm-topbar-left { display: flex; align-items: center; gap: 1rem; }
.adm-logo { height: 32px; }
.adm-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em; }
.adm-count { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.adm-topbar-right { display: flex; gap: 0.5rem; }
.adm-icon-btn {
  background: rgba(255,255,255,0.06); border: none; color: rgba(255,255,255,0.55);
  width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s;
}
.adm-icon-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

.adm-filters {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-filter-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); border-radius: 6px; padding: 0.35rem 0.9rem;
  font-family: var(--font-body); font-size: 0.8rem; cursor: pointer; transition: all 0.15s;
}
.admin-filter-btn:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.admin-filter-btn.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.adm-orders { padding: 1.5rem; display: grid; gap: 1rem; }
.admin-loading, .admin-empty {
  text-align: center; padding: 3rem 2rem; color: rgba(255,255,255,0.3); font-size: 0.88rem; line-height: 2;
}

/* Order cards */
.order-card {
  background: #162236; border-radius: 10px; overflow: hidden;
  border-left: 4px solid rgba(255,255,255,0.1);
}
.order-card.st-neu      { border-left-color: var(--color-primary); }
.order-card.st-bereit   { border-left-color: #2ecc71; }
.order-card.st-abgeholt { border-left-color: rgba(255,255,255,0.2); }
.order-card.st-storniert{ border-left-color: #e74c3c; }
.oc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem 0.6rem; gap: 0.75rem;
}
.oc-ids { display: flex; align-items: center; gap: 0.75rem; }
.oc-id { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; }
.oc-branch {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05);
  border-radius: 4px; padding: 0.2rem 0.5rem; letter-spacing: 0.06em;
}
.oc-status {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; padding: 0.25rem 0.6rem;
}
.oc-status.st-neu      { background: rgba(16,80,151,0.25); color: #7bb3ff; }
.oc-status.st-bereit   { background: rgba(46,204,113,0.2); color: #2ecc71; }
.oc-status.st-abgeholt { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); }
.oc-status.st-storniert{ background: rgba(231,76,60,0.2); color: #e74c3c; }
.oc-body { padding: 0 1.25rem 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; flex-direction: column; gap: 0.4rem; }
.oc-customer strong { color: rgba(255,255,255,0.9); }
.oc-customer a { color: var(--color-primary); text-decoration: none; }
.oc-pickup strong { color: rgba(255,255,255,0.85); }
.oc-note { color: rgba(255,255,255,0.45); font-style: italic; }
.oc-items { margin: 0.25rem 0; }
.oi-row { line-height: 1.7; }
.oi-extras, .oi-note { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.oc-total { font-size: 0.88rem; }
.oc-total strong { color: #e8b84b; }
.oc-time { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 0.3rem; }
.oc-actions {
  padding: 0.75rem 1.25rem 1rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.adm-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: none; border-radius: 5px; padding: 0.5rem 0.9rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.15s;
}
.adm-btn:hover { opacity: 0.85; }
.btn-bereit    { background: #2ecc71; color: #fff; }
.btn-abgeholt  { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.btn-storniert { background: rgba(231,76,60,0.2); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }

/* ── 16. Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .fullscreen-menu { padding: 1rem 1.5rem; }
  .menu-section { padding: 3rem 1.2rem 1rem; }
  .filiale-card { min-height: 320px; }
  .hero-bottom { padding: 0 1.5rem; }
  .pizza-menu-head h3,
  .pizza-menu-head h4 { font-size: 1.1rem; }
  .pizza-menu-head strong { font-size: 1rem; }
  .location-details { flex-direction: column; gap: 0.6rem; align-items: center; }
  .menu-section-title { font-size: 0.65rem; }
  .kontakt-cards { grid-template-columns: 1fr; }
  .kontakt-section { padding: 3rem 1.2rem 1.5rem; }
  .kontakt-email-link { font-size: 1.1rem; }
  .showcase-captions-wrap { right: 1rem; gap: 0.6rem; }
  .showcase-captions .tab__link { width: 6px; height: 6px; }

  /* Order page mobile */
  .order-layout { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .order-cart-sidebar { display: none; }
  .order-header-back span { display: none; }

  /* Checkout mobile */
  .checkout-layout { grid-template-columns: 1fr; }
  .co-form-panel { order: -1; }

  /* Admin mobile */
  .adm-topbar { padding: 0 1rem; }
  .adm-title  { font-size: 0.95rem; }
  .adm-orders { padding: 1rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-type-toggle { flex-direction: column; }
}

/* Tablet: hide cart sidebar, show mobile bar */
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-cart-sidebar { display: none !important; }
  .order-header-back span { display: none; }
}

@media (min-width: 601px) {
  .order-modal {
    border-radius: 16px;
    max-width: 480px;
    margin: auto;
  }
  .order-modal-overlay { align-items: center; }
  .adm-orders { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
}

/* Desktop: never show mobile cart bar */
@media (min-width: 901px) {
  .mobile-cart-bar { display: none !important; }
}
