/* ============================================================
   AL CAMINO MANUFAKTUR – Rystro-inspired Design
   Warm cream bg · Dark green · Gold headings · Bebas Neue
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2215;
  background: #EDE8D0;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:       #EDE8D0;
  --green:    #1B3928;
  --green-m:  #2A5438;
  --gold:     #CCA830;
  --gold-l:   #E8C84A;
  --cream:    #F5F0DC;
  --white:    #FFFFFF;
  --dark:     #1A1A1A;
  --border:   rgba(0,0,0,.1);
  --r:        12px;
  --r-lg:     20px;
}

/* ── Container ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; font-family: inherit; font-size: .93rem; font-weight: 600;
  border-radius: 40px; border: 2px solid transparent; cursor: pointer;
  transition: all .18s; white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn-yellow { background: var(--gold-l); color: #1a1a1a; border-color: var(--gold-l); }
.btn-yellow:hover { background: var(--gold); border-color: var(--gold); }
.btn-black  { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.btn-black:hover { background: #333; }
.btn-outline { background: transparent; color: #1a1a1a; border-color: #bbb; }
.btn-outline:hover { border-color: #555; }
.btn-lg   { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; border-radius: 10px; }

/* Header pill CTA */
.btn-pill-header {
  background: var(--green); color: #fff;
  padding: 10px 20px; border-radius: 40px;
  font-size: .85rem; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: background .18s;
  flex-shrink: 0;
}
.btn-pill-header:hover { background: var(--green-m); }

/* Product section buttons */
.btn-pill-light {
  background: rgba(255,255,255,.12);
  color: #fff; border: 1.5px solid rgba(255,255,255,.35);
  padding: 12px 24px; border-radius: 40px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background .18s;
  white-space: nowrap;
}
.btn-pill-light:hover { background: rgba(255,255,255,.22); }

.btn-pill-gold {
  background: var(--gold-l); color: #1a1a1a;
  padding: 15px 28px; border-radius: 40px;
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: background .18s; display: block;
}
.btn-pill-gold:hover { background: var(--gold); }
.btn-full-w { width: 100%; text-align: center; }

/* Pickup section button */
.btn-green-solid {
  display: inline-block;
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 40px;
  font-size: .95rem; font-weight: 700; border: none; cursor: pointer;
  transition: background .18s; margin-top: 28px;
}
.btn-green-solid:hover { background: var(--green-m); }

/* Mobile CTA */
.mobile-cta {
  margin-top: 12px; background: var(--green); color: #fff;
  font-weight: 700; text-align: center; padding: 13px;
  border-radius: 40px; cursor: pointer; display: block;
  font-size: .95rem; transition: background .18s;
}
.mobile-cta:hover { background: var(--green-m); }

/* Pill badges */
.pill-badge {
  display: inline-block; padding: 5px 14px; border-radius: 40px;
  font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 16px;
}
.pill-green  { background: var(--green); color: #fff; }
.pill-dark   { background: #2a2215; color: #fff; }
.pill-outline-light { border: 1.5px solid rgba(255,255,255,.45); color: rgba(255,255,255,.8); background: transparent; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(237,232,208,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }

.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 12px;
}

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; flex-shrink: 0; background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--green);
  border-radius: 2px; transition: all .25s;
  width: 22px;
}
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

.logo { display: flex; align-items: center; }
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--green);
  letter-spacing: 1.5px;
  line-height: 1;
  white-space: nowrap;
}

/* Desktop nav (hidden on mobile) */
.desktop-nav { display: none; align-items: center; gap: 28px; }
.desktop-nav a { font-size: .88rem; font-weight: 500; color: #3a3020; transition: color .2s; }
.desktop-nav a:hover { color: var(--green); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--cream); padding: 10px 24px 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.mobile-nav.open { display: flex; }
.mobile-link {
  padding: 12px 0; font-size: .95rem; font-weight: 500;
  color: #3a3020; border-bottom: 1px solid rgba(0,0,0,.06); transition: color .2s;
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--green); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('Img/Background.png') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,28,20,.72) 0%, rgba(10,22,15,.85) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 100px 24px 120px;
  max-width: 860px; margin: 0 auto;
}

