/* ==========================================================
   tp-retail.de — Designsystem
   Farben: Vodafone-Rot #e60000, Schwarz, Grau #4a4d4e
   Schrift: Archivo (Display, condensed), Inter (Fließtext)
   ========================================================== */
:root {
  --rot: #e60000;
  --rot-dunkel: #b30000;
  --schwarz: #0d0d0d;
  --grau: #4a4d4e;
  --grau-hell: #f4f4f4;
  --linie: #e2e2e2;
  --weiss: #fff;
  --radius: 10px;
  --schatten: 0 8px 24px rgba(0, 0, 0, .12);
  --display: "Archivo", system-ui, sans-serif;
  --text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--schwarz);
  background: var(--weiss);
}
img { max-width: 100%; display: block; }
a { color: var(--rot); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.schmal { max-width: 900px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--rot); color: #fff; padding: .6rem 1rem;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--rot); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; }

h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .5em; }
.rot { color: var(--rot); }
.klein { font-size: .875rem; color: var(--grau); }

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: .8rem 1.5rem;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-rot { background: var(--rot); color: #fff; }
.btn-rot:hover { background: var(--rot-dunkel); }
.btn-dunkel { background: var(--grau); color: #fff; }
.btn-dunkel:hover { background: var(--schwarz); }
.btn-klein { padding: .45rem .9rem; font-size: .8rem; }
.btn-hell { background: #efefef; color: var(--schwarz); }
.btn-hell:hover { background: #e2e2e2; }

/* Topbar & Header --------------------------------------------- */
.topbar { background: var(--grau); color: #fff; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; padding-top: .35rem; padding-bottom: .35rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--linie);
}
.head-in { display: flex; align-items: center; gap: 2rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.nav { margin-left: auto; display: flex; gap: 1.6rem; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--schwarz); text-decoration: none;
  padding: .4rem 0; border-bottom: 3px solid transparent;
}
.nav a:hover, .nav a.ist-aktiv { border-bottom-color: var(--rot); }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: .6rem; cursor: pointer; }
.nav-toggle-box i {
  display: block; width: 26px; height: 3px; background: var(--schwarz);
  margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .brand img { height: 40px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--linie);
    padding: .5rem 20px 1rem;
    display: none;
  }
  .nav.ist-offen { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--linie); font-size: 1.15rem; }
  .nav a.ist-aktiv { color: var(--rot); border-bottom-color: var(--linie); }
}

/* Hero-Slider -------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--schwarz); }
.hero-spur { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  min-height: clamp(420px, 52vh, 600px);
}
.hero-slide.ist-aktiv { display: block; animation: heroEin .5s ease; }
@keyframes heroEin { from { opacity: 0; } to { opacity: 1; } }

.hero-slide.theme-dark { background: radial-gradient(120% 140% at 80% 0%, #2a2a2a 0%, var(--schwarz) 55%); color: #fff; }
.hero-slide.theme-red { background: radial-gradient(120% 140% at 80% 0%, #ff3b30 0%, var(--rot-dunkel) 60%); color: #fff; }
.hero-slide.theme-light { background: linear-gradient(160deg, #fff 0%, #ececec 100%); color: var(--schwarz); }

.hero-in {
  display: flex; align-items: center; gap: 3rem;
  min-height: inherit; padding-top: 3rem; padding-bottom: 3.5rem;
}
.hero-text { flex: 1 1 46%; max-width: 640px; }
.hero-bild {
  flex: 1 1 54%; align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.hero-bild img {
  max-height: min(480px, 46vh);
  width: auto; max-width: 100%; object-fit: contain;
}
.hero-hl {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: none;
  margin-bottom: .3em;
}
.theme-red .hero-hl::after,
.theme-dark .hero-hl::after,
.theme-light .hero-hl::after {
  content: ""; display: block; width: 72px; height: 5px;
  background: var(--rot); margin-top: .35em; border-radius: 3px;
}
.theme-red .hero-hl::after { background: #fff; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.35rem); opacity: .9; margin: 0 0 1.4rem; }

.hero-pfeil {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .18); color: #fff;
  font-size: 1.6rem; line-height: 1;
  backdrop-filter: blur(3px);
  transition: background .15s ease;
}
.hero-pfeil:hover { background: var(--rot); }
.hero-pfeil.links { left: 14px; }
.hero-pfeil.rechts { right: 14px; }
.hero-punkte {
  position: absolute; left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 10px; z-index: 5;
}
.hero-punkte button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0;
}
.hero-punkte button.ist-aktiv { background: var(--rot); border-color: var(--rot); }

@media (max-width: 760px) {
  .hero-slide { min-height: 0; }
  .hero-in { flex-direction: column-reverse; text-align: center; gap: 1.2rem; }
  .hero-hl::after { margin-left: auto; margin-right: auto; }
  .hero-bild img { max-height: 240px; }
  .hero-pfeil { display: none; }
}

/* Leistungs-Band ---------------------------------------------- */
.band { background: var(--grau); color: #fff; padding: 3rem 0; }
.band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.band-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: #fff; color: var(--rot); margin-bottom: 1.1rem;
}
.band-icon svg { width: 44px; height: 44px; }
.band-item h2 { font-size: 1.35rem; margin-bottom: .2em; }
.band-item p { margin: 0; opacity: .85; }
@media (max-width: 900px) { .band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .band-grid { grid-template-columns: 1fr; } }

/* Abschnitte & Trenner ---------------------------------------- */
.abschnitt { padding: 4rem 0; }
.abschnitt.hell { background: var(--grau-hell); }
.seiten-titel { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--rot); text-align: center; }
.trenner {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: 1.5rem; text-align: center;
  margin: 2.5rem 0 1.6rem;
}
.trenner::before, .trenner::after {
  content: ""; flex: 1; height: 1px; background: var(--linie);
}
.trenner span { white-space: normal; }

