/** Shopify CDN: Minification failed

Line 932:0 Expected "}" to go with "{"

**/
/* ==================================================================
   Blume-Ideal Deal-Seite – gemeinsame Styles für alle bd-* Sektionen
   Nutzt die Theme-Variablen (Fluid-Font-Skala, Section-Spacing, Radius,
   Markenfarben) statt fester Werte, damit die Seite dem Theme-Stil folgt.
   ================================================================== */

.bd {
  /* Farb-Aliasse: greifen auf globale Theme-Variablen zurück, mit Fallbacks */
  --bd-pink: var(--brand-color, #e40068);
  --bd-pink-dark: #c4006c;
  --bd-red: var(--brand-color-sale, #f32a3b);
  --bd-red-soft: #fdecec;
  --bd-ink: #1a1715;
  --bd-ink-soft: #292522;
  --bd-muted: #7c756e;
  --bd-muted-2: #a9a29b;
  --bd-cream: #fbf7f2;
  --bd-pink-bg: #fbe0e8;
  --bd-pink-soft: var(--background-secondary, #faf4f4);
  --bd-figure-bg: #f8f1ee;
  --bd-gold: #c98a1e;
  --bd-line: #e7e1db;
  --bd-radius: 16px;

  color: var(--bd-ink-soft);
  font-family: var(--text-font-family);
}

.bd * {
  box-sizing: border-box;
}

/* ---- Layout-Primitive -------------------------------------------- */
.bd-container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--container-gutter, 1.25rem);
}

.bd-section {
  padding-block: var(--section-vertical-spacing);
}

/* ---- Typografie (Theme-Skala) ------------------------------------ */
.bd-h1,
.bd-h2,
.bd-h3 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight, 700);
  font-style: var(--heading-font-style, normal);
  letter-spacing: var(--heading-letter-spacing, 0);
  color: var(--bd-ink);
  margin: 0;
  line-height: 1.12;
}
.bd-h1 { font-size: var(--text-h1); }
.bd-h2 { font-size: var(--text-h2); }
.bd-h3 { font-size: var(--text-h3); }

.bd-lead {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--bd-muted);
  margin: 0;
}

.bd-section__head {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: var(--section-stack-gap);
  display: grid;
  gap: 0.6rem;
}

/* ---- Buttons ----------------------------------------------------- */
.bd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 0;
  border-radius: var(--button-border-radius, 9999px);
  background: var(--bd-pink);
  color: #fff;
  font: var(--button-font);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.bd-btn:hover {
  background: var(--bd-pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgb(228 0 104 / 0.28);
}
.bd-btn--ghost {
  background: transparent;
  color: var(--bd-pink);
  border: 1px solid currentColor;
}
.bd-btn--ghost:hover {
  background: var(--bd-pink);
  color: #fff;
}

/* ---- Deal-Badge (Pill mit Outline) ------------------------------- */
.bd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bd-pink);
  background: #fff;
  border: 1px solid rgb(228 0 104 / 0.3);
  width: max-content;
}

/* ---- Countdown --------------------------------------------------- */
.bd-cd {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.bd-cd__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bd-muted);
}
.bd-cd__boxes {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.bd-cd__box {
  min-width: 2.35em;
  padding: 0.35em 0.15em;
  text-align: center;
  background: var(--bd-ink);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1;
}
.bd-cd__sep {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--bd-ink);
}

/* ---- Reveal-on-Scroll (sanft & gestaffelt) ----------------------- */
@media (prefers-reduced-motion: no-preference) {
  .bd-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: calc(var(--bd-i, 0) * 70ms);
    will-change: opacity, transform;
  }
  .bd-reveal--in {
    opacity: 1;
    transform: none;
  }
}

/* ==================================================================
   HERO
   ================================================================== */
.bd-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.bd-hero__content {
  display: grid;
  gap: 1.4rem;
  justify-items: start;
  padding-block: clamp(1.5rem, 4vw, 3.5rem);
}
.bd-hero__title {
  line-height: 1.05;
  /* Bewusst größer als die Standard-Theme-Überschrift, wie im Klickdummy */
  font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem);
}
.bd-hero__title em {
  font-style: italic;
  color: var(--bd-pink);
}
.bd-hero__figure {
  position: relative;
  align-self: stretch;
  min-height: 320px;
}
.bd-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Mobil: Bild aus, Inhalt zentriert, symmetrischer Abstand oben/unten */
@media screen and (max-width: 749px) {
  .bd-hero__figure { display: none; }
  .bd-hero__content {
    justify-items: center;
    text-align: center;
    padding-block: 2.25rem 2.75rem;
    gap: 1.1rem;
  }
}
@media screen and (min-width: 750px) {
  .bd-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .bd-hero__figure {
    min-height: 540px;
    overflow: hidden;
  }
}