.preorder-start-banner {
  display: flex; align-items: center; gap: 12px;
  background: rgba(204,168,48,.18); border: 1px solid rgba(204,168,48,.45);
  border-radius: 10px; padding: 12px 18px; margin: 0 auto 28px;
  max-width: 420px; color: #fff; font-size: .86rem; line-height: 1.4;
  text-align: left;
}
.preorder-start-banner strong { color: var(--gold-l); }
.banner-icon { font-size: 1.2rem; flex-shrink: 0; }
#preorderCountdown { display: block; color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 2px; }

.hero-eyebrow {
  display: inline-block; background: var(--gold-l); color: #1a1a1a;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 40px; margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 13vw, 8rem);
  line-height: .92; color: #fff; letter-spacing: 2px;
  margin-bottom: 22px;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.hero-title em { color: var(--gold-l); font-style: italic; }

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.72); line-height: 1.65;
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.hero-actions {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 12px;
  animation: fadeSlideUp .7s ease both;
  animation-delay: .3s;
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.45);
  padding: 13px 28px; border-radius: 40px;
  font-size: .95rem; font-weight: 600;
  transition: all .2s; cursor: pointer; text-decoration: none;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Rotating badge */
.hero-badge {
  position: absolute; bottom: 48px; right: 48px;
  width: 140px; height: 140px; cursor: pointer;
  z-index: 3;
}
.badge-ring {
  position: absolute; inset: 0;
  animation: badge-rotate 12s linear infinite;
}
.badge-ring svg { width: 100%; height: 100%; }
.badge-svg-text {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  fill: rgba(255,255,255,.85); text-transform: uppercase;
}
.badge-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 60px; height: 60px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: background .2s;
}
.hero-badge:hover .badge-center { background: rgba(255,255,255,.25); }

@keyframes badge-rotate { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section { background: var(--bg); padding: 88px 0; }

.about-top {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; margin-bottom: 48px;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: .92; color: var(--green);
  letter-spacing: 1.5px;
}

.about-desc p {
  font-size: .95rem; color: #5a4e38; line-height: 1.75; margin-bottom: 14px;
}
.about-desc p:last-child { margin-bottom: 0; }

/* About cards */
.about-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}

.acard {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  min-height: 220px;
}

.acard--dark {
  background: var(--green);
  padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
}
.acard--dark h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; line-height: 1; color: #fff; letter-spacing: 1px;
  margin-top: 12px;
}
.acard-badge {
  display: inline-block; background: var(--gold-l); color: #1a1a1a;
  font-size: .68rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 11px; border-radius: 40px;
  align-self: flex-start;
}
.acard-deco { font-size: 3rem; margin-top: 16px; opacity: .6; }

