/* ── Reset & Tokens ──────────────────────────────────────────────────────── */
/* Echte Upsters-Marke, verifiziert per Screenshot der Live-Seite (upsters.de)
   + Hex-Werten aus dem Theme-Code (templates/*.json): Signature-Türkis #00ffca,
   schwarze Navigation/Hero (#0e1311), Pink #d5005d nur als Badge-Akzent,
   Poppins fett-kursiv für Headlines, Pill-Buttons, eckige Karten. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --aqua:         #00ffca;
  --aqua-dark:    #00cca3;
  --aqua-tint:    #d5fff2;
  --teal:         #d5005d;
  --teal-dark:    #ae004c;
  --teal-tint:    #fde4ef;
  --teal-text:    #b0004d;
  --pink:         #d5005d;
  --black:        #0e1311;
  --text:         #000000;
  --heading:      #000000;
  --muted:        #6b6b6b;
  --border:       #000000;
  --bg:           #fafafa;
  --bg-card:      #ffffff;
  --bg-card-alt:  #f4f4f4;
  --white:        #ffffff;
  --red:          #d72c0d;
  --radius:       0px;
  --radius-pill:  40px;
  --shadow:       none;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--teal-text); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 1.5rem 2.25rem;
  text-align: center;
}
.hero-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
  padding-right: 0;
}
.hero-logo-small {
  height: 46px;
  width: auto;
}
.hero-retailer {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  display: none;
}
.hero-retailer span {
  display: none;
}
.hero-retailer img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
}
.hero h1 {
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  color: var(--white);
}
.hero h1 span { color: var(--aqua); }
.hero-sub {
  color: #aaa;
  font-size: .9rem;
  max-width: 380px;
  margin: 0 auto;
}
.hero-amount {
  display: block;
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--aqua);
  line-height: 1;
  margin: 1rem 0 .2rem;
  letter-spacing: -.01em;
  text-shadow: none;
}
.hero-products {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 205px;
  max-width: 390px;
  margin: 1.15rem auto 0;
  overflow: visible;
}
.hero-products::before {
  content: '';
  position: absolute;
  width: 292px;
  height: 154px;
  bottom: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 10px 10px 0 var(--aqua);
}
.hero-products img {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 172px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(0,0,0,.35));
  transition: transform .32s cubic-bezier(.2,.8,.2,1), filter .32s ease;
}
.hero-products img:first-child {
  transform: rotate(-9deg) translate(14px, -7px);
  animation: hero-dose-links 3.2s ease-in-out infinite;
}
.hero-products img:nth-child(2) {
  z-index: 2;
  transform: translateY(-22px);
  animation: hero-dose-mitte 3.2s ease-in-out -.9s infinite;
}
.hero-products img:last-child {
  transform: rotate(9deg) translate(-14px, -7px);
  animation: hero-dose-rechts 3.2s ease-in-out -1.8s infinite;
}
@media (hover: hover) {
  .hero-products img:first-child:hover {
    transform: rotate(-13deg) translate(12px, -17px) scale(1.045);
  }
  .hero-products img:nth-child(2):hover {
    transform: translateY(-34px) rotate(2deg) scale(1.045);
  }
  .hero-products img:last-child:hover {
    transform: rotate(13deg) translate(-12px, -17px) scale(1.045);
  }
  .hero-products img:hover {
    animation: none;
    filter: drop-shadow(0 20px 18px rgba(0,0,0,.42));
  }
}
.hero-amount-label {
  font-size: .82rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ── Schritt-Indikator ───────────────────────────────────────────────────── */
.schritte {
  display: flex;
  align-items: stretch;
  background: var(--black);
  border-bottom: 2px solid #000;
}
.schritt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: #666;
  border-bottom: 3px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.schritt.aktiv  { color: var(--aqua); border-bottom-color: var(--aqua); }