/* ==================================================================
   USP / TRUST BAR
   ================================================================== */
.bd-usp {
  background: var(--bd-cream);
}
.bd-usp__inner {
  padding-block: 1rem;
}
.bd-usp__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bd-usp__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--bd-ink);
}
.bd-usp__item svg,
.bd-usp__item img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.bd-usp__stars {
  color: var(--bd-gold);
  letter-spacing: 0.05em;
}
.bd-usp__item span.bd-usp__muted {
  color: var(--bd-muted);
  font-weight: 400;
}

/* Divider / Stroke zwischen den USP-Elementen (Desktop) */
@media screen and (min-width: 750px) {
  .bd-usp__item + .bd-usp__item {
    border-inline-start: 1px solid rgb(0 0 0 / 0.12);
    padding-inline-start: 1.5rem;
  }
}

/* Mobile: nutzerfreundlich – horizontal wischbar per Scroll-Snap,
   KEIN endloser Auto-Scroll-Marquee mehr. */
@media screen and (max-width: 749px) {
  .bd-usp__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--container-gutter, 1.25rem) * -1);
    padding-inline: var(--container-gutter, 1.25rem);
  }
  .bd-usp__row::-webkit-scrollbar { display: none; }
  .bd-usp__item {
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

/* ==================================================================
   STEPS ("So funktioniert's")
   ================================================================== */
.bd-steps__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  /* Umrandung um die Schritte (wie im Klickdummy) */
  border: 1px solid rgb(0 0 0 / 0.08);
  border-radius: 24px;
  padding: 2.25rem 1.5rem;
}
@media screen and (min-width: 750px) {
  .bd-steps__list { padding: 2.75rem 2.5rem; }
}
.bd-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  max-width: 22rem;
}
.bd-step__num {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 1;
  color: var(--bd-pink);
}
.bd-step__title {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--bd-ink);
  margin: 0;
}
.bd-step__text {
  font-size: var(--text-sm);
  color: var(--bd-muted);
  margin: 0;
  line-height: 1.5;
}
.bd-steps__arrow {
  display: none;
  color: var(--bd-line);
  font-size: 1.75rem;
  line-height: 1;
  align-self: center;
  flex: 0 0 auto;
}
@media screen and (min-width: 750px) {
  .bd-steps__list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  .bd-steps__arrow { display: block; margin-top: 0.35rem; }
}

/* ==================================================================
   PRODUKTLISTING
   ================================================================== */
.bd-products__cd-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: var(--bd-pink-bg);
  border-radius: var(--bd-radius);
  padding: 0.9rem 1.25rem;
  margin-bottom: var(--section-stack-gap);
}

/* Visuelle Filterleiste (ohne Funktion, laut Vorgabe) */
.bd-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bd-toolbar__chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
.bd-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid var(--bd-line);
  background: #fff;
  color: var(--bd-ink-soft);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}
.bd-chip--active {
  background: var(--bd-pink);
  border-color: var(--bd-pink);
  color: #fff;
}
.bd-toolbar__divider {
  width: 1px;
  align-self: stretch;
  min-height: 1.4rem;
  background: var(--bd-line);
}
.bd-toolbar__count {
  color: var(--bd-muted);
  font-size: var(--text-sm);
}
.bd-toolbar__count b { color: var(--bd-ink); }
.bd-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid var(--bd-line);
  background: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--bd-ink);
  white-space: nowrap;
}
.bd-toolbar__sort svg { width: 0.9rem; height: 0.9rem; }

