/*
 * Gestaltung von blackweek.live.
 *
 * EIN Stylesheet, vom eigenen Server ausgeliefert — keine externe Schrift, kein
 * Framework. Das ist keine Sparsamkeit: Ein Deal-Portal wird ueberwiegend
 * mobil und ueber Mobilfunk aufgerufen, und die Ladezeit ist ein Rankingfaktor.
 * Ausserdem entfaellt damit die Verbindung zu einem fremden Schriftanbieter,
 * die sonst im Datenschutz stuende.
 *
 * Farbrollen, die nicht vermischt werden duerfen:
 *   Rot/Gelb  = Preise und die Kennzeichnung "Anzeige"
 *   Blau→Weiss = die Deal-Spannung (Bewertung der Community)
 * Beides zu mischen hiesse, Werbung und Bewertung optisch zu verschmelzen.
 */
:root {
  --bg: #0a0a0b;
  --bg2: #121215;
  --karte: #17171b;
  --karte2: #1d1d22;
  --linie: #2a2a31;
  --linie2: #3a3a44;
  --txt: #f6f6f7;
  --txt2: #c7c7cf;
  --muted: #8e8e99;
  --rot: #e60000;
  --rot-hell: #ff2f2f;
  --rot-tief: #b00000;
  --gelb: #ffd400;
  --gold: #d6a629;
  --gruen: #22c55e;
  --blau: #38bdf8;
  --r: 14px;
  --r2: 20px;
  --schrift:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--schrift);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sichtbar nur fuer Screenreader — Sprungmarke zum Inhalt. */
.nur-vorlesen {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.nur-vorlesen:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  background: var(--gelb);
  color: #111;
  padding: 8px 14px;
}

/* ------------------------------------------------------------ Kopfbereich */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linie);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
/*
 * Das Logo sitzt auf einer hellen Flaeche — wie im Newsletter.
 *
 * Es ist auf WEISS freigestellt: Die weich gezeichneten Kanten tragen
 * Weiss-Anteile, und "BLACK" steht in fast Schwarz. Direkt auf dem dunklen
 * Grund verschwaende das Wort, und die Kanten bekaemen einen Schimmer.
 * Die Flaeche ist deshalb keine Zier, sondern das, wofuer die Datei gemacht
 * ist. Kommt einmal eine fuer dunklen Grund gesetzte Fassung, faellt sie
 * ersatzlos weg.
 */
.logo {
  display: inline-flex;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}
footer .logo {
  padding: 5px 9px;
}
footer .logo img {
  height: 30px;
}
.suche {
  flex: 1;
  position: relative;
  max-width: 520px;
  min-width: 200px;
}
.suche input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--linie2);
  background: var(--karte);
  color: var(--txt);
  padding: 0 18px 0 44px;
  font-size: 14px;
  font-family: inherit;
}
.suche input::placeholder {
  color: var(--muted);
}
.suche svg {
  position: absolute;
  left: 15px;
  top: 13px;
  opacity: 0.55;
  pointer-events: none;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: 0.16s;
}
.btn-rot {
  background: var(--rot);
  color: #fff;
}
.btn-rot:hover {
  background: var(--rot-hell);
}
.btn-geist {
  background: transparent;
  color: var(--txt2);
  border-color: var(--linie2);
}
.btn-geist:hover {
  border-color: #54545f;
  color: #fff;
}
.btn-gelb {
  background: var(--gelb);
  color: #111;
}
.btn-klein {
  height: 36px;
  padding: 0 15px;
  font-size: 13px;
}

.katleiste {
  border-bottom: 1px solid var(--linie);
  background: var(--bg);
}
.katleiste .wrap {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.katleiste .wrap::-webkit-scrollbar {
  display: none;
}
.kat {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--txt2);
  white-space: nowrap;
  border: 1px solid transparent;
}
.kat:hover {
  background: var(--karte2);
  color: #fff;
}
.kat[aria-current] {
  background: #fff;
  color: #000;
}

