/* ===== HERO v2 — Bold Red ===== */
.hero-v2 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-color: var(--red);
  background-image:
    linear-gradient(90deg, var(--red) 0%, var(--red) 38%, rgba(223, 25, 42, 0.92) 50%, rgba(223, 25, 42, 0.5) 68%, transparent 85%),
    url('/assets/images/optimized/desktop/hero.webp');
  background-position: left center, calc(50% + 25vw) center;
  background-size: cover, auto 120%;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-v2-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-v2-left {
  position: relative;
  z-index: 2;
}

.hero-v2-wave {
  width: 140px;
  margin-bottom: 20px;
}

.hero-v2-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-v2-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 7.5vw, 100px);
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0;
}

.hero-v2-h1 span {
  color: var(--dark);
}

.hero-v2-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 420px;
}

.hero-v2-actions {
  margin-bottom: 40px;
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-v2-badge {
  display: flex;
  align-items: center;
}

.halal-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  transform: rotate(-12deg);
  backdrop-filter: blur(4px);
  text-align: center;
}

.halal-stamp span:first-child {
  font-size: 15px;
}



/* ===== MARQUEE ===== */
.marquee-band {
  background: var(--white);
  padding: 18px 0;
  overflow: hidden;
  overflow: clip;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  contain: layout paint;
}

.marquee-band--green {
  background: var(--green);
  border-top: none;
  border-bottom: none;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  white-space: nowrap;
}

.marquee-band--green .marquee-track span {
  color: var(--white);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-emoji {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.marquee-band:not(.marquee-band--green) .marquee-sep {
  color: var(--red) !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== TRUST BAR (legacy — kept for deal pages) ===== */
.trust-bar {
  background: var(--green);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.trust-icon {
  font-size: 24px;
}

.trust-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-visual__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-visual__frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.why-visual__frame:hover img {
  transform: scale(1.03);
}

.why-visual__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(223, 25, 42, 0.3);
}

.why-content {
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.0;
}

.section-h2 span {
  color: var(--red);
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.why-list {
  margin-top: 40px;
}

.why-list__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-list__item:last-child {
  border-bottom: none;
}

.why-list__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  min-width: 48px;
}

.why-list__text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.why-list__text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--beige);
  padding: 60px 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--red);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ===== LUNCH SECTION ===== */
/* =============================================
   HIGHLIGHTS-SECTION (dynamisch: Deals + Pizzen)
   ============================================= */
.highlights-section {
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 25, 42, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.highlights-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 106, 77, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid: immer 3 Spalten × 2 Reihen = 6 Karten */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

/* ── Basis-Karte ── */
.hl-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

/* ══════════════════
   PIZZA-KARTE
══════════════════ */
.hl-card--pizza {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Bild */
.hl-pizza__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.hl-pizza__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hl-card--pizza:hover .hl-pizza__img img {
  transform: scale(1.06);
}

/* Badge — NUR einmal, oben links über dem Bild */
.hl-pizza__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.hl-pizza__badge i {
  font-size: 10px;
}

.hl-pizza__badge--halal {
  background: rgba(180, 120, 0, 0.88);
  color: #fff;
  box-shadow: 0 2px 8px rgba(180, 120, 0, 0.35);
}

.hl-pizza__badge--vegan {
  background: rgba(0, 106, 77, 0.88);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 106, 77, 0.35);
}

/* Inline-Labels (Halal / Vegan / Veggie) in der Meta-Zeile */
.hl-pizza__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hl-pizza__label i {
  font-size: 9px;
}

.hl-pizza__label--halal {
  background: rgba(180, 120, 0, 0.12);
  color: #a07800;
  border: 1px solid rgba(180, 120, 0, 0.3);
}

.hl-pizza__label--vegan {
  background: rgba(0, 106, 77, 0.1);
  color: #006a4d;
  border: 1px solid rgba(0, 106, 77, 0.25);
}

.hl-pizza__label--veggie {
  background: rgba(60, 130, 50, 0.1);
  color: #3c8232;
  border: 1px solid rgba(60, 130, 50, 0.25);
}

.hl-pizza__label--pork {
  background: rgba(160, 45, 24, 0.1);
  color: #8f2f1d;
  border: 1px solid rgba(160, 45, 24, 0.25);
}

/* Body */
.hl-pizza__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}

.hl-pizza__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.hl-pizza__meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hl-pizza__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hl-pizza__cat i {
  font-size: 10px;
}

.hl-pizza__cat--fire {
  color: #e85c1a;
}

.hl-pizza__cat--crown {
  color: #b8860b;
}

.hl-pizza__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.hl-pizza__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.1;
  margin: 0;
}