.bd-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 750px) {
  .bd-products__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media screen and (min-width: 1000px) {
  .bd-products__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ---- Produktkachel ---- */
.bd-card { display: flex; flex-direction: column; height: 100%; }
@supports (grid-template-rows: subgrid) {@supports (grid-template-rows: subgrid) {
  .bd-products__grid .bd-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: subgrid;
    grid-row: span 5;
    row-gap: 0.4rem;
    height: auto;
  }
  .bd-products__grid .bd-card__body { display: contents; }
  .bd-products__grid .bd-card__figure { grid-row: 1; }
  .bd-products__grid .bd-card__head { grid-row: 2; min-height: 0; padding-block-start: 0.3rem; }
  .bd-products__grid .bd-card__rating { grid-row: 3; align-self: start; }
  .bd-products__grid .bd-card__feature { grid-row: 4; align-self: start; }
  .bd-products__grid .bd-card__prices { grid-row: 5; margin-top: 0; align-self: end; }
}
.bd-card__figure {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--bd-radius);
  overflow: hidden;
  background: var(--bd-figure-bg);
  text-decoration: none;
}
.bd-card__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.bd-card__img--2 { opacity: 0; }
@media (hover: hover) {
  .bd-card__figure:hover .bd-card__img--1 { opacity: 0; }
  .bd-card__figure:hover .bd-card__img--2 { opacity: 1; transform: scale(1.03); }
}
.bd-card__badge {
  position: absolute;
  inset-block-start: 0.6rem;
  inset-inline-start: 0.6rem;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  background: var(--bd-red);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
}
.bd-card__add {
  position: absolute;
  inset-block-end: 0.6rem;
  inset-inline-end: 0.6rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bd-pink);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.bd-card__figure:hover .bd-card__add {
  transform: scale(1.08);
  background: var(--bd-pink-dark);
}
.bd-card__add svg,
.bd-card__add img { width: 1rem; height: 1rem; object-fit: contain; }

.bd-card__body { display: flex; flex-direction: column; gap: 0.4rem; padding-block-start: 0.7rem; flex: 1; }
/* Titel + Untertitel: feste Mindesthöhe, damit Bewertung/Feature/Preis
   über alle Kacheln auf einer Höhe liegen (auch ohne Untertitel). */
.bd-card__head { min-height: 2.6em; display: flex; flex-direction: column; gap: 0.05rem; }
.bd-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--bd-ink);
  margin: 0;
  line-height: 1.25;
}
.bd-card__title a { color: inherit; text-decoration: none; }
.bd-card__sub { font-size: var(--text-xs); color: var(--bd-muted-2); }
.bd-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
}
.bd-card__stars { color: var(--bd-gold); letter-spacing: 0.02em; position: relative; }
.bd-card__stars-empty { color: var(--bd-line); }
.bd-card__rating-count { color: var(--bd-muted); }
.bd-card__feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--bd-muted);
  /* Divider ober- und unterhalb der Feature-Zeile (wie im Klickdummy) */
  border-block: 1px solid rgb(0 0 0 / 0.08);
  padding-block: 0.6rem;
  margin-block: 0.15rem;
}
.bd-card__feature svg,
.bd-card__feature-icon { width: 15px; height: 15px; color: var(--bd-muted-2); flex: 0 0 auto; object-fit: contain; }
.bd-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  /* nach unten schieben, damit Preise über alle Kacheln auf einer Höhe liegen */
  margin-top: auto;
  padding-top: 0.15rem;
}
.bd-card__price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--bd-red);
}
.bd-card__compare {
  font-size: var(--text-sm);
  color: var(--bd-muted-2);
  text-decoration: line-through;
}
.bd-card__save {
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: var(--bd-red-soft);
  color: var(--bd-red);
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: nowrap;
}
/* Mobil: Preis + UVP + Ersparnis in einer Zeile */
@media screen and (max-width: 749px) {
  .bd-card__prices { flex-wrap: nowrap; gap: 0.3rem; }
  .bd-card__price { font-size: var(--text-lg); }
  .bd-card__compare { font-size: var(--text-xs); }
  .bd-card__save { padding: 0.1rem 0.35rem; }
}