/* Shop-Karten -------------------------------------------------- */
.shop-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
}
.shop-grid .shop-karte { flex: 1 1 260px; max-width: 330px; }
.shop-karte {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.shop-karte:hover { box-shadow: var(--schatten); transform: translateY(-3px); }
.shop-foto { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.shop-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.shop-karte:hover .shop-foto img { transform: scale(1.04); }
.shop-social {
  display: flex; gap: .6rem; justify-content: center;
  margin-top: -21px; position: relative; z-index: 2;
}
.shop-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grau); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
  transition: background .15s ease;
}
.shop-social a:hover { background: var(--rot); }
.shop-social svg { width: 20px; height: 20px; }
.shop-info { padding: 1.1rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.shop-info h3 { font-size: 1.25rem; }
.shop-info h3 a { color: var(--schwarz); text-decoration: none; }
.shop-info h3 a:hover { color: var(--rot); }
.shop-info p { margin: 0 0 1.1rem; color: var(--grau); }
.shop-info .btn {
  margin-top: auto; text-align: center;
  background: var(--schwarz); color: #fff;
  font-size: .65rem; letter-spacing: .01em;
  padding: .75rem .6rem; white-space: nowrap;
}
.shop-info .btn:hover { background: var(--rot); }

/* Reveal ------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].ist-sichtbar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Shopseite ---------------------------------------------------- */
.oeff-band { background: var(--rot); color: #fff; font-weight: 600; padding: .55rem 0; text-align: center; }
.shop-hero { position: relative; max-height: 480px; overflow: hidden; }
.shop-hero img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; }
.shop-hero-titel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: #fff; padding: 3.5rem 0 1.2rem;
}
.shop-hero-titel h1 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.6rem); }

