/* ============================================================
   Christmas by Mary – Prototyp-Stylesheet
   Farbwelt & Typografie aus dem Design-Konzept (Claude Design v2)
   ============================================================ */

:root {
  --red: #822F2E;
  --red-dark: #6B2524;
  --cream: #F6EFE3;
  --cream-light: #FBF6EC;
  --cream-hover: #F0E4D2;
  --brown: #3A2E26;
  --muted: #6E5E51;
  --gold: #E0B87E;
  --rose: #F0DFD2;
  --green: #2E4E3F;
  --green-dark: #24402F;
  --font-body: 'Quicksand', sans-serif;
  --font-display: 'Cinzel', serif;
  --font-display-decorative: 'Cinzel Decorative', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-hand: 'Caveat', cursive;
  --image-radius: 3px;
  /* Vierzackiger Funkel-Stern als SVG statt Font-Zeichen (Listen-Bullets) */
  --funkel-stern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E0B87E' d='M12 1c1.2 6.2 4.8 9.8 11 11-6.2 1.2-9.8 4.8-11 11-1.2-6.2-4.8-9.8-11-11 6.2-1.2 9.8-4.8 11-11Z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--cream); }
body {
  font-family: var(--font-body);
  color: var(--brown);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
/* Fließtext-Links (Artikel, Warenkorb, Formulare): Unterstreichung für bessere Erkennbarkeit */
main :is(.prose, .lead, .inhalt-liste, .field-hinweis, .cart-summary-rows, .form-datenschutz, .kasse-abschluss, label) a:not(.btn):not(.link-underline):not(.snippet-card):not(.artikel-card):not(.shop-card) {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}
img { display: block; max-width: 100%; }

/* Lange deutsche Wörter (z. B. "Verbraucherstreitbeilegung") dürfen die
   Seite auf schmalen Screens nicht horizontal aufreißen */
h1, h2, h3, h4, p, li, td, blockquote { overflow-wrap: break-word; }
@media (max-width: 560px) {
  h1, h2, h3 { hyphens: auto; }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Anker-Ziele nicht unter dem Sticky-Header verschwinden lassen */
[id] { scroll-margin-top: 120px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0, "calt" 0;
}
/* Schmuck-Initiale nur bei großen Display-Überschriften (Cinzel) */
h1::first-letter,
h2::first-letter {
  font-family: var(--font-display-decorative);
}
/* h3 und Body-Schrift-Titel: keine Initiale (sonst Cinzel Decorative auf Quicksand) */
.page-title::first-letter,
.section-bewertungen h2::first-letter,
.bewertung-form-titel::first-letter {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
h1 { font-size: clamp(32px, 5vw, 52px); margin: 0 0 22px; }
h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 16px; color: var(--red); }
h3 { font-size: 21px; margin: 0 0 10px; color: var(--brown); }

/* Sektions-Zwischenüberschriften: rot, Display-Schrift (Cinzel ist von Haus aus versal) */
.section-head h2,
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: 0.02em;
  color: var(--red);
  margin: 0 0 16px;
  line-height: 1.1;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0, "calt" 0;
}
.section-head h2::first-letter,
.section-title::first-letter {
  font-family: var(--font-display-decorative);
}
.lead { font-size: 18px; color: var(--muted); font-weight: 500; text-wrap: pretty; }
.lead p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: var(--btn-radius, 999px);
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--brown); outline-offset: 2px; }
.btn-sm { padding: 11px 22px; font-size: 14.5px; }
.btn-primary { background: var(--btn-primary-bg, var(--red)); color: var(--btn-primary-text, var(--cream-light)); }
.btn-primary:hover { background: var(--btn-primary-hover-bg, var(--red-dark)); color: var(--btn-primary-text, var(--cream-light)); }
.btn-light { background: var(--cream-light); color: var(--red); }
.btn-light:hover { background: var(--cream-hover); color: var(--red-dark); }
.btn-dark { background: var(--brown); color: var(--cream-light); }
.btn-dark:hover { background: var(--red); color: var(--cream-light); }
.link-underline {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}

/* ---------- Announcement & Header ---------- */
.announcement {
  background: var(--announcement-bg);
  color: var(--announcement-text);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: .01em;
  font-weight: 500;
}
.announcement a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--header-bg) 96%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--header-border);
}
/* Header läuft über die volle Breite, der Inhalt darunter bleibt begrenzt */
.site-header .container { max-width: none; }
@media (min-width: 1280px) { .site-header .container { padding: 0 48px; } }
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { height: 44px; width: auto; max-width: min(220px, 58vw); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; }
.main-nav a { color: var(--header-text); }
.main-nav a:hover { color: var(--header-text-hover); }
.main-nav a.active { color: var(--header-text-active); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--header-text);
  padding: 7px 2px;
  white-space: nowrap;
}
.header-link:hover, .header-link.active { color: var(--header-text-hover); }
.header-kontrast .header-link.active {
  background: var(--header-active-bg);
  color: var(--header-active-text);
  border-radius: var(--btn-radius, 999px);
  padding: 7px 14px;
}
.cart-link {
  width: 42px; height: 42px;
  border-radius: 999px; /* bewusst rund (Icon-Kreis), unabhängig vom Button-Radius */
  color: var(--header-cart-text);
  display: flex; align-items: center; justify-content: center;
}
.cart-link:hover { color: var(--header-cart-hover); }
.header-kontrast .main-nav a.active {
  background: var(--header-active-bg);
  color: var(--header-active-text);
  border-radius: var(--btn-radius, 999px);
  padding: 7px 14px;
}
.header-actions .btn-primary {
  background: var(--header-btn-bg);
  color: var(--header-btn-text);
}
.header-actions .btn-primary:hover {
  background: var(--header-btn-hover-bg);
  color: var(--header-btn-hover-text);
}
.header-actions .btn-ghost {
  background: transparent;
  border: 2px solid var(--header-text);
  color: var(--header-text);
  padding: 9px 20px;
}
.header-actions .btn-ghost:hover {
  background: color-mix(in srgb, var(--header-text) 12%, transparent);
  color: var(--header-text);
}
.header-kontrast .header-actions .btn-ghost {
  border-color: var(--cream-light);
  color: var(--cream-light);
}
.header-kontrast .header-actions .btn-ghost:hover {
  background: color-mix(in srgb, var(--cream-light) 14%, transparent);
  color: var(--cream-light);
}

/* ---------- Mobile Navigation ----------
   Auf schmalen Screens verschwindet die Desktop-Nav. Stattdessen: fixer
   Menü-Button unten rechts (daumenfreundlich) und ein Fullscreen-Overlay,
   das von unten hereinfährt (iOS-Sheet-Gefühl).    Oben bleiben nur Logo, Kontakt-Button und Warenkorb. Shop nur im
   Off-Canvas-Menü. Funktioniert ohne JS per Checkbox; das
   kleine Skript im Header sperrt zusätzlich das Scrollen im Hintergrund. */
.mobilenav-toggle { display: none; }
.mobilenav, .mobilenav-fab { display: none; }
html.nav-offen { overflow: hidden; }

@media (max-width: 1280px) and (min-width: 1141px) {
  .main-nav { gap: 18px; font-size: 14px; }
  .header-inner { gap: 16px; }
  .header-link { font-size: 14px; }
}