.hl-pizza__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 4px;
  transition: gap 0.2s ease;
}

.hl-pizza__cta:hover {
  gap: 9px;
}

.hl-pizza__cta i {
  font-size: 10px;
}

/* ══════════════════
   DEAL-KARTE
══════════════════ */
/* ══════════════════
   IMAGE-KARTE (statische Highlights)
══════════════════ */
.hl-card--image {
  background: #111;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hl-card--image picture {
  display: block;
  width: 100%;
}

.hl-card--image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.hl-card--image:hover img {
  transform: scale(1.04);
}

/* ══════════════════
   DEAL-KARTE
══════════════════ */
.hl-card--deal {
  background: linear-gradient(145deg, #181818 0%, #2c1010 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hl-card--deal::after {
  content: 'Pizza';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  position: absolute;
  right: -10px;
  bottom: -16px;
  font-size: 78px;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.hl-card--deal:hover {
  background: linear-gradient(145deg, #222 0%, #3a1414 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Deal Header */
.hl-deal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hl-deal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hl-deal__eyebrow i {
  color: var(--red);
  font-size: 10px;
}

.hl-deal__badge {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}

.hl-deal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 8px;
}

.hl-deal__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  flex-grow: 1;
  margin: 0 0 14px;
}

.hl-deal__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hl-deal__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hl-deal__schedule {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hl-deal__schedule i {
  font-size: 10px;
}

.hl-deal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, gap 0.2s ease;
  width: fit-content;
  margin-top: auto;
}

.hl-deal__cta i {
  font-size: 11px;
}

.hl-deal__cta:hover {
  background: rgba(255, 255, 255, 0.16);
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hl-pizza__img {
    height: 200px;
  }
}

/* ---- Alte lunch-section (Styles bleiben für andere Seiten erhalten) ---- */
.lunch-section {
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.lunch-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 25, 42, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.lunch-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 106, 77, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.lunch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.lunch-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.lunch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(223, 25, 42, 0.15);
}

.lunch-card--featured {
  grid-column: span 1;
  grid-row: span 2;
}

.lunch-card--featured .lunch-card__img {
  height: 280px;
}

.lunch-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.lunch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lunch-card:hover .lunch-card__img img {
  transform: scale(1.08);
}

.lunch-card__img--gradient {
  background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lunch-card__placeholder {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
}

.lunch-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(223, 25, 42, 0.3);
  z-index: 2;
}

.lunch-card__badge--green {
  background: var(--green);
  box-shadow: 0 4px 12px rgba(0, 106, 77, 0.3);
}

.lunch-card__badge--amber {
  background: #c79100;
  box-shadow: 0 4px 12px rgba(199, 145, 0, 0.3);
}

.lunch-card__badge--blue {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.lunch-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lunch-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.lunch-card__top h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.1;
}

.lunch-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.lunch-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.lunch-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lunch-card__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  margin-top: auto;
}

.lunch-card__cta:hover {
  color: var(--red-dark);
  gap: 8px;
}

.ptag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--gray);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ptag--green {
  background: rgba(0, 106, 77, 0.1);
  color: var(--green);
  border-color: rgba(0, 106, 77, 0.2);
}