.kontakt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.kontakt-kachel h2 { font-size: 1.25rem; }
.kontakt-kachel p { color: var(--grau); min-height: 3.2em; }
.kk-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--rot); color: #fff; margin-bottom: 1rem;
}
.kk-icon svg { width: 40px; height: 40px; }
@media (max-width: 980px) { .kontakt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kontakt-grid { grid-template-columns: 1fr; } }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; text-align: center; }
.mini-karte { padding: 1.2rem; background: #fff; border: 1px solid var(--linie); border-radius: var(--radius); }
.mini-karte h3 { font-size: 1.05rem; }
.mini-karte p { color: var(--grau); font-size: .92rem; }

/* Formulare ---------------------------------------------------- */
.feld-label { display: block; font-weight: 600; color: var(--rot); margin: 1rem 0 .3rem; }
.feld {
  width: 100%; font: inherit;
  padding: .65rem .8rem;
  border: 1px solid #cfcfcf; border-radius: 6px;
  background: #fff;
}
.feld:focus { outline: 2px solid var(--rot); outline-offset: 0; border-color: var(--rot); }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.feld-reihe.drei { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) { .feld-reihe, .feld-reihe.drei { grid-template-columns: 1fr; } }
textarea.feld { resize: vertical; }
.business-form .btn, .job-cta .btn { margin-top: 1.4rem; }
.feld-unterzeile { margin: -0.1rem 0 .4rem; }
.feld-datei { padding: .5rem; background: var(--grau-hell); }
.feld-datei::file-selector-button {
  font: inherit; font-weight: 600;
  border: 0; border-radius: 6px;
  background: var(--grau); color: #fff;
  padding: .45rem .9rem; margin-right: .8rem; cursor: pointer;
}
.feld-datei::file-selector-button:hover { background: var(--schwarz); }
.radio-gruppe { border: 0; padding: 0; margin: 1rem 0 0; }
.radio-gruppe legend { padding: 0; }
.radio-gruppe label { display: inline-flex; align-items: center; gap: .35rem; margin: .3rem 1.4rem .3rem 0; cursor: pointer; }
.radio-gruppe input { accent-color: var(--rot); }
.einwilligung { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.2rem; cursor: pointer; }
.einwilligung input { margin-top: .3rem; accent-color: var(--rot); }
.einwilligung span { font-size: .9rem; color: var(--grau); }

.fehlerbox {
  background: #fdecec; border: 1px solid var(--rot); color: var(--rot-dunkel);
  border-radius: 8px; padding: .9rem 1.1rem; margin: 1rem 0;
}
.fertigbox {
  background: #f0faf0; border: 1px solid #2e7d32; color: #1b5e20;
  border-radius: 8px; padding: 1.4rem 1.6rem; margin: 1rem 0;
}
.fertigbox.klein { padding: .7rem 1rem; }
.fertigbox .btn { margin-top: 1rem; }

/* Geschäftskunden / Jobs -------------------------------------- */
.ansprech { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: start; }
.ansprech-rolle { color: var(--rot); font-weight: 600; margin-top: -.4rem; }
.ansprech-foto { border-radius: var(--radius); margin-bottom: 1rem; width: 100%; max-width: 380px; height: auto; box-shadow: var(--schatten); }
.leistungen { padding-left: 1.2rem; }
.leistungen li { margin: .35rem 0; }
.leistungen li::marker { color: var(--rot); }
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1.5rem; }
@media (max-width: 760px) { .ansprech, .job-grid { grid-template-columns: 1fr; } }

/* Rechtstexte -------------------------------------------------- */
.rechtstext h2 { font-size: 1.3rem; margin-top: 2rem; }
.rechtstext { word-wrap: break-word; }

/* Terminbuchung ------------------------------------------------ */
.termin-wrap { max-width: 760px; }
.termin-titel { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .1em; }
.termin-shopname { color: var(--grau); margin-top: 0; }