/* ---- Promo-Kachel / Breaker: schmales Band, Bild links + rechts, Text mittig ---- */
.bd-promo {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.25rem 1.5rem;
  overflow: hidden;
  background: var(--bd-pink-soft);
  border: 1px solid rgb(0 0 0 / 0.06);
  border-radius: 24px;
  text-align: center;
}
/* Bilder an den äußeren Rändern; feste Höhe -> Uploads vergrößern das Band nicht */
.bd-promo__imgs {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.bd-promo__imgs img {
  width: 230px;
  max-width: 32vw;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Text-Spalte mittig zwischen den Bildern */
.bd-promo > div:last-child {
  position: relative;
  z-index: 1;
  max-width: min(46%, 30rem);
}
.bd-promo__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--bd-ink);
  margin: 0 0 0.35rem;
}
.bd-promo__icon { flex: 0 0 auto; width: 1.6rem; height: 1.6rem; object-fit: contain; }
.bd-promo__text { font-size: var(--text-sm); color: var(--bd-muted); margin: 0; }
/* Zweites Bild spiegeln */
.bd-promo__imgs img:nth-child(2) { transform: scaleX(-1); }
/* Mobil: keine Bilder, kein Untertitel – nur Icon + Titel, Text volle Breite */
@media screen and (max-width: 749px) {
  .bd-promo { min-height: auto; padding: 1.25rem 1rem; }
  .bd-promo__imgs { display: none; }
  .bd-promo > div:last-child { max-width: 100%; }
  .bd-promo__text { display: none; }
  .bd-promo__title { flex-direction: column; gap: 0.45rem; font-size: var(--text-lg); }
  .bd-promo__icon { width: 2rem; height: 2rem; }
}

/* ==================================================================
   FAMILIE
   ================================================================== */