@media (max-width: 1140px) {
  .main-nav { display: none; }

  /* Fixer Menü-Button unten rechts */
  .mobilenav-fab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: var(--mobilenav-fab-bg, var(--green-dark));
    border: 2px solid color-mix(in srgb, var(--mobilenav-fab-icon, var(--cream-light)) 35%, transparent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    cursor: pointer;
    z-index: 90;
    transition: background .2s ease, transform .2s ease;
  }
  .mobilenav-fab:active { transform: scale(.94); }
  .mobilenav-fab span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--mobilenav-fab-icon, var(--cream-light));
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .mobilenav-toggle:checked ~ .mobilenav-fab { background: var(--mobilenav-fab-open-bg, var(--green)); }
  .mobilenav-toggle:checked ~ .mobilenav-fab span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .mobilenav-toggle:checked ~ .mobilenav-fab span:nth-child(2) { opacity: 0; }
  .mobilenav-toggle:checked ~ .mobilenav-fab span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Fullscreen-Overlay, von unten hereinfahrend */
  .mobilenav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--mobilenav-bg, var(--red-dark));
    background-image: radial-gradient(circle, rgba(246, 239, 227, .07) 1px, transparent 1.5px);
    background-size: 26px 26px;
    padding: calc(64px + env(safe-area-inset-top, 0px)) 24px calc(96px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    transform: translateY(6%);
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
    overscroll-behavior: contain;
    overflow-y: auto;
  }
  .mobilenav-toggle:checked ~ .mobilenav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity .3s ease, transform .3s ease;
  }
  .mobilenav-links { display: flex; flex-direction: column; gap: 2px; }
  .mobilenav-links a {
    font-family: var(--font-display);
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.35;
    color: var(--mobilenav-text, var(--cream-light));
    padding: 4px 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .mobilenav-links a.active { color: var(--mobilenav-active, var(--gold)); }
  .mobilenav-toggle:checked ~ .mobilenav .mobilenav-links a { opacity: 1; transform: translateY(0); }
  .mobilenav-fuss {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }
  .mobilenav-mail { color: var(--mobilenav-subtext, var(--rose)); font-weight: 600; font-size: 14.5px; text-decoration: underline; text-underline-offset: 4px; }
  .mobilenav-kontakt-link {
    color: var(--mobilenav-text, var(--cream-light));
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .mobilenav-kontakt-btn { align-self: stretch; text-align: center; }
  .mobilenav-fuss .btn-ghost {
    background: transparent;
    border: 2px solid var(--cream-light);
    color: var(--cream-light);
    padding: 14px 28px;
  }
  .mobilenav-fuss .btn-ghost:hover {
    background: color-mix(in srgb, var(--cream-light) 12%, transparent);
    color: var(--cream-light);
  }

  /* Oben: Logo, Kontakt, Warenkorb – Shop nur im Off-Canvas */
  .header-actions .header-link-shop { display: none; }
  .site-header .container { padding: 0 16px; }
  .header-inner { height: 56px; gap: 10px; }
  .header-actions { margin-left: auto; gap: 6px; }
  .logo-link { flex-shrink: 1; min-width: 0; }
  .logo { height: 32px; max-width: min(168px, 48vw); }
  .header-actions .btn-sm { padding: 8px 14px; font-size: 13px; }
  .cart-link { width: 36px; height: 36px; }
  .cart-link svg { width: 18px; height: 18px; }
  .announcement { padding: 8px 12px; font-size: 12px; line-height: 1.4; }
}
@media (max-width: 360px) {
  .header-actions .btn-sm { padding: 7px 12px; font-size: 12.5px; }
  .logo { height: 28px; max-width: min(148px, 46vw); }
  .site-header .container { padding: 0 12px; }
}

/* ---------- Hero ---------- */
.hero { background: var(--red); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 88px;
}
.hero h1 { color: var(--cream-light); line-height: 1.1; }
.hero p,
.hero-text {
  font-size: 19px;
  color: var(--rose);
  max-width: 480px;
  font-weight: 500;
  margin: 0 0 36px;
}
.hero-text p { margin: 0; }
.hero img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--image-radius); }
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-ctas .link-underline { color: var(--cream-light); }
.hero-ctas .link-underline:hover { color: var(--gold); }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
}

/* ---------- Wellen ---------- */
.wave { line-height: 0; }
.wave svg { display: block; }

/* ---------- Trust-Leiste ---------- */
.trust {
  background: var(--cream-light);
  padding: 36px 24px 46px;
  display: flex;
  justify-content: center;
  gap: clamp(32px, 7vw, 88px);
  text-align: center;
  flex-wrap: wrap;
}
.trust-abschluss {
  padding: 52px 24px 72px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 260px; }
.trust-item div { font-size: 15px; font-weight: 600; color: var(--muted); }

/* ---------- Sektionen ---------- */
.section { padding: 72px 0; }
/* Zwei-Bild-Teaser im Text-Block (B2B) */
.text-block-zweibilder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.text-block-zweibilder .medien-ki-wrap {
  display: block;
  width: 100%;
}
.text-block-zweibilder img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--image-radius);
}
.text-block-zweibilder > :last-child { transform: translateY(24px); }
@media (max-width: 560px) {
  .text-block-zweibilder { grid-template-columns: 1fr; }
  .text-block-zweibilder > :last-child { transform: none; }
}