.schritte {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
  list-style: none; padding: 0; margin: 2rem 0 2.2rem;
}
.schritte span { font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--grau); }
.schritte i { display: block; height: 9px; border-radius: 5px; background: #d4d4d4; margin-top: .3rem; }
.schritte li.ist-aktiv span, .schritte li.ist-fertig span { color: var(--rot); }
.schritte li.ist-aktiv i, .schritte li.ist-fertig i { background: var(--rot); }
@media (max-width: 620px) { .schritte span { font-size: .78rem; } }

.schritt { display: none; }
.schritt.ist-aktiv { display: block; animation: heroEin .3s ease; }
.schritt-hinweis { color: var(--grau); }
.schritt-nav { display: flex; justify-content: space-between; margin-top: 1.8rem; gap: 1rem; }

.zeit-grid { display: grid; grid-template-columns: 1fr 200px; gap: 2rem; align-items: start; }
@media (max-width: 640px) { .zeit-grid { grid-template-columns: 1fr; } }

.kalender { border: 1px solid var(--linie); border-radius: var(--radius); padding: 1rem; }
.kal-kopf { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.kal-kopf strong { font-family: var(--display); }
.kal-kopf button {
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: var(--grau-hell); cursor: pointer; font-size: 1.2rem;
}
.kal-kopf button:hover:not(:disabled) { background: var(--rot); color: #fff; }
.kal-kopf button:disabled { opacity: .3; cursor: default; }
.kal-wtage, .kal-tage { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.kal-wtage span { font-weight: 600; font-size: .82rem; color: var(--rot); padding: .3rem 0; }
.kal-tage button {
  aspect-ratio: 1; border: 0; border-radius: 8px;
  background: transparent; font: inherit; cursor: pointer;
}
.kal-tage button:disabled { color: #bbb; cursor: default; }
.kal-tage button.buchbar { color: var(--rot); font-weight: 700; background: #fdeaea; }
.kal-tage button.buchbar:hover { background: var(--rot); color: #fff; }
.kal-tage button.ist-gewaehlt { background: var(--rot); color: #fff; }

.slots-datum {
  background: var(--rot); color: #fff; font-family: var(--display); font-weight: 700;
  text-align: center; border-radius: 8px; padding: .55rem; margin-bottom: .7rem;
}
.slots-liste { display: grid; gap: .5rem; }
.slots-liste button {
  border: 1px solid var(--linie); border-radius: 8px; background: #fff;
  font: inherit; padding: .55rem; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.slots-liste button:hover { border-color: var(--rot); }
.slots-liste button.ist-gewaehlt { background: var(--rot); border-color: var(--rot); color: #fff; font-weight: 700; }
.slots-leer { color: var(--grau); font-size: .9rem; text-align: center; padding: 1rem 0; }

/* Footer ------------------------------------------------------- */
.partner-schutz { margin-top: 4rem; font-size: 0; }
.partner-schutz a { display: block; }
.partner-schutz img { display: block; width: 100%; height: auto; }
.site-foot { background: #1c1c1c; color: #cfcfcf; margin-top: 0; }
.foot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  padding-top: 3.5rem; padding-bottom: 2.5rem;
}
.site-foot h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.foot-list { list-style: none; padding: 0; margin: 0; }
.foot-list li { padding: .22rem 0; }
.foot-links li { border-bottom: 1px solid #333; padding: .45rem 0; }
.foot-links a { color: #cfcfcf; text-decoration: none; }
.foot-links a:hover { color: #fff; }
.foot-abstand { margin-top: 1.6rem; }
.foot-siegel { display: inline-block; margin-top: 1.4rem; }
.foot-siegel img { width: 170px; height: auto; border-radius: 8px; }
.foot-unten {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #333; padding-top: 1rem; padding-bottom: 1.2rem;
  font-size: .88rem;
}
.nach-oben {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--rot); color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }


/* Cookie-Banner ------------------------------------------------ */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0, 0, 0, .55);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1rem;
}
.cookie-box {
  background: #fff; border-radius: 14px; box-shadow: var(--schatten);
  max-width: 560px; width: 100%;
  padding: 1.4rem 1.6rem;
  max-height: 90vh; overflow: auto;
}
.cookie-kopf { display: flex; align-items: center; gap: .7rem; }
.cookie-kopf h2 { font-size: 1.15rem; margin: 0; flex: 1; }
.cookie-x {
  border: 0; background: none; font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: var(--grau); padding: .2rem .4rem;
}
.cookie-box p { font-size: .9rem; color: var(--grau); }
.cookie-details { border-top: 1px solid var(--linie); margin-top: .6rem; padding-top: .6rem; }
.cookie-kat { display: flex; gap: .7rem; align-items: flex-start; padding: .5rem 0; cursor: pointer; }
.cookie-kat input { margin-top: .3rem; }
.cookie-kat small { color: var(--grau); }
.cookie-aktionen { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.cookie-aktionen .btn { font-size: .8rem; padding: .65rem 1rem; }
.cookie-links { display: flex; gap: 1.2rem; margin: 1rem 0 0; font-size: .82rem !important; }
.cookie-links a { color: var(--rot); }
@media (max-width: 540px) { .cookie-aktionen .btn { flex: 1 1 100%; text-align: center; } }

/* FAQ-Tabs (Geschäftskunden) ----------------------------------- */
.tp-faq-tabs { margin: 3.5rem 0 0; }
.tp-faq-tabs h2 { font-size: 1.5rem; }
.tp-faq-intro { color: var(--grau); margin-bottom: 1.5rem; }
.tp-faq-tabs input[type="radio"] { display: none; }
.tp-faq-tab-labels { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--linie); gap: .25rem; }
.tp-faq-tab-labels label {
  padding: .6rem 1.2rem; cursor: pointer;
  border-radius: .5rem .5rem 0 0; background: var(--grau-hell);
  font-weight: 600; font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.tp-faq-tab-labels label:hover { background: #e9e9e9; }
.tp-faq-tab-panels {
  border: 1px solid var(--linie); border-radius: 0 .75rem .75rem .75rem;
  padding: 1.5rem 1.4rem; background: #fff;
}
.tp-faq-tab-panel { display: none; }
.tp-faq-tab-panel h3 { font-size: 1.05rem; margin: 1rem 0 .25rem; }
.tp-faq-tab-panel h3:first-child { margin-top: 0; }
.tp-faq-tab-panel p { margin: 0 0 .75rem; }
#faq-tab-1:checked ~ .tp-faq-tab-labels label[for="faq-tab-1"],
#faq-tab-2:checked ~ .tp-faq-tab-labels label[for="faq-tab-2"],
#faq-tab-3:checked ~ .tp-faq-tab-labels label[for="faq-tab-3"] {
  background: var(--rot); color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
#faq-tab-1:checked ~ .tp-faq-tab-panels #faq-panel-1,
#faq-tab-2:checked ~ .tp-faq-tab-panels #faq-panel-2,
#faq-tab-3:checked ~ .tp-faq-tab-panels #faq-panel-3 { display: block; }
@media (max-width: 600px) {
  .tp-faq-tab-labels { flex-direction: column; }
  .tp-faq-tab-labels label { border-radius: .5rem; }
  .tp-faq-tab-panels { border-radius: .75rem; margin-top: .5rem; }
}

/* Bonus-Seiten -------------------------------------------------- */
.bonus-seite { text-align: center; }
.bonus-seite h2 { color: var(--rot); margin-top: 2rem; }
.bonus-seite ul { display: inline-block; text-align: left; }
.bonus-seite ul li::marker { color: var(--rot); }
.bonus-betrag {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4rem); color: var(--rot);
  margin: 0 0 .5rem; line-height: 1.1;
}
.bonus-code img {
  display: inline-block; max-width: 260px; width: 100%; height: auto;
  border: 1px solid var(--linie); border-radius: 8px; padding: 10px; background: #fff;
  image-rendering: crisp-edges;
}
.bonus-fanbild img {
  display: block; width: 100%; height: auto; max-height: 420px; object-fit: cover;
  border-radius: var(--radius); margin: 0 0 1.5rem;
}