.acard--photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 260px;
}
.acard-tag {
  position: absolute; bottom: 14px; right: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 40px;
}
.acard-tag--yellow { background: var(--gold-l); color: #1a1a1a; }
.acard-tag--white  { background: #fff; color: var(--green); top: 14px; right: 14px; bottom: auto; }

.acard--stats {
  background: var(--cream); padding: 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.acard-stat { display: flex; flex-direction: column; }
.acard-stat strong {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: var(--green); line-height: 1;
}
.acard-stat span { font-size: .75rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: #888; }

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION (dark green)
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION
══════════════════════════════════════════════════════════ */
.prod-section { background: var(--green); color: #fff; overflow: hidden; }

/* Marquee */
.marquee-wrap { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 3px;
  color: rgba(255,255,255,.45); padding: 13px 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

.gold-em { color: var(--gold-l); font-style: italic; }

.prod-inner { padding: 72px 0 80px; }

/* Grid */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

/* Photo column */
.prod-photo-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.prod-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  max-width: 480px; width: 100%;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.prod-photo-glow {
  position: absolute; inset: -20%; z-index: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(204,168,48,.18) 0%, transparent 70%);
  pointer-events: none;
}
.prod-photo-wrap img { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.prod-photo-tag {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-l); color: #1a1a1a;
  font-size: .75rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 40px; white-space: nowrap; z-index: 2;
}

.prod-photo-badges {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.prod-photo-badges span {
  font-size: .75rem; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 13px; border-radius: 40px;
}

/* Info column */
.prod-info-col { display: flex; flex-direction: column; }

.prod-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}

.prod-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: .92; color: #fff; letter-spacing: 2px;
  margin-bottom: 20px;
}

.prod-desc {
  font-size: .93rem; color: rgba(255,255,255,.68); line-height: 1.7;
  margin-bottom: 28px; max-width: 440px;
}

/* Price */
.prod-price-block { margin-bottom: 6px; }
.prod-price-main { display: flex; align-items: baseline; gap: 10px; }
.prod-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem; color: var(--gold-l); line-height: 1;
}
.prod-price-pack { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.55); }
.prod-price-sub {
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-top: 2px; display: block;
}

/* Divider */
.prod-divider {
  height: 1px; background: rgba(255,255,255,.1);
  margin: 24px 0;
}

/* Nutrition strip */
.prod-nut-strip {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 12px;
}
.pn-item {
  flex: 1; text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 3px;
}
.pn-item:last-child { border-right: none; }
.pn-item strong { font-size: .95rem; font-weight: 700; color: var(--gold-l); line-height: 1; }
.pn-item span   { font-size: .65rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .4px; }

.prod-nut-hint {
  font-size: .73rem; color: rgba(255,255,255,.35); line-height: 1.6;
}

/* CTA */
.btn-prod-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 17px 24px;
  background: var(--gold-l); color: #1a1a1a;
  font-family: inherit; font-size: 1rem; font-weight: 800;
  border-radius: 14px; border: none; cursor: pointer;
  letter-spacing: .02em;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 8px 32px rgba(232,200,74,.25);
  margin-top: 4px;
}
.btn-prod-cta:hover {
  background: var(--gold);
  box-shadow: 0 12px 40px rgba(232,200,74,.35);
  transform: translateY(-1px);
}
.btn-prod-cta:active { transform: scale(.98); }

/* Desktop 2-col */
@media (min-width: 640px) {
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .prod-photo-col { align-items: flex-start; }
  .prod-photo-wrap { max-width: 100%; }
}
@media (min-width: 1024px) {
  .prod-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

/* ══════════════════════════════════════════════════════════
   PICKUP SECTION
══════════════════════════════════════════════════════════ */
.pickup-section { background: var(--bg); padding: 88px 0; }

.pickup-grid {
  display: grid; grid-template-columns: 1fr; gap: 52px;
}

.pickup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: .9; color: var(--green); letter-spacing: 2px;
  margin: 16px 0 32px;
}
.green-em { color: var(--gold); font-style: italic; }

.pickup-rows { display: flex; flex-direction: column; gap: 20px; }
.pickup-row { display: flex; align-items: flex-start; gap: 14px; }
.pu-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.pickup-row strong {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: var(--green); margin-bottom: 3px;
}
.pickup-row p { color: #5a4e38; font-size: .88rem; line-height: 1.6; margin: 0; }
.ruhetag { color: #c0392b; font-weight: 700; }

/* Location card (replaces Google Maps iframe) */
.location-card {
  background: var(--green); border-radius: var(--r-lg);
  padding: 28px; color: #fff; display: flex; flex-direction: column;
}
.location-card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.location-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.location-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem;
  letter-spacing: .5px; color: var(--gold-l); margin-bottom: 4px; line-height: 1.1;
}
.location-addr { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.location-divider { height: 1px; background: rgba(255,255,255,.12); margin: 16px 0; }
.location-times { display: flex; flex-direction: column; gap: 8px; }
.lt-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.8);
}
.lt-row span:first-child { font-weight: 600; }
.lt-closed .lt-row, .lt-closed { color: #ff9e9e; }
.lt-closed span { color: #ff9e9e !important; font-weight: 700 !important; }
.location-notice {
  display: flex; align-items: center; gap: 12px;
  background: rgba(204,168,48,.18); border: 1px solid rgba(204,168,48,.35);
  border-radius: 10px; padding: 12px 14px; margin: 16px 0;
  font-size: .84rem; color: rgba(255,255,255,.85); line-height: 1.5;
}
.location-notice span:first-child { font-size: 1.2rem; flex-shrink: 0; }
.location-notice strong { color: var(--gold-l); }
.btn-directions {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-l); color: #1a1a1a;
  padding: 13px 20px; border-radius: 40px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  transition: background .18s; margin-top: 4px;
}
.btn-directions:hover { background: var(--gold); }

/* Rotating badge (small) */
.rotate-badge-sm {
  position: relative; width: 90px; height: 90px; flex-shrink: 0;
}
.rotate-badge-sm svg {
  width: 100%; height: 100%;
  animation: badge-rotate 10s linear infinite;
}
.badge-svg-sm {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; fill: var(--green);
}
.badge-center-sm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--green);
  background: var(--gold-l); border-radius: 50%;
  width: 38px; height: 38px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: var(--green); color: rgba(255,255,255,.65); padding: 60px 0 0; }