/* Reihe der wiederkehrenden Anlaesse — ganzjaehrige Landeseiten. */
.anlaesse {
  border-bottom: 1px solid var(--linie);
  background: #0d0d10;
}
.anlaesse .wrap {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-top: 9px;
  padding-bottom: 9px;
  align-items: center;
  scrollbar-width: none;
}
.anlaesse .wrap::-webkit-scrollbar {
  display: none;
}
.anlaesse .lab {
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
  padding-right: 6px;
}
.anlass {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--txt2);
  border: 1px solid var(--linie);
  white-space: nowrap;
}
.anlass:hover {
  border-color: var(--linie2);
  color: #fff;
}
.anlass.laeuft {
  border-color: var(--rot);
  color: #fff;
  background: rgba(230, 0, 0, 0.12);
}
.anlass small {
  color: var(--muted);
  font-weight: 600;
  margin-left: 5px;
}

/* Band: im Aktionsbetrieb rot mit Countdown, sonst ruhig. */
.band {
  background: linear-gradient(90deg, var(--rot-tief), var(--rot) 45%, #7a0000);
  border-bottom: 1px solid #000;
}
.band .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 11px;
  padding-bottom: 11px;
}
.band b {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.uhr {
  display: flex;
  gap: 7px;
  margin-left: auto;
}
.uhr div {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  min-width: 56px;
}
.uhr span {
  display: block;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.uhr small {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  opacity: 0.75;
  text-transform: uppercase;
}
.band-normal {
  background: linear-gradient(90deg, #101018, #16161f 45%, #101018);
  border-bottom: 1px solid var(--linie);
}
.band-normal .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 11px;
  padding-bottom: 11px;
}
.band-normal b {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt);
}
.band-normal .naechstes {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--txt2);
  font-weight: 700;
}
.band-normal .naechstes u {
  text-decoration: none;
  background: var(--rot);
  color: #fff;
  border-radius: 7px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 12px;
}

/* -------------------------------------------------------------- Bausteine */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
}
.chip-anz {
  background: var(--gelb);
  color: #111;
}
/* Die drei Chips sitzen auf hellen Karten — Grund hell, Schrift vertieft. */
.chip-com {
  background: #eaf0fb;
  color: #29508f;
  border: 1px solid #c6d6f0;
}
.chip-neu {
  background: #eaf7f0;
  color: #0e6b45;
  border: 1px solid #bfe4d1;
}
.chip-ende {
  background: #fdf0ef;
  color: #ad2a20;
  border: 1px solid #f3c9c5;
}

/* Deal-Spannung. Eckig plus Ladebalken — eine eigene Silhouette. */
.spannung {
  display: inline-flex;
  align-items: center;
  border-radius: 9px;
  border: 1px solid var(--linie2);
  background: #ffffff;
  overflow: hidden;
}
.spannung button {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 11px;
  font-family: inherit;
  line-height: 1;
}
.spannung button:hover {
  color: #111;
  background: #eef0f4;
}
.spannung button[aria-pressed="true"] {
  color: #0b6ea8;
  background: #e3f4fd;
}
.spannung .volt {
  padding: 6px 12px;
  font-weight: 800;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  border-left: 1px solid var(--linie2);
  border-right: 1px solid var(--linie2);
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Auf den hellen Stufen steht DUNKLE Schrift — der Verlauf endet in Weiss. */
/* #38bdf8 als SCHRIFT auf Weiss hat nur rund 2:1 — auf den ungefuellten
   Stufen steht deshalb das vertiefte Blau, nicht das Akzentblau selbst. */
.s-strom .volt {
  color: #0b6ea8;
}
.s-geladen .volt {
  color: #0b6ea8;
  background: #e3f4fd;
}
.s-hoch .volt {
  color: #0a0a0b;
  background: linear-gradient(90deg, var(--blau), var(--gelb));
}
.s-lichtbogen .volt {
  color: #0a0a0b;
  background: linear-gradient(90deg, var(--blau), var(--gelb) 55%, #fff);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.35);
}
.ladebalken {
  height: 5px;
  border-radius: 3px;
  background: #e6e8ec;
  overflow: hidden;
  margin-top: 9px;
}
.ladebalken i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blau), var(--gelb) 55%, #fff);
}