.section-sm { padding: 48px 0; }
.section-red { background: var(--red); }
.section-red h2, .section-red .section-title { color: var(--cream-light); }
.section-red .page-title,
.section-red .page-title--intro { color: var(--cream-light); }
.section-red .lead { color: var(--rose); }
.section-red .section-head p,
.section-red .section-head .lead { color: var(--rose); }
.section-red .section-head strong { color: var(--cream-light); }
.section-red .eyebrow { color: var(--gold); }
.section-cream-light { background: var(--cream-light); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head--kompakt { margin-bottom: 0; }
.intro-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.text-block-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.text-block-ctas--center { justify-content: center; }
.section-red .text-block-ctas .link-underline { color: var(--cream-light); }
.section-red .text-block-ctas .link-underline:hover { color: var(--gold); }
.section-red .intro-ctas .link-underline { color: var(--cream-light); }
.section-red .intro-ctas .link-underline:hover { color: var(--gold); }

/* Text-Ausrichtung: mit Bild links/rechts linksbündig, solo zentriert */
.text-block-solo--center { text-align: center; }
.text-block-solo--center :is(.section-title, .page-title, .page-title--text, .eyebrow) { text-align: center; }
.text-block-solo--center .text-block-ctas { justify-content: center; }
.text-block-solo--links :is(.section-title, .page-title, .page-title--text, .eyebrow) { text-align: left; }
.text-block-solo--links .text-block-ctas { justify-content: flex-start; }
.grid-2--media .spalte-text,
.grid-2--spalten .spalte-text { text-align: left; }
.grid-2--media .spalte-text :is(.section-title, .page-title, .page-title--text, .page-title--produkt, .eyebrow),
.grid-2--spalten .spalte-text :is(.section-title, h2, h3) { text-align: left; }
.grid-2--media .spalte-text .text-block-ctas,
.grid-2--spalten .spalte-text .text-block-ctas { justify-content: flex-start; }

/* Seiten-Überschriften (H1) – statt Inline-Styles in Templates/Blöcken */
.page-title {
  color: var(--red);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  line-height: 1.15;
}
.page-title--intro { font-size: clamp(30px, 4.5vw, 46px); }
.page-title--text { font-size: clamp(30px, 4vw, 44px); }
.page-title--produkt { font-size: clamp(28px, 3.5vw, 40px); }
.page-title--artikel { font-size: clamp(28px, 4vw, 42px); }
.page-title--kompakt { font-size: clamp(26px, 3.6vw, 36px); }
.form-success-titel { margin-bottom: 6px; }
.prose > h1:first-child,
.block-text-inhalt > h1:first-child {
  color: var(--red);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 20px;
  line-height: 1.15;
}

/* ---------- Karten-Raster ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.testimonial-grid { display: grid; grid-template-columns: repeat(var(--spalten, 3), 1fr); gap: 30px; align-items: stretch; }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
/* Einzelnes Zitat: nicht über die volle Breite ziehen, sondern mittig als ruhige Bühne */
.testimonial-grid-einzeln { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.testimonial-grid-einzeln .testimonial { padding: 44px 48px; text-align: center; align-items: center; }
.testimonial-grid-einzeln .testimonial blockquote { font-size: 23px; }
.testimonial-grid-einzeln .testimonial figcaption { align-items: center; }
@media (max-width: 640px) { .testimonial-grid-einzeln .testimonial { padding: 34px 28px; } }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-karten-duo { max-width: 920px; margin-left: auto; margin-right: auto; gap: 36px; align-items: stretch; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
@media (max-width: 980px) { .shop-grid.grid-3 { max-width: none; } }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; gap: 36px; } .grid-karten-duo { max-width: 520px; } }
/* Grid-Tracks dürfen unter die intrinsische Bildbreite schrumpfen (kein Overflow auf kleinen Screens) */
.grid-2 > *, .grid-3 > * { min-width: 0; }
.grid-2 > img { width: 100%; }

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.card-link:hover { color: inherit; }
.card-link img { width: 100%; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 20px; border-radius: var(--image-radius); flex-shrink: 0; }
.card-link .medien-ki-wrap { margin-bottom: 20px; flex-shrink: 0; }
.card-link .medien-ki-wrap > img { margin-bottom: 0; }
/* Artikel-Karten runden über den Karten-Container (overflow: hidden) */
.artikel-card img { border-radius: 0; }
.card-link h3 { flex-shrink: 0; }
.card-link p,
.card-link .card-text {
  font-size: 15.5px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
  flex: 1 1 auto;
}
.card-link .card-text p { margin: 0; }
.card-link .link-underline {
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
}

/* ---------- Pakete ---------- */
.paket {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.paket-badge {
  position: absolute;
  top: 0;
  left: 34px;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--gold);
  color: var(--brown);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.paket-kopf {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.paket h3 {
  margin-top: 0;
}
.paket p.desc { font-size: 15px; color: var(--muted); font-weight: 500; margin: 0 0 20px; }
.paket ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.paket ul li { font-size: 15px; font-weight: 500; padding-left: 22px; position: relative; }
.paket ul li::before { content: ''; position: absolute; left: 0; top: 5px; width: 12px; height: 12px; background: var(--funkel-stern) center / contain no-repeat; }
.paket-preis { margin-top: auto; }
.paket-preis .betrag { font-family: var(--font-serif); font-weight: 700; font-size: 32px; color: var(--red); }
/* Feste Zeilenhöhe: auch bei umbrechendem Zusatz bleiben die Buttons bündig */
.paket-preis .zusatz { font-size: 13px; color: var(--muted); font-weight: 500; min-height: 20px; }
.paket-cta { display: block; margin-top: 18px; }
.paket-link { margin-top: 12px; font-size: 14.5px; text-align: center; }
.paket-link a { line-height: inherit; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 36px 34px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.testimonial-mark { font-family: var(--font-serif); font-size: 60px; line-height: .5; color: var(--gold); margin-bottom: 22px; }
.testimonial blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-wrap: pretty;
}
.testimonial figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
}
.testimonial-logo { height: 56px; width: auto; max-width: 240px; object-fit: contain; }
.testimonial-wer { font-weight: 700; color: var(--red); }
.testimonial-wer span { color: var(--muted); font-weight: 500; }
.section-red .testimonial { background: var(--cream-light); }

/* ---------- Prozess-Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.step { text-align: center; padding: 0 12px; }
.step-nr {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red); color: var(--cream-light);
  font-family: var(--font-serif); font-weight: 700; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; }
.step p,
.step .step-text { font-size: 15px; color: var(--muted); font-weight: 500; margin: 0; }
.step .step-text p { margin: 0; }
.section-red .step h3 { color: var(--cream-light); }
.section-red .step p,
.section-red .step .step-text { color: var(--rose); }
.section-red .step-nr { background: var(--cream-light); color: var(--red); }

/* ---------- FAQ ---------- */
.faq-block { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: var(--cream-light);
  border-radius: 14px;
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Plus/Minus per CSS gezeichnet statt Font-Zeichen (registerhaltig auf allen Systemen) */
.faq-item summary::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--red);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat;
}
.faq-item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat;
}
.faq-item p { margin: 0 0 18px; color: var(--muted); font-weight: 500; font-size: 15.5px; }

/* Local-SEO: Regions-Links auf Hub-Seiten */
.region-links-container { max-width: 1080px; }
.region-links-grid { display: grid; gap: 28px; margin-top: 28px; }
@media (min-width: 720px) {
  .region-links-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
  .region-links-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 40px; }
}
@media (max-width: 719px) {
  .region-links-grid--3 { grid-template-columns: 1fr; }
}
.region-links-gruppe-titel {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown);
}
.region-links-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.region-links-liste a { font-weight: 600; font-size: 15.5px; }

/* Kontaktseite: linke Infospalte */
.kontakt-sidebar-lead { margin-bottom: 28px; }
.kontakt-zeilen { display: flex; flex-direction: column; gap: 14px; font-weight: 600; }
.kontakt-zeile-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.kontakt-zeile-text { font-size: 17px; font-weight: 600; }
.kontakt-zeile-text a { font-size: 18px; }
.kontakt-sidebar-fuss { margin-top: 28px; font-size: 15.5px; }