.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: #fff; letter-spacing: 1px; line-height: 1.1; margin-bottom: 14px;
}
.footer-logo em { color: var(--gold-l); }
.footer-brand p { font-size: .86rem; line-height: 1.65; max-width: 300px; }
.footer-contact { margin-top: 14px; font-size: .86rem; line-height: 1.9; }

.footer-col h4 {
  color: #fff; font-size: .75rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block; font-size: .86rem; color: rgba(255,255,255,.55);
  margin-bottom: 7px; line-height: 1.5; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-ruhetag { color: #ff7c7c !important; font-weight: 600; }

.ftr-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: .86rem; color: rgba(255,255,255,.55);
  text-align: left; display: block; margin-bottom: 7px; transition: color .2s;
}
.ftr-btn:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 20px 0;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal .ftr-btn { margin-bottom: 0; font-size: .78rem; }

/* ══════════════════════════════════════════════════════════
   OVERLAY BASE
══════════════════════════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px); z-index: 500;
  display: none; align-items: flex-start; justify-content: center;
  padding: 16px; overflow-y: auto;
}
.overlay.active { display: flex; }

/* ── Modal ────────────────────────────────────────────────── */
.modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 560px;
  box-shadow: 0 28px 64px rgba(0,0,0,.4);
  animation: slideUp .28s ease; margin: auto;
}
.modal-sm { max-width: 420px; }
@keyframes slideUp { from { transform: translateY(28px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px 14px; border-bottom: 1px solid #f0eeea;
  position: sticky; top: 0; background: #fff; z-index: 2;
  border-radius: 20px 20px 0 0; gap: 14px;
}
.modal-body { padding: 22px; }

.close-btn {
  width: 34px; height: 34px; border-radius: 50%; background: #f0eeea;
  font-size: .86rem; color: #555;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .18s;
}
.close-btn:hover { background: #e0ddd6; }

/* Step indicator */
.steps { display: flex; align-items: center; gap: 0; flex: 1; }
.step-item { display: flex; align-items: center; gap: 7px; opacity: .35; transition: opacity .2s; }
.step-item.active, .step-item.done { opacity: 1; }
.step-circle {
  width: 26px; height: 26px; border-radius: 50%;
  background: #e8e5df; color: #666; font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, color .2s;
}
.step-item.active .step-circle { background: var(--gold-l); color: #1a1a1a; }
.step-item.done  .step-circle  { background: var(--green); color: #fff; }
.step-label { font-size: .74rem; font-weight: 600; color: #666; white-space: nowrap; }
.step-item.active .step-label { color: #1a1a1a; }
.step-line { flex: 1; height: 2px; background: #e8e5df; min-width: 12px; }

/* Order steps */
.order-step { padding: 22px; }
.order-step.hidden { display: none; }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 4px; }
.step-sub { font-size: .86rem; color: #888; margin-bottom: 22px; }

/* Qty */
.qty-block {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #f7f4ec; border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; flex-wrap: wrap;
}
.qty-ctrl { display: flex; align-items: center; background: #fff; border: 2px solid #e8e5df; border-radius: 10px; overflow: hidden; }
.qty-btn { width: 42px; height: 42px; font-size: 1.2rem; color: #333; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.qty-btn:hover { background: #f0eeea; }
.qty-ctrl input {
  width: 52px; text-align: center; font-size: 1.05rem; font-weight: 700;
  border: none; border-left: 1px solid #e8e5df; border-right: 1px solid #e8e5df;
  outline: none; height: 42px; background: #fff; color: #1a1a1a; -moz-appearance: textfield;
}
.qty-ctrl input::-webkit-inner-spin-button, .qty-ctrl input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-total { display: flex; flex-direction: column; align-items: flex-end; }
.qty-total-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #888; }
.qty-total-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #1a1a1a; line-height: 1.1; }

/* Info/warn boxes */
.info-box, .warn-box {
  display: flex; align-items: flex-start; gap: 10px; padding: 11px 13px;
  border-radius: 10px; font-size: .83rem; line-height: 1.5; margin-bottom: 14px;
}
.info-box { background: #EFF8FF; border: 1px solid #B3D9F9; color: #1a4a70; }
.warn-box { background: #FFF9E6; border: 1px solid #FFD966; color: #7a5600; }

/* Form */
.order-form { display: flex; flex-direction: column; gap: 13px; }
.frow { display: flex; gap: 13px; }
.fgroup { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.fgroup-sm { flex: 0 0 96px; }
.fgroup label { font-size: .8rem; font-weight: 600; color: #444; margin-bottom: 5px; }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; padding: 10px 11px; border: 1.5px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: .9rem; color: #1a1a1a; background: #fff; outline: none; transition: border-color .2s;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--green); }
.fgroup input.error, .fgroup select.error { border-color: #e03131; }
.fgroup textarea { resize: vertical; }
.ferr { font-size: .75rem; color: #e03131; margin-top: 3px; min-height: 17px; display: block; }
.fhint { font-size: .73rem; color: #888; margin-top: 3px; }
.pickup-time-section { padding-top: 6px; border-top: 1px solid #eee; }
.pu-time-title { font-size: .86rem; font-weight: 700; color: #1a1a1a; margin: 6px 0 3px; }
.pu-time-hint  { font-size: .76rem; color: #888; margin-bottom: 11px; }

/* Step nav */
.step-nav { display: flex; gap: 11px; margin-top: 22px; flex-wrap: wrap; }
.step-nav .btn-yellow { flex: 1; border-radius: 10px; background: var(--gold-l); border-color: var(--gold-l); }
.step-nav .btn-yellow:hover { background: var(--gold); border-color: var(--gold); }
.step-nav .btn-outline { min-width: 108px; border-radius: 10px; }

/* Summary */
.summary { border: 1px solid #e8e5df; border-radius: 10px; overflow: hidden; }
.sum-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 9px 13px; border-bottom: 1px solid #e8e5df; font-size: .86rem;
}
.sum-row:last-child { border-bottom: none; }
.sum-k { color: #888; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; padding-top: 2px; min-width: 72px; }
.sum-v { text-align: right; color: #1a1a1a; font-weight: 500; word-break: break-word; }
.sum-total { background: #f7f4ec; }
.sum-total .sum-v { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; }
.sum-divider { height: 4px; background: var(--gold-l); }

/* Checkbox */
.chk-label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: .84rem; line-height: 1.5; color: #444; }
.chk-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.chk-box { width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 5px; flex-shrink: 0; background: #fff; transition: all .18s; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.chk-label input:checked + .chk-box { background: var(--gold-l); border-color: var(--gold); }
.chk-label input:checked + .chk-box::after { content: '✓'; font-size: .68rem; color: #1a1a1a; font-weight: 900; }

#btnSpinner { display: inline-block; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success */
.success-body { padding: 36px 26px 30px; text-align: center; }
.success-icon { font-size: 2.8rem; margin-bottom: 14px; }
.success-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 10px; }
.success-body p { font-size: .9rem; color: #555; line-height: 1.6; margin-bottom: 7px; }
.success-pickup { display: flex; align-items: center; justify-content: center; gap: 8px; background: #f7f4ec; border-radius: 10px; padding: 11px 15px; font-size: .84rem; color: #444; margin: 18px 0; }

/* Legal */
.modal-legal { max-width: 640px; }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: #1a1a1a; }
.legal-body { padding: 22px; max-height: 72vh; overflow-y: auto; }
.legal-block { margin-bottom: 18px; }
.legal-block h3 { font-size: .84rem; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.legal-block p { font-size: .83rem; color: #555; line-height: 1.6; }
.legal-contact { border-top: 1px solid #e8e5df; padding-top: 14px; font-size: .8rem; color: #888; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – Tablet 640px+
══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .about-top { grid-template-columns: 1fr 1fr; align-items: start; gap: 48px; }

  .about-cards { grid-template-columns: repeat(3, 1fr); }
  .acard { min-height: 280px; }
  .acard--photo img { min-height: 100%; height: 280px; }

  .pickup-grid { grid-template-columns: 1fr 1fr; }
  .location-card { min-height: 340px; }

  .footer-top { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – Desktop 1024px+
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .location-card { min-height: 420px; }
  .about-cards { grid-template-columns: 1fr 1.4fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – Small mobile < 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 479px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn-yellow { font-size: .9rem; padding: 13px 20px; }
  .hero-actions .btn-hero-ghost { font-size: .85rem; padding: 11px 20px; text-align: center; justify-content: center; }

  .hero-proof span { font-size: .76rem; padding: 0 10px; }

  .hero-badge { width: 110px; height: 110px; bottom: 24px; right: 20px; }
  .badge-center { width: 48px; height: 48px; font-size: 1.3rem; }

  .about-cards { grid-template-columns: 1fr; }

  .frow { flex-direction: column; }
  .fgroup-sm { flex: 1; }
  .step-label { display: none; }

  .order-step { padding: 16px; }
  .modal-hdr  { padding: 14px 16px 12px; }
  .legal-body { padding: 16px; }

  .prod-name { font-size: 2.6rem; }
  .pn-item strong { font-size: .85rem; }
  .btn-pill-light { align-self: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   HERO PROOF STRIP
══════════════════════════════════════════════════════════ */
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 10px 0;
  margin-top: 24px;
  justify-content: center;
  animation: fadeSlideUp .7s ease both;
  animation-delay: .55s;
}
.hero-proof span {
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(255,255,255,.88);
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.hero-proof span:last-child { border-right: none; }
.hero-proof span::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
.hero-proof span:nth-child(2)::before { animation-delay: .4s; }
.hero-proof span:nth-child(3)::before { animation-delay: .8s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.6); }
}

/* ══════════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 18px 0;
}
.trust-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 20px;
  font-size: .84rem; font-weight: 600; color: var(--green);
}
.trust-item .ti-icon { font-size: 1.1rem; }
.trust-div {
  width: 1px; height: 24px;
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .trust-row { gap: 0; }
  .trust-item { padding: 4px 12px; font-size: .78rem; }
  .trust-div:nth-child(6) { display: none; }
}

/* ══════════════════════════════════════════════════════════
   SO FUNKTIONIERT'S SECTION
══════════════════════════════════════════════════════════ */
.how-section {
  padding: 80px 0;
  background: var(--bg);
}
.how-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px; text-align: center;
}
.how-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--green); line-height: 1.1;
  text-align: center; margin-bottom: 52px;
}
.how-steps {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.how-step {
  flex: 1; min-width: 200px; max-width: 280px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
}
.how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.how-step h3 {
  font-size: 1rem; font-weight: 700; color: var(--green);
  margin-bottom: 6px;
}
.how-step p {
  font-size: .88rem; color: #4a4030; line-height: 1.55;
}
.how-arrow {
  font-size: 1.4rem; color: var(--gold); margin-top: 20px;
  align-self: center; flex-shrink: 0;
  padding: 0 4px;
}
.how-cta {
  text-align: center; margin-top: 48px;
}
.how-cta-note {
  display: block; margin-top: 10px;
  font-size: .8rem; color: #6a5f4a;
}
@media (max-width: 639px) {
  .how-section { padding: 56px 0; }
  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-step { max-width: 100%; padding: 0 0 28px; }
  .how-arrow { transform: rotate(90deg); padding: 0; margin: 0 0 20px; }
}

/* ══════════════════════════════════════════════════════════
   URGENCY BADGE + COMMITMENT NOTE
══════════════════════════════════════════════════════════ */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(204,168,48,.15); border: 1px solid rgba(204,168,48,.4);
  color: var(--gold-l); border-radius: 40px;
  padding: 6px 14px; font-size: .78rem; font-weight: 600;
  margin-bottom: 12px;
}
.commitment-note {
  margin-top: 12px;
  font-size: .8rem; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.faq-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green); line-height: 1.1;
  margin-bottom: 24px;
}
.faq-left p {
  font-size: .92rem; color: #4a4030; line-height: 1.65;
  margin-bottom: 28px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer;
  font-weight: 600; font-size: .93rem; color: var(--green);
  list-style: none; user-select: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.2rem; font-weight: 400;
  color: var(--gold); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '–';
}
.faq-item .faq-answer {
  padding: 0 20px 16px;
  font-size: .88rem; color: #4a4030; line-height: 1.65;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 12px;
}
@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 639px) {
  .faq-section { padding: 56px 0; }
}

/* ══════════════════════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════════════════════ */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--green);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-mobile-cta.visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cta-info {
  display: flex; flex-direction: column;
}
.sticky-cta-name {
  font-size: .78rem; color: rgba(255,255,255,.7);
  font-weight: 500;
}
.sticky-cta-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: var(--gold);
  line-height: 1.1;
}
.sticky-cta-btn {
  flex-shrink: 0;
  background: var(--gold); color: var(--green);
  font-weight: 700; font-size: .9rem;
  padding: 11px 20px; border-radius: 40px;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .sticky-mobile-cta { display: none !important; }
}
@media (max-width: 639px) {
  .sticky-mobile-cta { display: block; }
  body.sticky-cta-open { padding-bottom: 70px; }
}