.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  flex-wrap: wrap;
}
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bild {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  border: 1px solid var(--linie);
  /* Voreinstellung fuer das Ersatzzeichen; jede Kartenstufe ueberschreibt sie.
     Hier und NICHT als Ersatzwert in var(): Ein fehlender Token soll
     auffallen, statt sich hinter einem Standardwert zu verstecken. */
  --ico: 48px;
}
.bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bild .platzhalter {
  font-size: var(--ico);
  opacity: 0.5;
}
.rabatt {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--rot);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(230, 0, 0, 0.4);
}

.preis {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.preis b {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.preis s {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.preis .spar {
  color: var(--gruen);
  font-size: 12.5px;
  font-weight: 800;
}

.haendler {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--txt2);
}
.haendler u {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #2b2b33;
  display: grid;
  place-items: center;
  font-size: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

/* ------------------------------------------------- Karten je Wertigkeit */
/*
 * Helle Kacheln auf dunklem Grund.
 *
 * Der Rahmen der Seite bleibt schwarz — Kopf, Baender, Grundflaeche —, die
 * Deals selbst sitzen auf Weiss. Grund ist nicht Geschmack, sondern das
 * Material: Produktfotos kommen fast immer auf weissem Grund aus den Shops.
 * Auf einer dunklen Kachel schwebt so ein Foto als leuchtendes Rechteck darin;
 * bei dreissig Kacheln wird die Seite unruhig. Dazu kommt der Kontrast — Rot
 * auf Weiss liest sich deutlich besser als Rot auf Fast-Schwarz — und der
 * Gleichklang mit dem Newsletter, der ohnehin hell ist.
 *
 * Umgesetzt ueber die Variablen: Sie werden hier NEU GESETZT, und jedes
 * var(--muted) in den Vorlagen loest sich innerhalb der Karte automatisch auf
 * den hellen Wert auf. Deshalb musste kein Markup angefasst werden — und es
 * kann auch keine Stelle vergessen werden.
 */
.karte,
.kasten {
  --txt: #111111;
  --txt2: #454545;
  --muted: #6b6b6b;
  --linie: #e6e8ec;
  --linie2: #ccd2dc;
  --karte: #ffffff;
  --karte2: #f3f4f6;
  --bg2: #f7f8fa;
  /* #ff2f2f haette auf Weiss nur 3,3:1 — zu wenig fuer eine Preisangabe. */
  --rot-hell: #d40000;
  background: #ffffff;
  color: var(--txt);
}
.karte {
  border: 1px solid var(--linie);
  border-radius: var(--r2);
  position: relative;
  transition: 0.18s;
}
.karte:hover {
  transform: translateY(-3px);
  border-color: var(--linie2);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.p-header {
  border: 2px solid var(--rot);
  box-shadow:
    0 0 0 5px rgba(230, 0, 0, 0.09),
    0 26px 70px rgba(0, 0, 0, 0.6);
  /* Kein Verlauf mehr: Die Karte ist weiss, der rote Rahmen traegt die Stufe. */
  background: #ffffff;
}
.p-header .balken {
  background: var(--rot);
  /* Ausdruecklich, weil die Karte ihre Schriftfarbe auf Dunkel setzt — ohne
     diese Zeile staende dunkler Text auf rotem Grund. */
  color: #ffffff;
  border-radius: 18px 18px 0 0;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  gap: 12px;
}
.p-header .inh {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  padding: 26px;
}
.p-header .bild {
  aspect-ratio: 16/9;
  --ico: 96px;
}
.p-header h2,
.p-header h3 {
  font-size: 34px;
  margin-bottom: 10px;
}
.p-header .preis b {
  font-size: 44px;
  color: var(--rot-hell);
}
.p-header p {
  color: var(--txt2);
  font-size: 15px;
  margin: 0 0 18px;
}

.p-prem {
  border: 1px solid #d8c28a;
  background: #ffffff;
}
.p-prem .balken {
  background: #120f08;
  border-bottom: 2px solid var(--gold);
  border-radius: 19px 19px 0 0;
  padding: 9px 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gelb);
  gap: 10px;
}
.p-prem .inh {
  padding: 18px;
}
.p-prem .bild {
  aspect-ratio: 3/1;
  --ico: 64px;
  margin-bottom: 14px;
}
.p-prem h3 {
  font-size: 22px;
  margin-bottom: 7px;
}
.p-prem .preis b {
  font-size: 30px;
  color: var(--rot-hell);
}

.p-row {
  border-left: 4px solid var(--rot);
}
.p-row .inh {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 16px;
}
.p-row .bild {
  aspect-ratio: 4/3;
  --ico: 52px;
}
.p-row h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.p-row .preis b {
  font-size: 25px;
  color: var(--rot-hell);
}

.p-col .inh {
  padding: 14px;
}
.p-col .bild {
  aspect-ratio: 4/3;
  --ico: 44px;
  margin-bottom: 12px;
}
.p-col h3 {
  font-size: 16.5px;
  margin-bottom: 5px;
}
.p-col .preis b {
  font-size: 21px;
  color: var(--rot-hell);
}

/* Community bewusst schlichter — der Unterschied muss sichtbar sein. */
/*
 * Community-Karten sind bewusst ruhiger als bezahlte: leicht abgesetzter
 * Grund, kein Schatten. Der Unterschied muss sichtbar sein (Trennungsgebot),
 * aber er darf nicht wie eine Abwertung wirken — diese Deals sind oft die
 * besseren.
 */
.p-com {
  background: #f7f8fa;
  border: 1px solid #e2e6ec;
}
.p-com:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.p-com .inh {
  padding: 13px;
}
.p-com .bild {
  aspect-ratio: 4/3;
  --ico: 40px;
  margin-bottom: 11px;
}
.p-com h3 {
  font-size: 15.5px;
  margin-bottom: 5px;
  font-weight: 700;
}
.p-com .preis b {
  font-size: 19px;
  color: var(--txt);
}

.raster2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.raster3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stapel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abschnitt {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 42px 0 18px;
}
.abschnitt h2 {
  font-size: 23px;
}
.abschnitt .strich {
  flex: 1;
  height: 1px;
  background: var(--linie);
}
.abschnitt .hinweis {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.sortier {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid var(--linie);
  margin-bottom: 22px;
}
.sort {
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--txt2);
  border: 1px solid var(--linie2);
}
.sort[aria-current] {
  background: var(--rot);
  border-color: var(--rot);
  color: #fff;
}

/* Werbeplatz. Die Kennzeichnung steht IMMER darueber und ist nicht abschaltbar. */
/*
 * Werbeplaetze bekommen einen hellen Grund: Banner werden fast immer auf
 * Weiss geliefert. Auf dunklem Grund saehe jeder Banner wie ein Fremdkoerper
 * aus — und genau das soll er NICHT, obwohl er als Anzeige gekennzeichnet ist.
 */
.werbeplatz {
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  color: #6b6b6b;
  position: relative;
  overflow: hidden;
  padding: 12px;
}
.werbeplatz .kenn {
  color: #8a8a94;
}
.werbeplatz .kenn {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6f7a;
}
.werbeplatz img {
  margin: 0 auto;
}
.werbeplatz .nurmobil {
  display: none;
}
@media (max-width: 700px) {
  .werbeplatz .nurdesktop {
    display: none;
  }
  .werbeplatz .nurmobil {
    display: block;
  }
}

.nlband {
  background: linear-gradient(135deg, #1a1013, #101013);
  border: 1px solid var(--linie);
  border-radius: var(--r2);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 52px 0;
}
.nlband h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.nlband p {
  color: var(--txt2);
  margin: 0;
  max-width: 560px;
}
.nlform {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nlform input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--linie2);
  background: #000;
  color: #fff;
  padding: 0 16px;
  min-width: 260px;
  font-family: inherit;
  font-size: 14px;
}

.seo {
  margin: 56px 0;
  color: var(--txt2);
}
.seo h2 {
  font-size: 26px;
  color: var(--txt);
  margin-bottom: 14px;
}
.seo h3 {
  font-size: 17px;
  color: var(--txt);
  margin: 26px 0 8px;
}
.seo p {
  margin: 0 0 12px;
  max-width: 82ch;
}
.faq {
  border-top: 1px solid var(--linie);
  margin-top: 26px;
}
.faq details {
  border-bottom: 1px solid var(--linie);
}
.faq summary {
  padding: 15px 0;
  font-weight: 800;
  color: var(--txt);
  cursor: pointer;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--rot-hell);
  font-size: 20px;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  padding: 0 0 16px;
  margin: 0;
  max-width: 82ch;
}

footer {
  border-top: 1px solid var(--linie);
  background: #000;
  margin-top: 60px;
  padding: 44px 0 30px;
}
.fussraster {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}
footer h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
footer a {
  display: block;
  color: var(--txt2);
  font-size: 13.5px;
  padding: 3px 0;
}
footer a:hover {
  color: #fff;
}
.affihinweis {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--linie);
  color: var(--muted);
  font-size: 12px;
  max-width: 90ch;
}

/* --------------------------------------------------------------- Formulare */
.kasten {
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: var(--r2);
  padding: 26px;
}
.feld {
  margin-bottom: 16px;
}
.feld label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--txt2);
  margin-bottom: 6px;
}
.feld input,
.feld select,
.feld textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--linie2);
  border-radius: 11px;
  color: var(--txt);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
}
.feld input:focus,
.feld textarea:focus,
.feld select:focus {
  outline: 2px solid var(--rot);
  border-color: var(--rot);
}
.feld small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.feld-hak {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.feld-hak input {
  width: auto;
  margin-top: 3px;
}
.feld-hak label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--txt2);
  font-size: 13.5px;
  margin: 0;
}
.zeile2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zeile3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
/*
 * Die drei Hinweiskaesten stehen fast immer INNERHALB einer hellen Karte oder
 * eines Formulars. Deshalb helle Fassungen — dieselben Farbrollen wie im
 * Hausystem der internen Werkzeuge (ok / warn / fehler).
 */
.hinweiskasten {
  background: #eaf7f0;
  border: 1px solid #bfe4d1;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #0e6b45;
}
.warnkasten {
  background: #fdf6e6;
  border: 1px solid #efdcaa;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #8a5a06;
}
.fehlerkasten {
  background: #fdf0ef;
  border: 1px solid #f3c9c5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #ad2a20;
}

@media (max-width: 1000px) {
  .p-header .inh {
    grid-template-columns: 1fr;
  }
  .raster3 {
    grid-template-columns: 1fr 1fr;
  }
  .nlband {
    grid-template-columns: 1fr;
  }
  .fussraster {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .raster2,
  .raster3 {
    grid-template-columns: 1fr;
  }
  .p-row .inh {
    grid-template-columns: 1fr;
  }
  .zeile2,
  .zeile3 {
    grid-template-columns: 1fr;
  }
  .p-header h2,
  .p-header h3 {
    font-size: 26px;
  }
  .p-header .preis b {
    font-size: 34px;
  }
}
/* Wer Bewegung abbestellt hat, bekommt keine. */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  .karte:hover {
    transform: none;
  }
}