.ptag--amber {
  background: rgba(232, 160, 32, 0.1);
  color: #b57d19;
  border-color: rgba(232, 160, 32, 0.2);
}

.ptag--red {
  background: rgba(223, 25, 42, 0.1);
  color: var(--red);
  border-color: rgba(223, 25, 42, 0.2);
}

.ptag--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
}

.lunch-footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== MENU PREVIEW ===== */
.menu-preview-section {
  background: var(--white);
}

.services-container {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.services-nav {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  background: var(--beige);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-tab:hover {
  border-color: rgba(223, 25, 42, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-tab.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(223, 25, 42, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  color: var(--green);
  background: rgba(0, 106, 77, 0.08);
  font-size: 20px;
  transition: background .22s ease, color .22s ease;
}

.service-tab.active .tab-icon {
  color: var(--red);
  background: var(--white);
}

.tab-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tab-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  transition: color 0.3s ease;
  line-height: 1;
}

.tab-foot {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: var(--gray);
  font-weight: 500;
}

.service-tab.active .tab-title,
.service-tab.active .tab-foot {
  color: var(--white);
}

.services-content-area {
  position: relative;
  min-height: 380px;
}

.service-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.service-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}


.menu-items {
  max-width: 720px;
  margin: 0 auto;
}

.menu-items--grouped {
  display: grid;
  gap: 30px;
}

.menu-group {
  display: grid;
  gap: 0;
}

.menu-group__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 10px;
  border-bottom: 2px solid rgba(0, 106, 77, 0.16);
}

.menu-group .menu-item:last-child {
  border-bottom: 0;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu-item__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}

.menu-item:hover {
  padding-left: 8px;
}

.menu-item:hover .menu-item__name {
  color: var(--red);
}

.menu-item__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.menu-item__dots {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}

.menu-item__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  text-wrap: pretty;
}

.menu-item__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.menu-item__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.menu-item__badge--halal {
  color: #7a5400;
  background: rgba(180, 120, 0, 0.12);
  border-color: rgba(180, 120, 0, 0.3);
}

.menu-item__badge--halal-optional {
  color: #7a5400;
  background: rgba(180, 120, 0, 0.06);
  border-color: rgba(180, 120, 0, 0.22);
}

.menu-item__badge--vegan {
  color: #006a4d;
  background: rgba(0, 106, 77, 0.1);
  border-color: rgba(0, 106, 77, 0.25);
}

.menu-item__badge--veggie {
  color: #3c8232;
  background: rgba(60, 130, 50, 0.1);
  border-color: rgba(60, 130, 50, 0.25);
}

.menu-item__badge--spicy {
  color: #a32d18;
  background: rgba(200, 50, 24, 0.1);
  border-color: rgba(200, 50, 24, 0.25);
}

.menu-item__badge--pork {
  color: #8f2f1d;
  background: rgba(160, 45, 24, 0.1);
  border-color: rgba(160, 45, 24, 0.25);
}

.menu-cta {
  text-align: center;
  margin-top: 40px;
}