.bd-family__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.bd-family__figure { border-radius: 24px; overflow: hidden; }
.bd-family__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-family__text { display: grid; gap: 1rem; }
.bd-family__text p { margin: 0; font-size: var(--text-lg); line-height: 1.6; color: var(--bd-muted); }
@media screen and (min-width: 750px) {
  .bd-family__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* ==================================================================
   JOURNEY – gepinnte Scroll-Strecke (Step-Slider)
   Native gepinnter Scroll: man scrollt garantiert durch alle Schritte,
   nicht daran vorbei; kein Leerraum unten. Sanftes Einrasten pro Schritt.
   Basis (ohne JS / reduced-motion) = einfache, lesbare Liste.
   ================================================================== */
.bd-journey { position: relative; }
.bd-journey__pin {
  display: flex;
  align-items: center;
  padding-block: var(--section-vertical-spacing);
}
.bd-journey__inner { display: grid; gap: 2rem; align-items: center; width: 100%; }

.bd-journey__media {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.bd-journey__img { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 1 / 1; }
.bd-journey__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Fallback: nur erstes Bild zeigen */
.bd-journey__media .bd-journey__img:not(:first-child) { display: none; }

.bd-journey__panel { display: grid; gap: 1.1rem; justify-items: start; }
.bd-journey__heading { margin: 0; }
.bd-journey__dots { display: none; gap: 8px; }
.bd-journey__dot {
  height: 10px; width: 10px; border-radius: 999px;
  background: var(--bd-line);
  transition: width 0.45s cubic-bezier(.22, .61, .36, 1), background-color 0.45s ease;
}
.bd-journey__texts { display: grid; gap: 1.5rem; width: 100%; }
.bd-journey__text { text-align: start; }
.bd-journey__text-head { display: flex; align-items: center; gap: 0.8rem; }
.bd-journey__num {
  flex: 0 0 auto;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--bd-pink); color: #fff;
  font-weight: 700; font-size: var(--text-sm);
}
.bd-journey__title { font-size: var(--text-h4); font-weight: 700; color: var(--bd-ink); margin: 0; }
.bd-journey__text-body { font-size: var(--text-sm); color: var(--bd-muted); margin: 0.7rem 0 0; line-height: 1.55; }
.bd-journey__cta { justify-self: start; margin-top: 0.5rem; }
.bd-journey__snaps { display: none; }

@media screen and (min-width: 750px) {
  .bd-journey__inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* ---- Aktiv (JS): gepinnte Strecke, Höhe wird per JS gesetzt ---- */
.bd-journey--ready .bd-journey__pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.bd-journey--ready .bd-journey__snaps {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.bd-journey--ready .bd-journey__snap {
  height: var(--bd-step-h, 80vh);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.bd-journey--ready .bd-journey__media .bd-journey__img {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(24px) scale(1.02);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.bd-journey--ready .bd-journey__img.is-active { opacity: 1; transform: none; }
.bd-journey--ready .bd-journey__dots { display: flex; }
.bd-journey--ready .bd-journey__dot.is-active { width: 26px; background: var(--bd-pink); }
.bd-journey--ready .bd-journey__texts { position: relative; }
.bd-journey--ready .bd-journey__text {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  pointer-events: none;
}
.bd-journey--ready .bd-journey__text.is-active { opacity: 1; transform: none; pointer-events: auto; }

/* ---- Mobil: alles auf einen Screen, nichts abschneiden ---- */
@media screen and (max-width: 749px) {
  .bd-journey__pin { padding-block: 1.25rem; }
  .bd-journey__inner { gap: 1.1rem; }
  .bd-journey__media { max-width: min(62vw, 36vh); }   /* Bildhöhe deckeln */
  .bd-journey__heading { font-size: var(--text-h3); }
  .bd-journey__title { font-size: var(--text-base); }
  .bd-journey__text-body { font-size: var(--text-xs); margin-top: 0.5rem; line-height: 1.45; }
  .bd-journey__panel { gap: 0.7rem; }
  .bd-journey__cta { padding-block: 0.7rem; }
}

/* ==================================================================
   REVIEWS
   ================================================================== */
/* Kopfzeile: Überschrift links, Navigations-Pfeile rechts (wie im Dummy) */
.bd-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--section-stack-gap);
}
.bd-reviews__intro { display: grid; gap: 0.5rem; }
.bd-reviews__meta { display: inline-flex; align-items: center; gap: 0.5rem; }
.bd-reviews__meta .bd-usp__stars { font-size: var(--text-lg); color: var(--bd-gold); }
.bd-reviews__meta > span:not(.bd-usp__stars) { color: var(--bd-muted); font-size: var(--text-sm); }
.bd-reviews__nav { display: none; gap: 0.6rem; }
.bd-reviews__arrow {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--bd-line);
  background: #fff;
  color: var(--bd-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.bd-reviews__arrow:hover { border-color: var(--bd-pink); color: var(--bd-pink); }
.bd-reviews__arrow svg { width: 1.1rem; height: 1.1rem; }

/* Slider-Track: horizontal scroll-/wischbar mit Snap */
.bd-reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.bd-reviews__track::-webkit-scrollbar { display: none; }
.bd-review {
  flex: 0 0 82%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
/* Bild ohne Rahmen */
.bd-review__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bd-figure-bg);
}
.bd-review__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* nur der Text-Bereich hat einen Rahmen */
.bd-review__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4e0dc;
}
.bd-review__stars { color: var(--bd-gold); letter-spacing: 0.05em; font-size: var(--text-base); }
.bd-review__quote { margin: 0; font-size: var(--text-base); line-height: 1.55; color: var(--bd-ink-soft); flex: 1; }
.bd-review__foot { display: grid; gap: 0.15rem; }
.bd-review__author { margin: 0; font-weight: 700; font-size: var(--text-sm); color: var(--bd-ink); }
.bd-review__product { margin: 0; font-size: var(--text-xs); color: var(--bd-muted); }
@media screen and (min-width: 700px) { .bd-review { flex-basis: 320px; } }
@media screen and (min-width: 1000px) {
  .bd-reviews__nav { display: flex; }
}

/* ==================================================================
   FAQ (reines CSS via <details>)
   ================================================================== */
.bd-faq__list { max-width: 48rem; margin-inline: auto; display: grid; gap: 0.75rem; }
.bd-faq__item {
  border: 1px solid var(--bd-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.bd-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--bd-ink);
  list-style: none;
}
.bd-faq__q::-webkit-details-marker { display: none; }
.bd-faq__icon {
  flex: 0 0 auto;
  width: 1.4rem; height: 1.4rem;
  display: grid; place-items: center;
  color: var(--bd-pink);
  font-size: 1.4rem; line-height: 1;
  transition: transform 0.25s ease;
}
.bd-faq__item[open] .bd-faq__icon { transform: rotate(45deg); }
.bd-faq__a {
  padding: 0 1.25rem 1.15rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--bd-muted);
}
@media (prefers-reduced-motion: no-preference) {
  .bd-faq__item[open] .bd-faq__a { animation: bd-faq-in 0.3s ease; }
  @keyframes bd-faq-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
}

/* ==================================================================
   NEWSLETTER
   ================================================================== */
.bd-news__inner {
  text-align: center;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  max-width: 40rem;
  margin-inline: auto;
}
.bd-news__form {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 30rem;
  flex-wrap: wrap;
}
.bd-news__form input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid var(--bd-line);
  background: #fff;
  font-size: var(--text-base);
}
.bd-news__form .bd-btn { flex: 0 0 auto; }
.bd-news__note { font-size: var(--text-xs); color: var(--bd-muted); margin: 0; }
.bd-news__success { color: var(--success-text, #307a07); font-weight: 700; }