/* Spalten-Block (flexibles Content-Grid) */
.spalten-container { max-width: 1080px; }
.spalten-kopf { margin-bottom: 4px; }
.spalten-kopf--center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }
.spalten-kopf--links { text-align: left; }
.spalten-kopf--rechts { text-align: right; max-width: 760px; margin-left: auto; }
.spalten-grid { display: grid; gap: 28px; margin-top: 28px; }
@media (min-width: 720px) {
  .spalten-grid--1 { grid-template-columns: minmax(0, 1fr); max-width: 640px; }
  .spalten-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
  .spalten-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 40px; }
  .spalten-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 32px; }
}
@media (max-width: 719px) {
  .spalten-grid--2,
  .spalten-grid--3,
  .spalten-grid--4 { grid-template-columns: 1fr; }
}
.spalten-element-titel {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown);
}
.spalten-bild {
  width: 100%;
  height: auto;
  border-radius: var(--radius, 12px);
  margin-bottom: 14px;
  display: block;
}
.spalten-element--text .block-text-inhalt,
.spalten-element--image .block-text-inhalt { font-size: 15.5px; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.field-hinweis { font-size: 13.5px; color: var(--muted); font-weight: 500; margin: 8px 0 0; }
/* Abweichende Rechnungsadresse: Felder erst nach Anhaken sichtbar */
.re-felder { display: none; }
.form:has(.re-toggle input:checked) .re-felder { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid rgba(58, 46, 38, .18);
  border-radius: 12px;
  background: var(--cream-light);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--brown);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: transparent;
}
.field .error { color: #A03030; font-size: 13.5px; font-weight: 600; margin-top: 4px; }
.form-datenschutz {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
  margin: 4px 0 0;
}
.form-datenschutz a { text-decoration: underline; text-underline-offset: 2px; }
.form-success {
  background: #E8F0E4;
  border: 1.5px solid #7A9B6D;
  color: #3D5233;
  border-radius: 14px;
  padding: 20px 24px;
  font-weight: 600;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Bestellstatus-Seite: Status-Hinweis */
.bestellstatus-badge {
  background: #FBF3E4;
  border: 1.5px solid #D9B970;
  color: #6B5320;
  border-radius: 14px;
  padding: 18px 24px;
  font-weight: 500;
  margin: 0 0 24px;
}
.bestellstatus-badge.status-bezahlt,
.bestellstatus-badge.status-versendet {
  background: #E8F0E4;
  border-color: #7A9B6D;
  color: #3D5233;
}
.bestellstatus-badge.status-storniert {
  background: #F7E7E4;
  border-color: #C08A80;
  color: #6E3128;
}
.bestellstatus-tracking {
  background: var(--cream, #FBF6EC);
  border: 1px solid rgba(58, 46, 38, .12);
  border-radius: 14px;
  padding: 22px 24px 20px;
  margin: 0 0 24px;
}
.bestellstatus-tracking-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bestellstatus-tracking-titel {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--red);
}
.bestellstatus-tracking-meta {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.bestellstatus-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bestellstatus-timeline-schritt {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  position: relative;
  padding-bottom: 22px;
}
.bestellstatus-timeline-schritt:last-child {
  padding-bottom: 0;
}
.bestellstatus-timeline-schritt:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: rgba(58, 46, 38, .12);
}
.bestellstatus-timeline-schritt.ist-erledigt:not(:last-child)::before {
  background: rgba(122, 155, 109, .55);
}
.bestellstatus-timeline-knoten {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(58, 46, 38, .18);
  color: rgba(58, 46, 38, .35);
  position: relative;
  z-index: 1;
}
.bestellstatus-timeline-schritt.ist-erledigt .bestellstatus-timeline-knoten {
  background: #7A9B6D;
  border-color: #7A9B6D;
  color: #fff;
}
.bestellstatus-timeline-schritt.ist-erledigt .bestellstatus-timeline-knoten svg {
  width: 14px;
  height: 14px;
}
.bestellstatus-timeline-schritt.ist-aktiv .bestellstatus-timeline-knoten {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(139, 58, 58, .12);
}
.bestellstatus-timeline-schritt.ist-aktiv .bestellstatus-timeline-punkt {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.bestellstatus-timeline-inhalt {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}
.bestellstatus-timeline-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: rgba(58, 46, 38, .45);
}
.bestellstatus-timeline-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bestellstatus-timeline-schritt.ist-erledigt .bestellstatus-timeline-icon,
.bestellstatus-timeline-schritt.ist-aktiv .bestellstatus-timeline-icon {
  color: var(--red);
}
.bestellstatus-timeline-schritt.ist-ausstehend .bestellstatus-timeline-label,
.bestellstatus-timeline-schritt.ist-ausstehend .bestellstatus-timeline-beschreibung {
  color: var(--muted);
}
.bestellstatus-timeline-label {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 2px;
}
.bestellstatus-timeline-beschreibung {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.bestellstatus-timeline-zeit {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.bestellstatus-tracking-link {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(58, 46, 38, .08);
}
.bestellstatus-tracking-link-dezent {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bestellstatus-tracking-link-dezent:hover {
  color: var(--red);
}
@media (max-width: 899px) {
  .bestellstatus-timeline-knoten {
    margin-top: 4px;
  }
  .bestellstatus-timeline-schritt:not(:last-child)::before {
    top: 32px;
  }
  .bestellstatus-timeline-label {
    padding-top: 0;
  }
  .bestellstatus-timeline-texte {
    margin-top: -2px;
    margin-bottom: 10px;
  }
}
@media (min-width: 640px) and (max-width: 899px) {
  .bestellstatus-timeline-knoten {
    margin-top: 2px;
  }
  .bestellstatus-timeline-schritt:not(:last-child)::before {
    top: 34px;
  }
}
@media (min-width: 640px) {
  .bestellstatus-timeline-schritt {
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }
  .bestellstatus-timeline-knoten {
    width: 32px;
    height: 32px;
  }
  .bestellstatus-timeline-schritt:not(:last-child)::before {
    left: 15px;
  }
}
@media (min-width: 900px) {
  .bestellstatus-timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-top: 8px;
  }
  .bestellstatus-timeline-schritt {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px 0;
    min-width: 0;
  }
  .bestellstatus-timeline-schritt:not(:last-child)::before {
    left: calc(50% + 16px);
    top: 15px;
    bottom: auto;
    width: calc(100% - 32px);
    height: 2px;
  }
  .bestellstatus-timeline-knoten {
    width: 32px;
    height: 32px;
    margin-top: 0;
    margin-bottom: 14px;
  }
  .bestellstatus-timeline-inhalt {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 0;
    width: 100%;
  }
  .bestellstatus-timeline-icon {
    width: 44px;
    height: 44px;
  }
  .bestellstatus-timeline-label {
    font-size: 14px;
    padding-top: 0;
  }
  .bestellstatus-timeline-texte {
    margin-top: 0;
    margin-bottom: 0;
  }
  .bestellstatus-timeline-beschreibung {
    font-size: 13px;
    max-width: 180px;
    margin-inline: auto;
  }
}

/* ---------- Produkt ---------- */
.produkt-preis { font-family: var(--font-serif); font-weight: 700; font-size: 34px; color: var(--red); margin: 8px 0 20px; }
.preis-hinweis { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.preis-hinweis a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.inhalt-liste { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.inhalt-liste li { font-weight: 500; padding-left: 24px; position: relative; }
.inhalt-liste li::before { content: ''; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; background: var(--funkel-stern) center / contain no-repeat; }

/* Produktbeschreibung aus dem CMS (WYSIWYG): Listen und Überschriften
   bekommen automatisch das Produktseiten-Styling */
.produkt-beschreibung { margin-bottom: 28px; }
.produkt-beschreibung > p:first-child { font-size: 18px; line-height: 1.7; color: var(--muted); font-weight: 500; }
.produkt-beschreibung h2,
.produkt-beschreibung h3 { font-size: 20px; color: var(--brown); font-family: var(--font-body); font-weight: 700; margin: 22px 0 14px; }
.produkt-beschreibung ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.produkt-beschreibung ul li { font-weight: 500; padding-left: 24px; position: relative; }
.produkt-beschreibung ul li::before { content: ''; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; background: var(--funkel-stern) center / contain no-repeat; }
.produkt-beschreibung .produkt-anlaesse,
.produkt-beschreibung > p:last-child:not(:first-child) { font-weight: 500; color: var(--muted); }

/* ---------- Magazin ---------- */
.artikel-card {
  background: var(--cream-light);
  border-radius: var(--image-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.artikel-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin: 0;}
.artikel-card .inner { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.artikel-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; line-height: 1.4; }
.artikel-card p { font-size: 15px; color: var(--muted); font-weight: 500; margin: 0 0 16px; }
.artikel-card .link-underline { margin-top: auto; font-size: 14.5px; }

/* ---------- Shop-Übersicht (/shop/) ---------- */
.shop-grid { margin-top: 8px; }
.shop-teaser-fuss { text-align: center; margin: 40px 0 0; }
.section-shop { padding-bottom: 88px; }
.section-shop--raster { padding-top: 0; }
.section-shop-teaser { padding-bottom: 88px; }
.shop-leer { text-align: center; margin: 32px 0 0; }

.shop-filter {
  margin: 0 auto 36px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.shop-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.shop-filter-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream-light);
  border: 1px solid rgba(58, 46, 38, .1);
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
  text-decoration: none;
}
.shop-filter-pill:hover { color: var(--red); border-color: rgba(130, 47, 46, .25); }
.shop-filter-pill.is-active {
  background: var(--red);
  color: var(--cream-light);
  border-color: var(--red);
}
.shop-filter-pill.is-active:hover { color: var(--cream-light); }
.shop-filter-pill.is-disabled {
  opacity: .38;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--muted);
  background: rgba(58, 46, 38, .04);
  border-color: rgba(58, 46, 38, .08);
}
.shop-filter-pill.is-disabled:hover { color: var(--muted); border-color: rgba(58, 46, 38, .08); }
@media (max-width: 560px) {
  .shop-filter { margin-bottom: 28px; gap: 10px; }
  .shop-filter-pills { gap: 6px; }
  .shop-filter-pill { padding: 11px 16px; font-size: 14.5px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .section-shop .section-head { margin-bottom: 36px; }
  .shop-aktionen .btn { flex: 1 1 100%; justify-content: center; text-align: center; }
}
.shop-card--hidden { display: none !important; }
.shop-card {
  background: var(--cream-light);
  border-radius: var(--image-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.shop-card-bild { display: block; color: inherit; position: relative; }
.shop-card-bild:hover { color: inherit; }
.shop-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; margin: 0; border-radius: 0; }
.shop-card-bild .medien-ki-wrap { display: block; }
.shop-card .inner {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.shop-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.shop-card h3 a { color: inherit; }
.shop-card h3 a:hover { color: var(--red); }
.shop-bewertung-kurz {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.shop-bewertung-meta { color: var(--muted); font-weight: 600; }
.shop-bewertung-anzahl { color: var(--muted); font-weight: 500; }
.sterne { display: inline-flex; gap: 2px; line-height: 1; color: #C9A227; }
.sterne-klein { font-size: 14px; }
.sterne-s-leer { color: #D8D0C4; }
.produkt-bewertung-kopf {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}
.produkt-bewertung-meta { font-size: 15px; color: var(--muted); font-weight: 600; }
.section-bewertungen h2 { text-align: center; }
.bewertung-liste { display: grid; gap: 16px; margin-top: 20px; }
.bewertung-eintrag { padding: 22px 24px; text-align: left; }
.bewertung-eintrag-kopf {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bewertung-verifiziert {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
/* Bewertungsformular: gleiche Inputs wie Kasse (.field), Blöcke wie Prüfen-Seite */
.bewertung-form { max-width: none; }
.bewertung-form-titel {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  margin: 8px 0 0;
}
.bewertung-field-kurz { max-width: 140px; }
.bewertung-block {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 20px 22px;
  display: grid;
  gap: 18px;
}
.bewertung-block h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  line-height: 1.35;
}
.bewertung-produkt-kopf {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bewertung-produkt-bild {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--image-radius);
  flex-shrink: 0;
}
.bewertung-produkt-kopf .medien-ki-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: block;
}
.bewertung-produkt-kopf .medien-ki-wrap .bewertung-produkt-bild,
.bewertung-produkt-kopf .medien-ki-wrap > img {
  width: 100%;
  height: 100%;
}
.bewertung-field-sterne > label { margin-bottom: 8px; }
.bewertung-sterne-input {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bewertung-sterne-input .bewertung-stern-label {
  display: inline-block;
  font-weight: 400;
  margin-bottom: 0;
  font-size: inherit;
}
.bewertung-stern-label { cursor: pointer; }
.bewertung-stern-label input { position: absolute; opacity: 0; pointer-events: none; }
.bewertung-stern-label span {
  font-size: 30px;
  line-height: 1;
  color: #D8D0C4;
  transition: color .15s;
}
.bewertung-sterne-input label:hover span,
.bewertung-sterne-input label:has(~ label:hover) span,
.bewertung-stern-label:has(input:checked) span,
.bewertung-stern-label:has(input:checked) ~ .bewertung-stern-label span { color: #C9A227; }
.shop-card p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
.shop-fuss { margin-top: auto; padding-top: 14px; }
.shop-preis {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--red);
  margin: 0 0 4px;
}
.shop-preis-hinweis { font-size: 13px; margin: 0 0 12px; }
.shop-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.shop-cart-form { margin: 0; }
.shop-btn-aus { opacity: .55; cursor: default; pointer-events: none; }
.shop-card .link-underline { font-size: 14.5px; }
.shop-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.shop-badge-aus { background: #EDE4D4; color: var(--muted); }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin-top: 44px; }
.prose p, .prose li { font-size: 16.5px; color: var(--brown); font-weight: 500; }
.prose .intro { font-size: 19px; color: var(--muted); }
.prose a:not(.btn) { font-weight: 700; }
.prose img,
.artikel-titelbild {
  width: 100%;
  border-radius: var(--image-radius);
  object-fit: cover;
}
.artikel-titelbild {
  aspect-ratio: 16/9;
  margin: 28px 0 36px;
  display: block;
}

/* ---------- Inline-Snippets (Produkte / Tipps im Fließtext) ---------- */
.snippet-block {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}
.snippet-n2 { grid-template-columns: 1fr 1fr; }
.snippet-n3 { grid-template-columns: 1fr 1fr 1fr; }
.snippet-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
  border: 1px solid rgba(130, 47, 46, 0.12);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.snippet-card:hover { color: inherit; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(60, 42, 33, 0.1); }
.snippet-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.snippet-n1 .snippet-card { flex-direction: row; align-items: stretch; }
.snippet-n1 .snippet-card img { width: 38%; aspect-ratio: auto; }
.snippet-card-text { display: flex; flex-direction: column; gap: 6px; padding: 16px 18px 18px; }
.snippet-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--red); }
.snippet-card-text strong { font-size: 16.5px; color: var(--brown); line-height: 1.35; }
.snippet-meta { font-size: 14px; font-weight: 600; color: var(--muted); margin-top: auto; padding-top: 4px; }
.snippet-meta small { font-weight: 500; }
@media (max-width: 720px) {
  .snippet-n2, .snippet-n3 { grid-template-columns: 1fr; }
  .snippet-n1 .snippet-card { flex-direction: column; }
  .snippet-n1 .snippet-card img { width: 100%; aspect-ratio: 16/10; }
}

/* ---------- Instagram-Galerie ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.insta-grid a {
  display: block;
  border-radius: var(--image-radius);
  overflow: hidden;
}
.insta-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.insta-grid a:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }

/* ---------- Referenzen ---------- */
.referenz {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid rgba(58, 46, 38, .1);
}
.referenz:last-child { border-bottom: none; }
.referenz img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--image-radius); }
.referenz .typ { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.referenz blockquote {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
}
@media (max-width: 860px) { .referenz { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Produkt-Galerie ---------- */
.produkt-galerie { display: flex; flex-direction: column; gap: 14px; }
.produkt-galerie #galerie-haupt-wrap { display: block; width: 100%; }
.produkt-galerie #galerie-haupt {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--image-radius);
  cursor: zoom-in;
}
.produkt-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.produkt-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--image-radius);
  background: none;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  transition: border-color .15s ease, opacity .15s ease;
  opacity: .8;
}
.produkt-thumb:hover { opacity: 1; }
.produkt-thumb.aktiv { border-color: var(--red); opacity: 1; }
.produkt-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--image-radius);
  display: block;
}
@media (max-width: 860px) {
  .produkt-thumbs { grid-template-columns: repeat(5, 1fr); }
}

/* --- Lightbox für Produktbilder --- */
.lightbox[hidden] { display: none; } /* display:flex würde das hidden-Attribut sonst aushebeln */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(32, 21, 15, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-bild {
  max-width: min(100%, 1080px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.lightbox button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(246, 239, 227, .14);
  color: var(--cream);
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox button:hover { background: rgba(246, 239, 227, .28); }
.lightbox-schliessen { top: 20px; right: 20px; }
.lightbox-pfeil { top: 50%; transform: translateY(-50%); }
.lightbox-zurueck { left: 20px; }
.lightbox-weiter { right: 20px; }
.lightbox-zaehler {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lightbox button { width: 42px; height: 42px; }
  .lightbox-pfeil { top: auto; bottom: 16px; transform: none; }
  .lightbox-zurueck { left: 16px; }
  .lightbox-weiter { right: 16px; }
}

/* ---------- Kontakt-CTA-Band ---------- */
.cta-band { background: var(--red); text-align: center; }
.cta-band .container { max-width: 720px; padding-top: 84px; padding-bottom: 108px; }
.cta-band h2 {
  color: var(--cream-light);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.cta-band p,
.cta-band .cta-text { color: var(--rose); font-weight: 500; max-width: 520px; margin: 0 auto 36px; }
.cta-band .cta-text p { margin: 0; }
.cta-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band .cta-ctas .link-underline { color: var(--cream-light); }
.cta-band .cta-ctas .link-underline:hover { color: var(--gold); }

/* Letzte Sektion vor Footer-Welle: Welle überlappt 64px – Abstand in der Sektion selbst */
main:has(+ .footer-wave) > section.page-404-angebote:last-child {
  padding-bottom: calc(72px + 64px);
}
main:has(+ .footer-wave) > section.cta-band .container {
  padding-bottom: calc(84px + 64px);
}
main:has(+ .footer-wave) > section.section:last-child,
main:has(+ .footer-wave) > section.insta-sektion:last-child,
main:has(+ .footer-wave) > section.section-shop-teaser:last-child,
main:has(+ .footer-wave) > section.section-shop:last-child {
  padding-bottom: calc(72px + 64px);
}
main:has(+ .footer-wave) > section.faq-block:last-child {
  padding-bottom: calc(64px + 64px);
}
main:has(+ .footer-wave) > .hero:last-child .hero-inner {
  padding-bottom: calc(88px + 64px);
}

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- Handschrift ---------- */
.signature { font-family: var(--font-hand); font-size: 34px; color: var(--red); transform: rotate(-3deg); display: inline-block; }

/* ---------- Tabellen (Prototyp-Seite) ---------- */
.proto-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.proto-table th, .proto-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid rgba(58,46,38,.12); vertical-align: top; }
.proto-table th { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.status { display: inline-block; border-radius: 999px; padding: 3px 12px; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.status-done { background: #E8F0E4; color: #3D5233; }
.status-part { background: #FFF6DE; color: #7A5C1E; }
.status-plan { background: var(--cream-hover); color: var(--muted); }

/* ---------- Shop / Warenkorb ---------- */
.cart-link { position: relative; }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--header-cart-badge-bg, var(--red));
  color: var(--header-cart-badge-text, var(--cream-light));
  border-radius: 999px;
  min-width: 18px; height: 18px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--cream-light);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(36, 64, 47, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 200;
  max-width: calc(100vw - 40px);
}
.cart-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.cart-toast svg { flex-shrink: 0; }
.cart-toast a {
  color: var(--cream-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cart-toast a:hover { color: #fff; }

/* Warenkorb-Button: Erfolgszustand (Farben & Form unverändert) */
.btn.is-cart-added {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn.is-cart-added svg {
  flex-shrink: 0;
}

.cart-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 15.5px; }
.cart-table th {
  text-align: left;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  padding: 0 14px 12px;
  border-bottom: 1px solid rgba(58, 46, 38, .15);
}
.cart-table td { padding: 18px 14px; border-bottom: 1px solid rgba(58, 46, 38, .1); vertical-align: middle; }
.cart-table th.num, .cart-table td.num { text-align: right; }
/* tfoot_summen: Label rechtsbündig, Wert rechtsbündig in der nächsten Spalte */
.cart-table tfoot td:last-child { text-align: right; }
@media (max-width: 720px) {
  .cart-table tfoot td { text-align: right !important; }
}
@media (max-width: 560px) {
  .cart-table tfoot { display: block; width: 100%; margin-top: 8px; }
  .cart-table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 46, 38, .1);
  }
  .cart-table tfoot tr:last-child { border-bottom: none; padding-top: 12px; }
  .cart-table tfoot td {
    display: block;
    width: auto;
    padding: 0;
    border: none;
    text-align: left !important;
  }
  .cart-table tfoot td.num { text-align: right !important; white-space: nowrap; flex-shrink: 0; }
}
.cart-produkt { display: flex; align-items: center; gap: 16px; font-weight: 700; }
.cart-produkt img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--image-radius); }
.cart-menge {
  width: 74px;
  border: 1.5px solid rgba(58, 46, 38, .18);
  border-radius: 10px;
  background: var(--cream-light);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 15px;
}
.cart-remove {
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--muted);
  padding: 6px;
}
.cart-remove:hover { color: var(--red); }

/* Schmale Screens: kompakte Warenkorb-Karten */
@media (max-width: 560px) {
  .cart-table { font-size: 15px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody { display: block; width: 100%; }
  .cart-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "produkt remove"
      "menge summe";
    gap: 8px 12px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(58, 46, 38, .12);
    padding: 12px 0;
  }
  .cart-table td {
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    width: auto;
  }
  .cart-table td.cart-produkt {
    grid-area: produkt;
    gap: 12px;
    padding-right: 0;
    font-weight: 700;
  }
  .cart-table td.cart-produkt img { width: 56px; height: 56px; flex-shrink: 0; }
  .cart-table td[data-label="Einzelpreis"] { display: none; }
  .cart-table td[data-label="Menge"] {
    grid-area: menge;
    justify-content: flex-start;
    gap: 8px;
  }
  .cart-table td[data-label="Summe"] {
    grid-area: summe;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 700;
  }
  .cart-table td[data-label]::before {
    content: attr(data-label);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    font-weight: 600;
    flex-shrink: 0;
  }
  .cart-table td.cart-remove-zelle {
    grid-area: remove;
    position: static;
    align-self: start;
    justify-content: flex-end;
    padding-top: 2px;
  }
  .cart-menge { width: 72px; padding: 8px 10px; }
  .cart-summary { justify-content: stretch; }
  .cart-summary-rows { min-width: 0; width: 100%; }
  .payment-trust-breit { flex-direction: column; align-items: flex-start; gap: 8px; }
  .payment-trust-breit .pay-icons { justify-content: flex-start; }
}

.cart-summary { display: flex; justify-content: flex-end; margin-top: 24px; }
.cart-summary-rows { min-width: 300px; display: flex; flex-direction: column; gap: 10px; font-weight: 500; }
.cart-summary-rows > div, .summen-details > div { display: flex; justify-content: space-between; gap: 32px; }
.cart-rabatt, .kasse-rabatt { color: var(--green, #2E4E3F); font-weight: 600; }

/* Netto/USt-Aufschlüsselung hinter einem Klapp-Element */
.summen-details summary {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  list-style: none;
  width: fit-content;
  margin-left: auto;
}
.kasse-summary .summen-details summary { margin-left: 0; }
.summen-details summary::-webkit-details-marker { display: none; }
.summen-details[open] summary { margin-bottom: 6px; }
.summen-details > div { font-size: 14px; color: var(--muted); padding: 3px 0; }
.summen-details > div > span:last-child { white-space: nowrap; }

/* Gutschein einlösen (in der Kassen-Summary) */
.gutschein-bereich {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(58, 46, 38, .12);
}
.gutschein-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gutschein-form label { font-weight: 600; font-size: 14px; width: 100%; }
.gutschein-form input[type="text"] {
  flex: 1 1 140px;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--line, #E4D9C6);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  text-transform: uppercase;
}
.gutschein-form > span { font-size: 14.5px; font-weight: 500; }
.gutschein-entfernen { background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 14.5px; color: var(--red); padding: 0; }
.cart-total { border-top: 1px solid rgba(58, 46, 38, .15); padding-top: 12px; font-weight: 700; font-size: 18px; }
.cart-total small { font-weight: 500; color: var(--muted); font-size: 12.5px; }

.kasse-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: start; margin-top: 36px; }
.kasse-grid--pruefen {
  grid-template-areas:
    "adressen summary"
    "abschluss summary";
}
.kasse-grid--pruefen .kasse-adressen { grid-area: adressen; }
.kasse-grid--pruefen .kasse-summary { grid-area: summary; }
.kasse-grid--pruefen .kasse-abschluss { grid-area: abschluss; }

@media (max-width: 860px) {
  .kasse-grid { grid-template-columns: 1fr; gap: 24px; }
  .kasse-grid--pruefen {
    grid-template-areas:
      "adressen"
      "summary"
      "abschluss";
  }
  .kasse-grid:not(.kasse-grid--pruefen) > form { order: 1; }
  .kasse-grid:not(.kasse-grid--pruefen) .kasse-summary--klapp { order: -1; }
  .kasse-grid--pruefen > form,
  .kasse-grid--pruefen > .kasse-adressen,
  .kasse-grid--pruefen > .kasse-summary,
  .kasse-grid--pruefen > .kasse-abschluss { order: unset; }
  .kasse-summary { width: 100%; }
  .kasse-summary--klapp .kasse-summary-titel { display: none; }
  .kasse-summary-checkbox { display: none; }
  .kasse-summary-klapp-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    border: 1.5px solid rgba(58, 46, 38, .12);
    border-radius: 16px;
    background: var(--cream-light);
    margin: 0;
  }
  .kasse-summary-klapp-label span { flex: 1; min-width: 0; }
  .kasse-summary-klapp-label strong {
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
    font-weight: 700;
  }
  .kasse-summary-klapp-label::after {
    content: "▾";
    color: var(--muted);
    font-size: 14px;
    transition: transform .2s ease;
  }
  .kasse-summary-checkbox:checked ~ .kasse-summary-klapp-label::after { transform: rotate(180deg); }
  .kasse-summary-checkbox:not(:checked) ~ .kasse-summary-body { display: none; }
  .kasse-summary-checkbox:checked ~ .kasse-summary-body {
    display: block;
    margin-top: 0;
    padding: 0 18px 18px;
    border: 1.5px solid rgba(58, 46, 38, .12);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: var(--cream-light);
  }
  .kasse-summary-checkbox:checked ~ .kasse-summary-klapp-label {
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
  }
  .kasse-summary--klapp.kasse-summary { background: transparent; padding: 0; border-radius: 0; }
}
@media (min-width: 861px) {
  .kasse-summary--klapp .kasse-summary-klapp-label,
  .kasse-summary--klapp .kasse-summary-checkbox { display: none; }
  .kasse-summary--klapp .kasse-summary-body { display: block; padding: 0; }
}
.kasse-summary { background: var(--cream-light); border-radius: 20px; padding: 30px 32px; }
.kasse-row { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; font-weight: 500; font-size: 15px; }
.kasse-row span:last-child, .cart-summary-rows > div > span:last-child { white-space: nowrap; }
.kasse-total { border-top: 1px solid rgba(58, 46, 38, .15); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 17px; }
.kasse-total small { font-weight: 500; color: var(--muted); font-size: 12px; }

.zahlarten { display: flex; flex-direction: column; gap: 12px; }
.zahlart {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream-light);
  border: 1.5px solid rgba(58, 46, 38, .15);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
}
.zahlart:has(input:checked) { border-color: var(--red); outline: 1px solid var(--red); }
.zahlart input { margin-top: 4px; accent-color: var(--red); }
.zahlart small { color: var(--muted); font-weight: 500; }

.agb-check { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; font-weight: 500; cursor: pointer; }
.agb-check input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid #D9CBB4;
  border-radius: 7px;
  background: #FBF6EC;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.agb-check input:hover { border-color: var(--red); }
.agb-check input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(130, 47, 46, .22); }
.agb-check input:checked {
  border-color: var(--red);
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FBF6EC' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E");
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Versandkonditionen-Tabelle (Seite „Versand & Zahlung", Block/Snippet) */
.section-head + .versandkonditionen-inhalt .versand-tabelle-wrap { margin-top: 0; }
.versand-tabelle-wrap { overflow-x: auto; margin: 24px 0 18px; }
.versand-tabelle {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FBF6EC;
  border: 1px solid #EADDC6;
  border-radius: 14px;
  overflow: hidden;
  font-size: 15.5px;
}
.versand-tabelle th, .versand-tabelle td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.versand-tabelle thead th {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: #F3EAD8;
  border-bottom: 1px solid #EADDC6;
}
.versand-tabelle tbody td { border-bottom: 1px solid #F0E6D2; font-weight: 500; color: var(--brown); }
.versand-tabelle tbody tr:last-child td { border-bottom: none; }
.versand-tabelle-hinweis { font-size: 14px !important; color: var(--muted) !important; margin: 6px 0 0; }

/* ---------- Footer ---------- */
.footer-wave {
  line-height: 0;
  margin-top: -64px;
  position: relative;
  pointer-events: none;
}
.footer-wave svg { display: block; }
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 36px;
  margin-top: 0;
}
.site-footer a { color: var(--footer-text); }
.site-footer a:hover { color: var(--cream-light); }

.xmas-countdown {
  position: relative;
  text-align: center;
  background: var(--green-dark);
  border-radius: 22px;
  padding: 40px 28px 34px;
  margin-bottom: 52px;
  background-image: radial-gradient(circle, rgba(246, 239, 227, .09) 1px, transparent 1.5px);
  background-size: 26px 26px;
}
.xmas-countdown--fruehbucher {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  padding: 50px 32px 34px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.xmas-countdown-fruehbucher-titel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  flex-wrap: wrap;
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 500;
  color: var(--cream-light);
  line-height: 1;
}
.xmas-countdown-titel-teil { white-space: nowrap; }
.xmas-countdown-fruehbucher-titel .xmas-countdown-zahl {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55em;
  height: 1.55em;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  color: var(--green-dark);
  transform: rotate(-4deg);
  flex-shrink: 0;
  line-height: 1;
}
.xmas-countdown-fruehbucher-titel .xmas-countdown-zahl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .24);
  z-index: -1;
}
.xmas-countdown-sub--fruehbucher {
  width: min(100%, 420px);
  max-width: 420px;
  margin: 22px 0 0;
  align-self: center;
  text-align: center;
  line-height: 1.6;
}
.xmas-countdown-sub--fruehbucher a {
  display: inline-block;
  margin-top: 10px;
}
.xmas-countdown-lead {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream-light);
}
.xmas-countdown-tiles {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.xmas-countdown .tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 9vw, 84px);
  height: clamp(84px, 12vw, 112px);
  border-radius: 18px;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background:
    radial-gradient(circle 8px at 0 50%, var(--green-dark) 7px, transparent 8px),
    radial-gradient(circle 8px at 100% 50%, var(--green-dark) 7px, transparent 8px),
    linear-gradient(to bottom, var(--cream-light) 0 50%, var(--cream) 50% 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
}
.xmas-countdown .tile::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; top: 50%;
  height: 1.5px;
  background: rgba(36, 64, 47, .14);
}
.xmas-countdown-label {
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cream-light);
}
.xmas-countdown-sub {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #A8BCA4;
}
.xmas-countdown-sub a { text-decoration: underline; text-underline-offset: 3px; }
.xmas-countdown-weihnachten-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .xmas-countdown-weihnachten-badge {
    white-space: normal;
    text-align: center;
    max-width: calc(100% - 36px);
    line-height: 1.35;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer-logo { height: 42px; width: auto; max-width: 220px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 300px;
  color: var(--footer-text-muted);
  font-weight: 500;
}
.footer-nap { color: var(--footer-text-muted); }
.footer-nap a { color: var(--footer-text); text-decoration: underline; text-underline-offset: 3px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; font-weight: 500; }
.footer-heading {
  font-weight: 700;
  color: var(--footer-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--footer-text) 18%, transparent);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--footer-text-muted);
  font-weight: 500;
}
.footer-social a { color: var(--footer-text-muted); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- 404 (nutzt .section-Padding wie alle anderen Seiten) ---------- */
.page-404-hero { max-width: 620px; margin: 0 auto; text-align: center; }
.page-404-art {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto 20px;
}
.page-404 .eyebrow { margin-bottom: 10px; }
.page-404-lead,
.page-404-hinweis { max-width: 480px; margin: 0 auto; }
.page-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Entwurf-Banner (nur für eingeloggte Admins bei unveröffentlichten Seiten) */
.entwurf-banner {
  background: #7A5C1E;
  color: var(--cream-light);
  text-align: center;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 600;
}
.entwurf-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Checkout: Stepper ---------- */
.checkout-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  list-style: none;
  margin: 22px 0 34px;
  padding: 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
}
.checkout-stepper li { display: flex; align-items: center; gap: 8px; }
.checkout-stepper li a { color: inherit; display: flex; align-items: center; gap: 8px; }
.checkout-stepper .nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E5DCCB;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}
.checkout-stepper li.aktiv { color: var(--red); }
.checkout-stepper li.aktiv .nr { background: var(--red); color: #fff; }
.checkout-stepper li.done { color: var(--green, #2E4E3F); }
.checkout-stepper li.done .nr { background: #2E4E3F; color: #fff; }

/* ---------- Checkout: Prüf-Blöcke ---------- */
.pruefen-bloecke {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.pruefen-block {
  background: #FBF6EC;
  border-radius: 16px;
  padding: 20px 22px;
}
.pruefen-block h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.pruefen-block p { margin: 0 0 6px; font-size: 15px; font-weight: 500; }
@media (max-width: 720px) {
  .pruefen-bloecke { grid-template-columns: 1fr; }
}

/* ---------- Trust-Elemente im Shop ---------- */
.payment-trust {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 62, 43, .14);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-trust-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.payment-trust-row svg { flex-shrink: 0; color: #2E4E3F; }
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
/* Kein eigener Hintergrund/Rahmen: Die Logos (datatrans) sind bereits fertige Kacheln */
.pay-icon {
  display: inline-flex;
  width: 44px;
  height: 28px;
}
.pay-icon svg, .pay-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }

/* Warenkorb-Seite: Trust-Punkte als horizontale Leiste über die volle Breite */
.payment-trust-breit {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 32px;
  margin-top: 48px;
  padding-top: 28px;
}
.payment-trust-breit .payment-trust-row { font-size: 14px; }
.payment-trust-breit .pay-icons {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

/* Footer: Zahlarten */
.footer-pay {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-pay .pay-icons { margin-top: 0; }
.footer-pay .pay-icon { width: 38px; height: 24px; opacity: .92; }

/* KI-Kennzeichnung (EU AI Act Art. 50) */
.medien-ki-wrap {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
  vertical-align: top;
}
.medien-ki-wrap > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.medien-ki-badge {
  position: absolute;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: rgba(46, 30, 20, .78);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  pointer-events: none;
}
.medien-ki--tl > .medien-ki-badge { top: 10px; left: 10px; }
.medien-ki--tr > .medien-ki-badge { top: 10px; right: 10px; }
.medien-ki--bl > .medien-ki-badge { bottom: 10px; left: 10px; }
.medien-ki--br > .medien-ki-badge { bottom: 10px; right: 10px; }
.medien-ki--dauerhaft.is-ki > .medien-ki-badge { display: inline-flex; }
.medien-ki--hover.is-ki:hover > .medien-ki-badge,
.medien-ki--hover.is-ki:focus-within > .medien-ki-badge { display: inline-flex; }
@media (hover: none) {
  .medien-ki--hover.is-ki > .medien-ki-badge { display: inline-flex; }
}
/* Volle Breite nur dort, wo das Bild die Fläche ohnehin ausfüllt */
.shop-card-bild .medien-ki-wrap,
.card-link .medien-ki-wrap,
.artikel-card .medien-ki-wrap,
.produkt-galerie .medien-ki-wrap,
.spalten-element .medien-ki-wrap,
.referenz .medien-ki-wrap {
  display: block;
  width: 100%;
}
.hero .medien-ki-wrap {
  display: block;
}
.artikel-titelbild { width: 100%; }
.cart-produkt .medien-ki-wrap { width: 64px; flex-shrink: 0; }
.cart-produkt .medien-ki-wrap img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-produkt .medien-ki--tl > .medien-ki-badge,
.cart-produkt .medien-ki--tr > .medien-ki-badge,
.cart-produkt .medien-ki--bl > .medien-ki-badge,
.cart-produkt .medien-ki--br > .medien-ki-badge {
  width: 22px;
  height: 22px;
  font-size: 8px;
}
.cart-produkt .medien-ki--tl > .medien-ki-badge { top: 4px; left: 4px; }
.cart-produkt .medien-ki--tr > .medien-ki-badge { top: 4px; right: 4px; }
.cart-produkt .medien-ki--bl > .medien-ki-badge { bottom: 4px; left: 4px; }
.cart-produkt .medien-ki--br > .medien-ki-badge { bottom: 4px; right: 4px; }