.menu-disclaimer {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.menu-disclaimer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.menu-disclaimer a:hover {
  color: var(--red);
}

/* ===== REVIEWS MASONRY ===== */
.reviews-section {
  background: var(--white);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 106, 77, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card--accent {
  background: var(--green);
  color: var(--white);
}

.review-card--accent .review-text {
  color: rgba(255, 255, 255, 0.9);
}

.review-card--accent .review-author {
  color: var(--white);
}

.review-card--accent .review-quote {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.review-quote {
  font-size: 64px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--red);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
}

.reviews-footer {
  text-align: center;
  margin-top: 40px;
}

/* ===== B2B SECTION ===== */
.b2b-section {
  background: var(--beige);
}

.b2b-card {
  background: var(--dark);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.b2b-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(223, 25, 42, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.b2b-card__content {
  position: relative;
  z-index: 1;
}

.b2b-card__content .tag {
  color: var(--red);
}

.b2b-card__content .tag::before,
.b2b-card__content .tag::after {
  color: var(--red);
}

.b2b-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.b2b-card__title span {
  color: var(--red);
}

.b2b-card__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
}

.b2b-perks {
  list-style: none;
  margin-bottom: 32px;
}

.b2b-perks li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-perks li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.b2b-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 600px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== LOCATION ===== */
.location-section {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.location-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 32px;
}

.location-details {
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-detail:last-child {
  border-bottom: none;
}

.location-detail__icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  border-radius: 12px;
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}

.location-detail span,
.location-detail a {
  font-size: 15px;
  color: var(--gray);
}

.location-detail a:hover {
  color: var(--red);
}

.location-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-map {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ACTION SECTION ===== */
.action-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.06);
}

.action-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 25, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.action-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 25, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.action-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.action-content {
  max-width: 640px;
}

.action-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.badge-dot--closed {
  background: #ef4444;
  animation: pulse-dot-red 2s ease-in-out infinite;
}

.badge-dot--warning {
  background: #f59e0b;
  animation: pulse-dot-warn 2s ease-in-out infinite;
}

.action-badge:has(.badge-dot--closed) {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.action-badge:has(.badge-dot--warning) {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #b45309;
}

.action-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

.action-h2 span {
  color: var(--red);
}

.action-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.action-guarantee {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
}

/* ===== STICKY & FLOATING CTA ===== */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sticky-cta-mobile .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px;
}

.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Hero Google Badge */
.hero-v2-proof {
  margin-bottom: 28px;
}

.hero-proof-bar {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

a.hero-proof-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.hero-proof-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.hero-proof-meta {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.hero-proof-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  align-self: stretch;
}

/* Legacy — kept so other pages referencing .hero-google-badge don't break */
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 18px;
}

.hero-google-stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; }
.hero-google-text  { font-size: 14px; font-weight: 600; color: var(--white); }

/* Hero Info Pills */
.hero-v2-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.hero-open-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-open-dot--closed {
  background: #ef4444;
  animation: pulse-dot-red 2s ease-in-out infinite;
}

.hero-open-dot--warning {
  background: #f59e0b;
  animation: pulse-dot-warn 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

@keyframes pulse-dot-red {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}

@keyframes pulse-dot-warn {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
}

/* Hero Actions spacing */
.hero-v2-actions {
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   Reviews — neu: Score-Block + einzelner CTA
   ============================================= */
.reviews-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Score-Anzeige (kein klickbarer Wrapper, nur optisch) */
.reviews-score-block {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--beige);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px 40px;
}

.reviews-score-block__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.reviews-score-block__right {
  text-align: left;
}

.reviews-score-block__stars {
  font-size: 22px;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.reviews-score-block__count {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 6px;
}

.reviews-score-block__readlink {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.reviews-score-block__readlink:hover {
  text-decoration: underline;
}

.reviews-score-block__glogo {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Einzelner CTA-Block */
.reviews-cta-block {
  text-align: center;
}

.reviews-cta-block__text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform-Karten: Google · Lieferando · Uber Eats */
.reviews-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-platform-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--beige);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 24px 22px 20px;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.reviews-platform-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.rpc-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rpc-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}

.rpc-right {
  flex: 1;
  min-width: 0;
}

.rpc-stars {
  font-size: 18px;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.rpc-count {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.4;
}

.rpc-link {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}

.reviews-platform-card:hover .rpc-link {
  text-decoration: underline;
}

.rpc-logo {
  flex-shrink: 0;
  border-radius: 8px;
}

.rpc-platform {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

@media (max-width: 760px) {
  .reviews-platforms {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* Review Date */
.review-date {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 400;
}

.review-card--accent .review-date {
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   NEW — FAQ Section
   ============================================= */
.faq-section {
  background: var(--beige);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item[open] {
  box-shadow: var(--shadow-lg);
  border-color: rgba(223, 25, 42, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}

.faq-answer a:hover {
  color: var(--red-dark);
}

/* =============================================
   RESPONSIVE — New Elements
   ============================================= */
@media (max-width: 900px) {
  .home-page #header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0));
  }

  .header-cta .btn {
    display: none;
  }

  .hero-v2 {
    min-height: 100svh;
    padding-top: 0;
    background-image:
      linear-gradient(180deg, rgba(223, 25, 42, 0.98) 0%, rgba(223, 25, 42, 0.88) 55%, rgba(223, 25, 42, 0.75) 100%),
      url('/assets/images/optimized/mobile/hero.webp');
    background-position: center, center top;
    background-size: cover, cover;
  }

  .hero-v2-inner {
    min-height: 100svh;
    align-items: flex-start;
    padding: calc(var(--header-height) + 20px) 20px 60px;
  }

  .hero-v2-left {
    width: 100%;
    max-width: 560px;
    min-width: 0;
  }

  .hero-v2-wave {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-info {
    justify-content: center;
  }

  .hero-v2-actions {
    justify-content: center;
  }

  .hero-v2-proof {
    text-align: center;
  }

  .hero-v2-tagline {
    max-width: 34rem;
  }

  .hero-proof-bar {
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
  }

  .hero-proof-item {
    padding: 9px 13px;
  }

  .hero-proof-div {
    display: none;
  }

  .hero-info-pill {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .reviews-score-block {
    padding: 20px 28px;
    gap: 16px;
  }

  .reviews-score-block__num {
    font-size: 44px;
  }

  .why-grid,
  .location-grid,
  .b2b-card {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-page {
    padding-bottom: 76px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .section-sub {
    font-size: 15px;
  }

  .tag {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .hero-v2 {
    padding-top: 0;
    background-position: center, center top;
  }

  .hero-v2-inner {
    padding: calc(var(--header-height) + 16px) 18px 72px;
  }

  .hero-v2-wave {
    width: 108px;
    margin-bottom: 14px;
  }

  .hero-v2-h1 {
    font-size: clamp(36px, 10.6vw, 41px);
    line-height: 0.98;
    margin-bottom: 14px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-tagline {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-v2-proof {
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  .hero-proof-bar {
    width: min(100%, 340px);
  }

  .hero-proof-item {
    flex: 1;
    justify-content: center;
    padding: 9px 10px;
    gap: 5px;
  }

  .hero-proof-div {
    display: block;
  }

  .hero-proof-score {
    font-size: 13px;
  }

  .hero-proof-meta {
    font-size: 11px;
  }

  .hero-v2-actions {
    flex-direction: column;
  }

  .hero-v2-actions .btn {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 18px;
  }

  .hero-v2-info {
    flex-direction: column;
    align-items: center;
  }

  .hero-info-pill {
    width: min(100%, 320px);
    justify-content: center;
    flex-wrap: wrap;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-v2-actions {
    width: min(100%, 320px);
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .hero-v2-info {
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .marquee-band--green {
    padding: 14px 0;
  }

  .why-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .why-visual__frame {
    border-radius: 14px;
  }

  .why-list {
    margin-top: 26px;
  }

  .why-list__item {
    gap: 16px;
    padding: 18px 0;
  }

  .why-list__num {
    min-width: 38px;
    font-size: 26px;
  }

  .stats-section {
    padding: 42px 0;
  }

  .stat-item {
    padding: 28px 18px;
  }

  .stat-num {
    font-size: 32px;
    white-space: nowrap;
  }

  .highlights-grid {
    gap: 16px;
  }

  .hl-deal__header,
  .hl-pizza__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .hl-pizza__meta {
    flex-wrap: wrap;
  }

  .hl-pizza__price {
    align-self: flex-start;
  }

  .lunch-footer,
  .menu-cta,
  .location-buttons,
  .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .lunch-footer .btn,
  .menu-cta .btn,
  .reviews-cta-block .btn,
  .location-buttons .btn,
  .action-buttons .btn,
  .b2b-card .btn {
    width: 100%;
    white-space: normal;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

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

  .services-nav {
    padding: 12px;
    border-radius: 12px;
  }

  .service-tab {
    padding: 12px;
    gap: 12px;
  }

  .services-content-area {
    min-height: auto;
  }

  .menu-item {
    align-items: flex-start;
    gap: 8px;
  }

  .menu-item__name {
    min-width: 0;
    white-space: normal;
    line-height: 1.15;
  }

  .menu-item__dots {
    min-width: 18px;
    margin-top: 16px;
  }

  .menu-item__price {
    font-size: 18px;
  }

  .reviews-score-block {
    flex-direction: column;
    padding: 24px 20px;
    gap: 12px;
  }

  .reviews-score-block__num {
    font-size: 48px;
  }

  .reviews-score-block__right {
    text-align: center;
  }

  .reviews-score-block {
    width: 100%;
  }

  .reviews-score-block__stars {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .reviews-score-block__glogo {
    display: none;
  }

  .b2b-card {
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .b2b-card__visual {
    display: none;
  }

  .b2b-card__title {
    font-size: clamp(34px, 11vw, 44px);
  }

  .b2b-card__desc {
    font-size: 15px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 280px;
    border-radius: 16px;
  }

  .location-detail {
    gap: 12px;
  }

  .location-detail__icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .action-h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .action-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 20px;
  }

  .faq-question span:first-child {
    min-width: 0;
    line-height: 1.15;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 380px) {
  .hero-v2-h1 {
    font-size: 36px;
  }

  .btn,
  .btn--lg {
    font-size: 17px;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-item__dots {
    display: none;
  }

  .menu-item__price {
    width: 100%;
  }
}

/* (alte .reviews-google-cta / .reviews-google-card Klassen entfernt) */


/* ===== REVIEW MARQUEE ===== */
.marquee-band--reviews {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 40px 0;
}

.marquee-track--slow {
  animation-duration: 60s;
  gap: 16px;
}

.marquee-band--reviews .marquee-track span {
  color: var(--dark);
}

.marquee-review-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white) !important;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--red);
}

.marquee-review-item--green {
  background: var(--green);
}

.marquee-review-stars {
  color: #ffd166 !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.marquee-review-author {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px !important;
  font-style: italic;
  font-weight: 400 !important;
}

.marquee-review-sep {
  color: rgba(0, 0, 0, 0.15) !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  flex-shrink: 0;
}


/* ===== WALL OF LOVE ===== */
.wol-section {
  background: #f9f9f7;
}

.wol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wol-grid--hidden {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.wol-grid--hidden.is-open {
  max-height: 3000px;
  opacity: 1;
}

.wol-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wol-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wol-card__stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.wol-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  flex: 1;
  font-style: italic;
}

.wol-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wol-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.wol-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.1);
  padding: 2px 7px;
  border-radius: 20px;
}

.wol-card__source {
  margin-left: auto;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.wol-expand-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.wol-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
  justify-content: center;
}

.wol-expand-btn__icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 18px;
  line-height: 1;
}

.wol-expand-btn[aria-expanded="true"] .wol-expand-btn__icon {
  transform: rotate(180deg);
}

.wol-expand-btn[aria-expanded="true"] .wol-expand-btn__label::before {
  content: 'Weniger anzeigen';
}

.wol-expand-btn[aria-expanded="false"] .wol-expand-btn__label::before {
  content: '';
}

.wol-google-link {
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.wol-google-link:hover {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .wol-grid,
  .wol-grid--hidden {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .wol-grid,
  .wol-grid--hidden {
    grid-template-columns: 1fr;
  }

  .wol-card {
    padding: 20px 18px;
  }
}