.schritt.erledigt { color: var(--aqua); }
.schritt.noch-offen { color: #ffb547; border-bottom-color: #ffb547; }
.schritt.noch-offen .schritt-nr { background: #ffb547; color: #2b1900; }
.schritt-nr {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  background: #292929; color: #777;
  flex-shrink: 0;
}
.schritt.aktiv .schritt-nr,
.schritt.erledigt .schritt-nr { background: var(--aqua); color: var(--black); }

/* ── Trust-Leiste (angelehnt an die "Guarantees"-Sektion von upsters.de) ──── */
.trust-leiste {
  background: var(--white);
  color: var(--black);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #dedede;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.trust-item svg { width: 26px; height: 26px; flex-shrink: 0; }
.trust-item svg { color: var(--aqua-dark); }
.trust-item span {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ── Container & Karten ─────────────────────────────────────────────────── */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.karte {
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Verständlicher Gesamtprozess vor dem Formular */
.ablauf { margin:0 0 1.25rem;padding:1.35rem;background:#fff;border:1px solid #e5e9e7;border-radius:14px;box-shadow:0 2px 10px #0000000a; }
.ablauf-kicker { margin:0 0 .25rem;color:var(--teal-text);font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em; }
.ablauf h2 { margin:0 0 1rem;font-size:1.25rem;line-height:1.25; }
.ablauf-grid { display:grid;gap:.8rem; }
.ablauf-schritt { display:flex;gap:.75rem;align-items:flex-start; }
.ablauf-nr { display:grid;place-items:center;flex:0 0 1.8rem;height:1.8rem;border-radius:50%;background:var(--black);color:var(--aqua);font-size:.78rem;font-weight:700; }
.ablauf-schritt h3 { margin:.1rem 0 .18rem;font-size:.88rem; }
.ablauf-schritt p,.ablauf-details p { margin:0;color:var(--muted);font-size:.79rem;line-height:1.55; }
.ablauf-details { margin-top:1rem;padding-top:.8rem;border-top:1px solid #edf0ef; }
.ablauf-details summary { cursor:pointer;color:var(--teal-text);font-size:.8rem;font-weight:700; }
.ablauf-details p { margin-top:.6rem; }
@media (min-width: 700px) { .ablauf-grid { grid-template-columns:repeat(2,1fr);gap:1rem 1.5rem; } }
.karte-titel {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
  padding-bottom: .7rem;
  border-bottom: 3px solid var(--aqua);
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--heading);
}
.karte-nr {
  width: 26px; height: 26px;
  background: var(--black); color: var(--aqua);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800;
  flex-shrink: 0;
}

/* ── Formular ────────────────────────────────────────────────────────────── */
.feld { margin-bottom: 1.1rem; }
.feld label, .feld-label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text);
}
.feld input[type=text],
.feld input[type=email] {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #cfcfcf;
  border-radius: 8px;
  font-size: .95rem;
  background: var(--bg-card-alt);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.feld input::placeholder { color: #999; }
.feld input:focus { border-color: var(--aqua-dark); box-shadow: 0 0 0 3px var(--aqua-tint); }
.feld input.ungueltig { border-color: var(--red); }

.hinweis { font-size: .78rem; color: var(--muted); margin-top: .3rem; display: block; }
.fehler  { display: block; color: var(--red); font-size: .8rem; margin-top: .3rem; min-height: 1em; }
.pflicht { color: var(--red); }

/* ── Autocomplete (Städte-Vorschläge) ───────────────────────────────────── */
.autocomplete-liste {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 8px;
  max-height: 220px; overflow-y: auto; z-index: 30;
  box-shadow: var(--shadow);
}
.autocomplete-item {
  padding: .65rem 1rem; font-size: .9rem; cursor: pointer; text-align: left; color: var(--text);
}
.autocomplete-item:hover, .autocomplete-item.hervorgehoben {
  background: var(--teal-tint); color: var(--teal-text);
}

/* ── Upload ──────────────────────────────────────────────────────────────── */
.filialfinder-teaser { width:100%;display:flex;align-items:center;gap:.85rem;margin-bottom:1.25rem;padding:1rem 1.1rem;border:1.5px solid var(--border);border-radius:12px;background:linear-gradient(135deg,#fff 35%,var(--teal-tint));color:var(--text);text-align:left;box-shadow:var(--shadow);cursor:pointer;transition:transform .18s,box-shadow .18s,border-color .18s; }
.filialfinder-teaser:hover { transform:translateY(-2px);border-color:var(--teal-dark);box-shadow:0 8px 24px rgba(0,0,0,.1); }
.filialfinder-teaser strong,.filialfinder-teaser small { display:block; }.filialfinder-teaser strong{font-size:.94rem}.filialfinder-teaser small{margin-top:.15rem;color:var(--muted);font-size:.76rem;font-weight:500}.filialfinder-pin{display:grid;place-items:center;flex:0 0 38px;height:38px;border-radius:50%;background:var(--teal-dark);color:#fff;font-size:1.35rem}.filialfinder-pfeil{margin-left:auto;color:var(--teal-dark);font-size:1.35rem;font-weight:800}
.filialfinder-dialog { width:min(760px,calc(100% - 2rem));max-height:90vh;padding:1.2rem;border:0;border-radius:15px;background:#fff;color:var(--text);box-shadow:0 24px 80px rgba(0,0,0,.35);overscroll-behavior:contain; }
.filialfinder-dialog::backdrop { background:rgba(10,24,20,.62);backdrop-filter:blur(3px); }
.filialfinder-dialogkopf { display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;margin-bottom:1rem; }.filialfinder-dialogkopf h2{margin:0;font-size:1.2rem}.filialfinder-dialogkopf p{margin:.25rem 0 0;color:var(--muted);font-size:.8rem}.dialog-schliessen{display:grid;place-items:center;flex:0 0 36px;height:36px;border:0;border-radius:50%;background:#eef2f0;color:var(--text);font-size:1.45rem;cursor:pointer}
.karten-vorschau { background: #fff3cd; border: 1px solid #e7c44d; color: #674b00; border-radius: 7px; padding: .65rem .8rem; font-size: .78rem; margin-bottom: .8rem; }
.filialsuche { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: .5rem; margin-bottom: .8rem; }
.filialsuche input { width: 100%; border: 1.5px solid var(--border); border-radius: 7px; padding: .7rem .8rem; font: inherit; }
.filialsuche button { border: 0; border-radius: 7px; padding: .7rem .9rem; background: var(--teal-dark); color: #fff; font-weight: 700; cursor: pointer; }
.filialsuche .standort-btn { background: #edf3f1; color: var(--teal-text); }
.karten-status { min-height: 1.25em; margin-top: .55rem; color: var(--muted); font-size: .78rem; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
@media(max-width:600px){.filialfinder-dialog{width:100%;max-width:none;height:94dvh;max-height:none;margin:auto 0 0;padding:1rem;border-radius:18px 18px 0 0}.filialsuche{grid-template-columns:1fr 1fr}.filialsuche input{grid-column:1/-1}.filialfinder-teaser{margin-bottom:1rem}}

.upload-bereich {
  display: block;
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all .15s;
  background: var(--bg-card-alt);
}
.upload-bereich:hover, .upload-bereich.aktiv {
  border-color: var(--teal-dark);
  background: var(--teal-tint);
}
.upload-bereich input[type=file] {
  position: absolute; inset: 0; z-index: 2; opacity: 0; width: 100%; height: 100%; cursor: pointer;
}
.upload-bereich:focus-visible { outline: 3px solid rgba(8,124,167,.3); outline-offset: 3px; }
.upload-text { position: relative; z-index: 1; color: var(--muted); font-size: .88rem; pointer-events: none; }
.upload-text strong { color: var(--teal-text); }
.upload-icon { width: 28px; height: 28px; display: block; margin: 0 auto .5rem; color: var(--muted); }
.dateiname { position: relative; z-index: 1; display: block; font-size: .82rem; color: var(--teal-text); font-weight: 700; margin-top: .4rem; pointer-events: none; }

/* ── Checkbox ────────────────────────────────────────────────────────────── */
.checkbox-feld {}
.checkbox-label {
  display: flex; align-items: flex-start; gap: .6rem; cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--teal-dark); cursor: pointer;
}
.checkbox-label span { font-size: .88rem; color: #333; line-height: 1.45; }
.checkbox-label a { color: var(--teal-text); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: block; width: 100%;
  background: var(--teal); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: 1.05rem 1.5rem;
  font-size: .95rem; font-weight: 800;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: background .15s, transform .1s;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.btn-primary:hover:not(:disabled) { background: var(--teal-dark); }
.btn-primary:active:not(:disabled) { transform: scale(.98); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

/* Legacy: form submit buttons from form.js */
button[type="submit"] {
  display: block; width: 100%;
  background: var(--teal); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: 1.05rem; font-size: .95rem; font-weight: 800;
  cursor: pointer; transition: background .15s, transform .1s; margin-top: .25rem;
  letter-spacing: .1em; text-transform: uppercase;
}
button[type="submit"]:hover:not(:disabled) { background: var(--teal-dark); }
button[type="submit"]:active:not(:disabled) { transform: scale(.98); }
button[type="submit"]:disabled { opacity: .5; cursor: not-allowed; }

/* ── Pflichtangaben-Box ───────────────────────────────────────────────────── */
.pflichtangaben {
  background: var(--bg-card-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.pflichtangaben-titel {
  font-size: .78rem; font-weight: 800;
  color: var(--muted); text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: .85rem;
}
.pflichtangaben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (min-width: 440px) { .pflichtangaben-grid { grid-template-columns: repeat(4, 1fr); } }
.pflicht-item {
  display: flex; align-items: center; gap: .45rem;
  background: var(--bg-card-alt); border: 0;
  border-radius: 8px; padding: .5rem .6rem;
}
.pflicht-buchstabe {
  width: 22px; height: 22px;
  background: var(--black); color: var(--aqua); border-radius: 50%;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pflicht-text { font-size: .76rem; font-weight: 600; line-height: 1.25; color: var(--text); }

/* ── Unsere Sorten (Produktgrid, angelehnt an upsters.de/collections) ─────── */
.sorten-block { margin-bottom: 1.25rem; }
.sorten-titel {
  font-style: italic; font-weight: 900; text-transform: uppercase;
  font-size: 1.15rem; letter-spacing: .01em; color: var(--heading);
  margin-bottom: .3rem;
}
.sorten-sub { font-size: .84rem; color: var(--muted); line-height: 1.5; margin-bottom: .9rem; }
.sorten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}
@media (min-width: 480px) { .sorten-grid { grid-template-columns: repeat(3, 1fr); } }
.sorten-card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ececec;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem;
}
.sorten-card img {
  max-width: 78%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.28));
  animation: sorten-dose 3s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}
.sorten-card:nth-child(2) img { animation-delay: -1.2s; }
.sorten-card:nth-child(3) img { animation-delay: -2.4s; }
@media (hover: hover) {
  .sorten-card:hover img {
    animation: none;
    transform: translateY(-9px) rotate(-3deg) scale(1.055);
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.35));
  }
  .sorten-card:nth-child(even):hover img {
    animation: none;
    transform: translateY(-9px) rotate(3deg) scale(1.055);
  }
}
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-products img,
  .sorten-card img { animation: none; transition: none; }
}
.sorten-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .45rem .5rem;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: center;
  border-top: 0;
}

/* ── Bestätigung ─────────────────────────────────────────────────────────── */
.bestaetigung {
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 1.5rem; text-align: center;
  box-shadow: var(--shadow);
}
.bestaetigung-icon {
  width: 68px; height: 68px;
  background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.25rem;
  color: var(--teal);
}
.bestaetigung h2 {
  font-style: italic; font-weight: 900; text-transform: uppercase;
  font-size: 1.4rem; margin-bottom: .6rem; color: var(--heading);
}
.bestaetigung p  { color: var(--muted); line-height: 1.6; max-width: 360px; margin: 0 auto .5rem; }

.server-fehler {
  background: #fdeceb; border: 1.5px solid var(--red); color: var(--red);
  border-radius: 8px; padding: .85rem 1rem; font-size: .88rem; margin-top: 1rem;
}

/* ── Lust auf mehr? ──────────────────────────────────────────────────────── */
.mehr-block {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2rem 0 .5rem;
  padding: 2rem 1.25rem;
  overflow: hidden;
  background: #087ca7 url('peppermint-flatlay.jpg') center 55% / cover no-repeat;
}
.mehr-block::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.58));
}
.mehr-text {
  font-style: italic; font-weight: 900; text-transform: uppercase;
  font-size: 1.45rem; color: var(--white); margin-bottom: .85rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.btn-secondary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-pill);
  padding: .7rem 1.6rem;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.social-block {
  text-align: center;
  margin: 1rem 0 0;
  padding: 2.25rem 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
}
.social-kicker {
  color: var(--aqua);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.social-block h2 {
  color: var(--white);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.social-text {
  color: #aaa;
  font-size: .78rem;
  margin: .45rem 0 1.15rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: .7rem;
}
.social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid #424745;
  border-radius: 50%;
  color: var(--white);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links .social-fill { fill: currentColor; stroke: none; }
.social-links a:hover {
  color: var(--black);
  background: var(--aqua);
  border-color: var(--aqua);
  transform: translateY(-3px);
}
.social-links a:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

@media (min-width: 800px) {
  .mehr-block {
    width: min(1000px, calc(100vw - 64px));
    min-height: 420px;
    margin-top: 3rem;
    margin-left: 50%;
    padding: 3rem 3.5rem;
    transform: translateX(-50%);
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    background-position: center 54%;
  }
  .mehr-block::before {
    background:
      linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.16) 52%, rgba(0,0,0,.04) 100%),
      linear-gradient(0deg, rgba(0,0,0,.48) 0%, transparent 55%);
  }
  .mehr-text {
    max-width: 380px;
    font-size: 2.25rem;
    line-height: 1;
  }
  .btn-secondary { padding: .85rem 1.8rem; }
  .social-block {
    width: min(1000px, calc(100vw - 64px));
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile: Touch-Interaktion statt Hover und alle Sorten in einer Reihe */
@media (max-width: 799px) {
  .hero-products img:first-child {
    animation: hero-dose-links 3.2s ease-in-out infinite;
  }
  .hero-products img:nth-child(2) {
    animation: hero-dose-mitte 3.2s ease-in-out -.9s infinite;
  }
  .hero-products img:last-child {
    animation: hero-dose-rechts 3.2s ease-in-out -1.8s infinite;
  }

  .sorten-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
  }
  .sorten-card { padding: .35rem; }
  .sorten-card img {
    display: block;
    max-width: 84%;
    max-height: 82%;
    animation: sorten-dose 3s ease-in-out infinite;
  }
  .sorten-card:nth-child(2) img { animation-delay: -1s; }
  .sorten-card:nth-child(3) img { animation-delay: -2s; }
  .sorten-name {
    padding: .38rem .15rem;
    font-size: clamp(.58rem, 2.4vw, .7rem);
  }
}

@keyframes hero-dose-links {
  0%, 100% { transform: rotate(-9deg) translate(14px, -7px); }
  50% { transform: rotate(-11deg) translate(14px, -18px); }
}
@keyframes hero-dose-mitte {
  0%, 100% { transform: translateY(-22px); }
  50% { transform: translateY(-35px) rotate(2deg); }
}
@keyframes hero-dose-rechts {
  0%, 100% { transform: rotate(9deg) translate(-14px, -7px); }
  50% { transform: rotate(11deg) translate(-14px, -18px); }
}
@keyframes sorten-dose {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-products img,
  .sorten-card img { animation: none !important; transition: none; }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  text-align: center; padding: 2.25rem 1rem 3rem;
  background: var(--black);
  color: #aaa; font-size: .77rem; line-height: 1.8;
}
footer a { color: var(--white); text-decoration: none; }
footer a:hover { color: var(--pink); }

/* ── Umfrage: Progress ───────────────────────────────────────────────────── */
.progress-wrap { margin-bottom: 1.5rem; }
.progress-bar { height: 5px; background: var(--bg-card-alt); border-radius: 3px; overflow: hidden; margin-bottom: .45rem; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 3px; transition: width .35s ease; }
.progress-text { font-size: .78rem; color: var(--muted); text-align: right; }

/* ── Umfrage: Fragen ─────────────────────────────────────────────────────── */
.screen { display: none; }
.screen.aktiv { display: block; }

.frage { margin-bottom: 1.5rem; }
.frage-label { font-weight: 700; margin-bottom: .6rem; display: block; line-height: 1.4; font-size: .9rem; color: var(--text); }
.frage-hint  { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; margin-top: -.3rem; }

.radio-buttons, .multi-buttons { display: flex; flex-direction: column; gap: .45rem; }

.auswahl-btn {
  display: block; width: 100%;
  padding: .72rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); background: var(--bg-card);
  text-align: left; font-size: .88rem;
  cursor: pointer; transition: all .12s;
  line-height: 1.35; color: var(--text);
}
.auswahl-btn:hover:not(.aktiv) { border-color: var(--teal-dark); background: var(--teal-tint); }
.auswahl-btn.aktiv { background: var(--teal); color: var(--white); border-color: var(--teal); font-weight: 700; }

.nps-labels { display: flex; justify-content: space-between; font-size: .74rem; color: var(--muted); margin-top: .5rem; }

.nps-slider-wrap { display: flex; align-items: center; gap: .9rem; }
.nps-slider-wrap input[type=range] {
  flex: 1;
  -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px;
  background: var(--bg-card-alt);
  outline: none; cursor: pointer;
}
.nps-slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); border: 1.5px solid var(--border);
  cursor: pointer;
}
.nps-slider-wrap input[type=range]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); border: 1.5px solid var(--border);
  cursor: pointer;
}
.nps-value {
  min-width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--black); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}

.skala-frage { margin-bottom: 1rem; }
.skala-frage-label { font-size: .85rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.skala-reihe { display: flex; gap: .5rem; }
.skala-btn {
  flex: 1; padding: .6rem .3rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  background: var(--bg-card); color: var(--text); font-size: .85rem; font-weight: 700;
  cursor: pointer; text-align: center; transition: all .12s;
}
.skala-btn:hover:not(.aktiv) { border-color: var(--teal-dark); }
.skala-btn.aktiv { background: var(--teal); color: var(--white); border-color: var(--teal); }
.skala-endlabels { display: flex; justify-content: space-between; font-size: .7rem; color: #999; margin-top: .2rem; }

/* ── Umfrage: Navigation ─────────────────────────────────────────────────── */
.nav-wrap {
  display: flex; gap: .6rem; margin-top: 1.25rem;
}
.btn-nav {
  flex: 1; padding: .85rem;
  border: none; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 700; cursor: pointer; transition: opacity .15s, background .15s;
  text-transform: uppercase; letter-spacing: .08em;
}
.btn-nav:disabled { opacity: .3; cursor: not-allowed; }
.btn-zurueck { background: var(--bg-card-alt); color: var(--text); }
.btn-zurueck:hover:not(:disabled) { background: #ebebeb; }
.btn-weiter  { background: var(--teal); color: var(--white); font-weight: 800; flex: 1.4; }

/* Kampagnenhinweis: anstelle eines generischen gelben System-Banners */
#umfrage-banner {
  background: var(--teal-tint) !important;
  border-bottom: 0 !important;
  color: var(--black) !important;
}
#umfrage-banner a { color: var(--teal-text) !important; }
.btn-weiter:hover:not(:disabled) { background: var(--teal-dark); }

/* ── Umfrage: Newsletter ─────────────────────────────────────────────────── */
.checkbox-label-wrap {
  display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem;
}
.checkbox-label-wrap input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--teal-dark); cursor: pointer;
}
.checkbox-label-wrap span { font-size: .85rem; color: #333; line-height: 1.45; }

/* ── Umfrage: Erfolg ─────────────────────────────────────────────────────── */
.erfolg-card {
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 1.5rem; text-align: center;
  box-shadow: var(--shadow); margin-top: 1.5rem;
}
.erfolg-icon {
  width: 70px; height: 70px;
  background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.25rem;
  color: var(--teal);
}
.erfolg-card h2 {
  font-style: italic; font-weight: 900; text-transform: uppercase;
  font-size: 1.3rem; margin-bottom: .75rem; color: var(--heading);
}
.erfolg-card p  { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }

/* ── Kontingentzähler (Landing, §2.2) ────────────────────────────────────── */
.kontingent-zaehler {
  display: inline-block; margin-top: 1rem; padding: .5rem 1.1rem;
  border-radius: var(--radius-pill); background: rgba(0,255,202,.14);
  border: 1.5px solid var(--aqua); color: var(--aqua);
  font-size: .82rem; font-weight: 700;
}

/* ── PLZ-Filialliste (ersetzt die Leaflet-Karte, §6.5) ──────────────────── */
.filialliste { list-style: none; margin-top: .6rem; max-height: 320px; overflow-y: auto; }
.filiale-eintrag {
  padding: .7rem .85rem; border: 1.5px solid var(--border); border-radius: 8px;
  margin-bottom: .5rem; position: relative;
}
.filiale-name { font-weight: 700; font-size: .92rem; }
.filiale-adresse { color: var(--muted); font-size: .8rem; margin-top: .15rem; }
.filiale-entfernung {
  position: absolute; top: .7rem; right: .85rem; font-size: .78rem; font-weight: 700;
  color: var(--teal-text);
}

/* ── Screen "Prüfung läuft" (§6.2 Screen 2) ─────────────────────────────── */
.pruefschritte { list-style: none; margin: 1.25rem 0; text-align: left; max-width: 320px; margin-inline: auto; }
.pruefschritte li {
  padding: .55rem 0; font-size: .92rem; color: var(--text); font-weight: 600;
  border-bottom: 1px solid #f0f0f0; animation: einblenden .3s ease-out;
}
.pruefschritte li:last-child { border-bottom: none; }
@keyframes einblenden { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.spinner {
  width: 32px; height: 32px; margin: 1rem auto 0; border-radius: 50%;
  border: 3px solid var(--bg-card-alt); border-top-color: var(--teal-dark);
  animation: drehen .8s linear infinite;
}
@keyframes drehen { to { transform: rotate(360deg); } }

/* ── Sonstiges Frontend-Utility ──────────────────────────────────────────── */
.link-btn {
  background: none; border: 0; color: var(--teal-text); font-size: .84rem;
  font-weight: 700; text-decoration: underline; cursor: pointer; padding: .3rem 0;
}
.turnstile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.turnstile-container[hidden] {
  display: none;
}
