/* ==========================================================================
   HüpfBuBu – Website
   Klar strukturiert, minimalistisch, mit fröhlichem Farbakzent.
   ========================================================================== */

:root {
  /* Farben */
  --pink:   #E8248F;
  --purple: #6B24E8;
  --cyan:   #00B8D9;
  --yellow: #FFC933;
  --green:  #22B573;
  --orange: #F07800;
  --blue:   #2E86FF;

  --ink:      #1F1838;
  --ink-soft: #5C5479;
  --ink-mute: #8A83A3;

  --surface:   #FFFFFF;
  --surface-2: #F7F5FC;
  --surface-3: #F0ECFA;
  --line:      #E6E1F2;
  --line-soft: #F0EDF8;

  --brand:      linear-gradient(120deg, #6B24E8 0%, #E8248F 100%);
  --brand-wide: linear-gradient(120deg, #6B24E8 0%, #E8248F 55%, #F07800 100%);

  /* Abstände (4px-Raster) */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;   --sp-16: 4rem;
  --section-y: clamp(3rem, 6vw, 5rem);
  --gap: clamp(1rem, 2vw, 1.5rem);

  /* Radien */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Schatten */
  --sh-1: 0 1px 2px rgba(31, 24, 56, .05), 0 2px 8px rgba(31, 24, 56, .05);
  --sh-2: 0 4px 12px rgba(31, 24, 56, .07), 0 12px 28px rgba(31, 24, 56, .07);
  --sh-3: 0 18px 48px rgba(31, 24, 56, .16);
  --sh-btn: 0 4px 0 rgba(31, 24, 56, .13);

  /* Typo */
  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --header-h: 72px;
  --wave-h: clamp(8px, 2.2vw, 16px);
  --header-total: calc(var(--header-h) + var(--wave-h));

  /* Wellenmasken: Klassisch (1x Schwung) und Dynamisch (2,5-fach) */
  --wave-bottom-classic: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='40' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V13 C1180 39 940 35 720 21 C500 7 250 2 0 12 Z' fill='%23000'/%3E%3C/svg%3E");
  --wave-top-classic: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='40' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 12 C250 2 500 7 720 21 C940 35 1180 39 1440 13 V40 H0 Z' fill='%23000'/%3E%3C/svg%3E");

  --wave-bottom-multi: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='40' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V20 C1368 6 1224 6 1152 20 C1080 34 936 34 864 20 C792 6 648 6 576 20 C504 34 360 34 288 20 C216 6 72 6 0 20 Z' fill='%23000'/%3E%3C/svg%3E");
  --wave-top-multi: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='40' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 C72 6 216 6 288 20 C360 34 504 34 576 20 C648 6 792 6 864 20 C936 34 1080 34 1152 20 C1224 6 1368 6 1440 20 V40 H0 Z' fill='%23000'/%3E%3C/svg%3E");

  --wave-bottom: var(--wave-bottom-multi);
  --wave-top: var(--wave-top-multi);
}

body.wave-classic,
body[data-wave="classic"] {
  --wave-bottom: var(--wave-bottom-classic);
  --wave-top: var(--wave-top-classic);
}

/* -------------------------------------------------------------- Basis */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-total) + 1rem); }

body.site {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

#main > .section:only-of-type,
#main > .section:last-child {
  flex-grow: 1;
}

#main > .section:only-of-type.section--top {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 var(--sp-3); letter-spacing: -.005em; font-weight: 700; }
p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 var(--sp-4); padding-left: 1.2em; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2rem, 860px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--purple); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; border-radius: 6px; }

.bi { line-height: 1; display: inline-block; vertical-align: -.08em; }

/* ------------------------------------------------------------ Buttons */

.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-display); font-weight: 700; font-size: .975rem;
  padding: .7rem 1.4rem;
  min-height: 46px;
  border: none; border-radius: var(--r-pill); cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--sh-btn);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .16s ease;
  text-decoration: none; text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(31,24,56,.14); text-decoration: none; }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(31,24,56,.14); }
.btn .bi { font-size: 1.05em; }

.btn--sm  { padding: .45rem 1rem; min-height: 38px; font-size: .9rem; box-shadow: 0 3px 0 rgba(31,24,56,.12); }
.btn--lg  { padding: .95rem 1.9rem; min-height: 54px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn--outline { background: transparent; color: var(--purple); box-shadow: inset 0 0 0 2px var(--purple); }
.btn--outline:hover { background: var(--purple); color: #fff; box-shadow: inset 0 0 0 2px var(--purple), 0 6px 0 rgba(31,24,56,.12); }
.btn--ghost { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 2px var(--line), 0 3px 0 rgba(31,24,56,.06); }
.btn--ghost:hover { color: var(--purple); box-shadow: inset 0 0 0 2px var(--purple), 0 5px 0 rgba(31,24,56,.08); }
.btn--light { background: #fff; color: var(--purple); box-shadow: 0 4px 0 rgba(31,24,56,.16); }
.btn--glass { background: rgba(255,255,255,.16); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn--glass:hover { background: #fff; color: var(--purple); box-shadow: inset 0 0 0 2px #fff, 0 6px 0 rgba(0,0,0,.14); }

.btn--outline-gradient {
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--brand) border-box;
  border: 2px solid transparent; color: var(--purple); box-shadow: 0 3px 0 rgba(31,24,56,.08);
}
.btn--outline-gradient:hover {
  background: var(--brand); color: #fff;
  border-color: transparent; box-shadow: 0 6px 0 rgba(31,24,56,.14);
}
.btn--outline-gradient:active { box-shadow: 0 2px 0 rgba(31,24,56,.08); }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; flex: 0 0 auto;
  border: none; border-radius: var(--r); cursor: pointer;
  background: var(--surface-2); color: var(--ink);
  font-size: 1.05rem; transition: background .16s ease, color .16s ease, transform .16s ease;
}
.icon-btn:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

/* ------------------------------------------------------------- Header */

.header {
  position: sticky; top: 0; z-index: 90;
  background: var(--brand-wide) no-repeat fixed;
  background-size: cover;
  padding-bottom: var(--wave-h);
  -webkit-mask-image: linear-gradient(#000, #000), var(--wave-bottom);
  -webkit-mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  -webkit-mask-position: top left, bottom left;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: linear-gradient(#000, #000), var(--wave-bottom);
  mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  mask-position: top left, bottom left;
  mask-repeat: no-repeat, no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Auf Seiten mit Seiten-Hero: Im Ruhezustand (oben) keine Maskenkante, damit Header und Hero 100% nahtlos verschmelzen */
body:has(.page-hero) .header:not(.is-scrolled) {
  -webkit-mask-image: none;
  mask-image: none;
}

.header__inner { display: flex; align-items: center; gap: var(--sp-4); min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: var(--sp-3); color: #fff; margin-right: auto; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-top: 4px;
}
.brand__mark {
  display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto;
  background: rgba(255,255,255,.18); border-radius: var(--r);
}
.brand__text { min-width: 0; }
.brand__text strong { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.1; }
.brand__text small { display: block; font-size: .74rem; opacity: .88; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.header__mobile-phone { display: none; }

@media (max-width: 1023px) {
  .header__inner { justify-content: space-between; gap: var(--sp-2); }
  .brand { margin-left: 0; margin-right: auto; justify-content: flex-start; }
  .brand__logo { margin-left: 0; margin-right: auto; margin-top: 0 !important; height: clamp(48px, 12vw, 48px); max-width: clamp(180px, 67vw, 240px); }
  .header__mobile-phone {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: #fff; color: var(--purple); font-size: 1.18rem; cursor: pointer;
    box-shadow: 0 4px 14px rgba(31, 24, 56, .2);
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    flex: 0 0 auto; -webkit-tap-highlight-color: transparent;
    width: 44px; height: 44px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    padding: 0;
    color: #fff;
    cursor: pointer;
    flex: 0 0 auto;
    position: relative;
    z-index: 102;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .28));
    transition: transform .2s cubic-bezier(.34, 1.4, .64, 1), filter .2s ease, color .18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .header__mobile-phone:hover { transform: scale(1.06); box-shadow: 0 6px 18px rgba(31, 24, 56, .28); }
  .header__mobile-phone:active { transform: scale(.92); }
  .header__mobile-phone.is-active { background: var(--surface-3); color: var(--pink); }
  .header__mobile-phone svg {
    display: block;
    width: 27px;
    height: 27px;
  }
  .header__mobile-phone:hover {
    transform: scale(1.12) rotate(-4deg);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .36));
  }
  .header__mobile-phone:active {
    transform: scale(.92);
  }
  .header__mobile-phone.is-active {
    color: var(--yellow);
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255, 201, 51, .6));
  }
}

.nav { display: none; }
.nav__list { display: flex; gap: var(--sp-1); list-style: none; margin: 0; padding: 0; }
.nav__list li:last-child{ display: none!important;}
.nav__link {
  display: block; padding: .5rem .95rem; border-radius: var(--r-pill);
  color: #fff; font-weight: 700; font-size: .95rem;
  transition: background .16s ease;
}
.nav__link:hover { background: rgba(255,255,255,.18); text-decoration: none; }
.nav__link.is-active { background: #fff; color: var(--purple); }

.header__cta { display: none; align-items: center; gap: var(--sp-4); }
.header__phone { display: inline-flex; align-items: center; gap: var(--sp-2); color: #fff; font-weight: 700; font-size: .93rem; }
.header__phone:hover { text-decoration: underline; }

/* --------------------------------------------------------------- Hero */

.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(600px, 80vh, 800px);
  padding: var(--sp-12) 0 var(--sp-16);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--purple); }
.hero__bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.1s ease, transform 8s linear;
}
.hero__bg-slide.is-active { opacity: 1; transform: scale(1); }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(24,14,52,.82) 0%, rgba(24,14,52,.58) 45%, rgba(24,14,52,.25) 100%),
    linear-gradient(to top, rgba(24,14,52,.55), transparent 45%);
}

.hero__inner { position: relative; /* max-width: 700px; */ }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin: 0 0 var(--sp-5);
  background: rgba(255,255,255,.15); color: #fff;
  font-weight: 700; font-size: .84rem;
  padding: .4rem .9rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.hero__badge .bi { color: var(--yellow); }
.hero__title {
  font-size: clamp(2.1rem, 5.6vw, 3.6rem); line-height: 1.08;
  margin: 0 0 var(--sp-3); color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.hero__sub {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--yellow);
  margin: 0 0 var(--sp-4);
}
.hero__text { font-size: 1.05rem; color: rgba(255,255,255,.92); max-width: 56ch; }
.hero__text p { margin-bottom: var(--sp-3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6);
  list-style: none; padding: 0; margin: var(--sp-8) 0 0;
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.92);
}
.hero__facts li { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hero__facts .bi { color: var(--yellow); font-size: 1.05rem; }

.hero__controls {
  position: absolute; left: 0; right: 0; bottom: var(--sp-5); z-index: 2;
  width: min(100% - 2rem, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; justify-content: center; gap: var(--sp-4);
}
.hero__caption {
  display: none;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8);
  align-items: center; gap: var(--sp-2); min-width: 0; margin-right: auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero__caption::before { content: ''; width: 22px; height: 2px; background: var(--yellow); flex: 0 0 auto; }
.hero__dots { display: flex; gap: var(--sp-2); flex: 0 0 auto; }
.hero__dot {
  width: 9px; height: 9px; border-radius: var(--r-pill); border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.4); transition: all .25s ease;
}
.hero__dot.is-active { width: 30px; background: #fff; }

/* ----------------------------------------------------------- Sections */

.section { padding: var(--section-y) 0; }
.section--top { padding-top: var(--sp-8); }
.section--tint { background: var(--surface-2); }

.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-6); margin-bottom: var(--sp-8); }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__head > div { min-width: 0; }
.section__title--star {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__title-text {
  min-width: 0;
}
.section__title-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #FFB800;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 32px;
  line-height: 1;
}
.section__title-star i {
  color: #FFB800;
  background: none !important;
  text-shadow: 0 2px 10px rgba(255, 184, 0, 0.45);
}
.section__title { font-size: clamp(1.55rem, 3.4vw, 2.2rem); margin: var(--sp-2) 0 var(--sp-3) 0; color: var(--ink); }
.section__head--center .section__title { position: relative; padding-bottom: var(--sp-3); }
.section__head--center .section__title::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: var(--r-pill); background: var(--brand);
}
.section__title--left { text-align: left; }
.section__lead { color: var(--ink-soft); max-width: 62ch; margin: 0; font-size: 1rem; margin-left: auto; margin-right: auto;}
.section__head--center .section__lead { margin-inline: auto;}
.section__foot { text-align: center; margin-top: var(--sp-8); }

.eyebrow {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .74rem; color: var(--pink); margin: 0 0 var(--sp-2);
}
.eyebrow--light { color: rgba(255,255,255,.85); }

/* ----------------------------------------------------------- Features */

.features { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-5); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: auto !important; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.feature__icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto;
  font-size: 2rem; border-radius: var(--r); background: none; color: var(--purple);
}
.feature__title { font-size: 1.1rem; margin-bottom: var(--sp-2); }
.feature__text { color: var(--ink-soft); margin: 0; font-size: .93rem; }

/* -------------------------------------------------------------- Steps */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-6) var(--sp-6); text-align: center;
}
.step__num {
  position: absolute; top: calc(-1 * var(--sp-4)); left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: var(--r-pill); background: var(--brand); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.step__icon { display: block; font-size: 1.6rem; color: var(--pink); margin-bottom: var(--sp-2); }
.step__title { font-size: 1.08rem; margin-bottom: var(--sp-2); }
.step__text { color: var(--ink-soft); margin: 0; font-size: .93rem; }

/* --------------------------------------------------------- Text-Split */

.text-split { display: grid; gap: var(--sp-8); align-items: center; }
.text-split__media img {
  width: 100%; /* aspect-ratio: 16/10; */ object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--sh-2);
  height: 100%;
}
.text-split__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* ---------------------------------------------------------------- RTE */

.rte { color: var(--ink-soft); }
.rte h2, .rte h3, .rte h4 { color: var(--ink); }
.rte h2 { font-size: 1.35rem; margin-top: 1.8em; }
.rte h3 { font-size: 1.15rem; margin-top: 1.5em; }
.rte > :first-child { margin-top: 0; }
.rte ul, .rte ol { padding-left: 1.25em; }
.rte li { margin-bottom: .3em; }
.rte a { font-weight: 700; text-decoration: underline; }
.rte img { border-radius: var(--r); margin: var(--sp-4) 0; max-width: 100%; height: auto; }
.rte img.img-fluid { width: 100%; height: auto; }
.rte img.img-sm { max-width: 33%; }
.rte img.img-md { max-width: 50%; }
.rte img.img-lg { max-width: 75%; }
.rte img.img-left { float: left; margin: var(--sp-2) var(--sp-5) var(--sp-4) 0; clear: left; }
.rte img.img-right { float: right; margin: var(--sp-2) 0 var(--sp-4) var(--sp-5); clear: right; }
.rte img.img-center { display: block; margin-left: auto; margin-right: auto; float: none; clear: both; }

.rte figure { margin: var(--sp-5) 0; max-width: 100%; }
.rte figure img { margin: 0; }
.rte figure.img-left { float: left; margin: var(--sp-2) var(--sp-5) var(--sp-4) 0; clear: left; }
.rte figure.img-right { float: right; margin: var(--sp-2) 0 var(--sp-4) var(--sp-5); clear: right; }
.rte figure.img-center { display: block; margin-left: auto; margin-right: auto; float: none; clear: both; }
.rte figure.img-sm { max-width: 33%; }
.rte figure.img-md { max-width: 50%; }
.rte figure.img-lg { max-width: 75%; }
.rte figure.img-sm img, .rte figure.img-md img, .rte figure.img-lg img { width: 100%; }
.rte figcaption { font-size: .85rem; color: var(--ink-mute); margin-top: .4rem; text-align: center; }
.rte::after { content: ""; display: table; clear: both; }

@media (max-width: 600px) {
  .rte img.img-left, .rte img.img-right,
  .rte figure.img-left, .rte figure.img-right {
    float: none; max-width: 100%; margin: var(--sp-4) auto; display: block;
  }
}
.rte blockquote {
  margin: var(--sp-5) 0; padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--yellow); background: var(--surface-2);
  border-radius: 0 var(--r) var(--r) 0;
}
.rte table { width: 100%; border-collapse: collapse; margin: var(--sp-4) 0; }
.rte th, .rte td { border: 1px solid var(--line); padding: .55rem .75rem; text-align: left; }
.rte--light, .rte--light p { color: rgba(255,255,255,.92); }
.rte--light a { color: #fff; }
.rte--doc { font-size: 1rem; }
.rte--doc h2:first-of-type { margin-top: 0; }

/* ---------------------------------------------------------------- CTA */

.cta {
  display: grid; gap: var(--sp-8);
  background: var(--brand-wide);
  border-radius: var(--r-xl); padding: clamp(1.75rem, 4vw, 3rem);
  color: #fff; box-shadow: var(--sh-3);
  position: relative; overflow: hidden;
}
.cta::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.cta__body { position: relative; }
.cta__title { font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: #fff; margin-bottom: var(--sp-3); }
.cta__body .btn { margin-top: var(--sp-6); }
.cta__contacts { position: relative; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); align-content: center; }
.cta__contacts a {
  display: flex; align-items: center; gap: var(--sp-3);
  background: rgba(255,255,255,.14); color: #fff; font-weight: 700;
  padding: .7rem 1.1rem; border-radius: var(--r); text-decoration: none;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .18s ease, color .18s ease;
}
.cta__contacts a:hover { background: #fff; color: var(--purple); text-decoration: none; }
.cta__contacts span { overflow: hidden; text-overflow: ellipsis; }

/* -------------------------------------------------------------- Karten */

.grid { display: grid; gap: var(--gap); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.badge {
  position: absolute; top: var(--sp-3); z-index: 2;
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .74rem; font-weight: 700; padding: .28rem .6rem;
  border-radius: var(--r-pill); background: rgba(255,255,255,.94); color: var(--ink);
  box-shadow: var(--sh-1); backdrop-filter: blur(4px);
}
.badge--start { left: var(--sp-3); }
.badge--end { right: var(--sp-3); }
.badge--accent { background: var(--yellow); color: #4A3200; }
.badge .bi { font-size: .85em; }

.card {
  --card-accent: var(--purple);
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; }
.card__media { position: relative; display: block; background: var(--surface-3); }
.card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card__body { padding: var(--sp-5) var(--sp-5) var(--sp-3); flex: 1; }
.card__cat {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: .75rem; font-weight: 700; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .06em; margin: 0 0 var(--sp-2);
}
.card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--card-accent); flex: 0 0 auto; display: none;}
.card__title { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--card-accent); text-decoration: none; }
.card__teaser {
  color: var(--ink-soft); font-size: .9rem; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  border-top: 1px solid var(--line-soft); margin-top: var(--sp-2);
}
.card__price { margin: 0; display: flex; align-items: baseline; gap: .25rem; min-width: 0; }
.card__price-label, .card__price-unit { font-size: .78rem; color: var(--ink-mute); }
.card__price-value { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }

/* ------------------------------------------------------ Produkt-Slider */

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  --slide-w: 100%;
}
.slider__track {
  position: relative;
  display: flex; gap: var(--gap);
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  padding-block: var(--sp-3) var(--sp-6);
  padding-inline: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__item { flex: 0 0 var(--slide-w); width: var(--slide-w); max-width: var(--slide-w); scroll-snap-align: center; }
.slider__item .card { width: 100%; height: 100%; }
.slider__nav { display: flex; gap: var(--sp-2); flex: 0 0 auto; }
.slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: calc(-1 * var(--sp-2));
  margin-bottom: var(--sp-1);
  padding: var(--sp-2) 0;
}
.slider__dots[hidden] {
  display: none !important;
}
.slider__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  border: none;
  padding: 0;
  cursor: pointer;
  background: #D5CEE8;
  transition: width .28s cubic-bezier(0.4, 0, 0.2, 1), background-color .28s ease, opacity .28s ease;
}
.slider__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}
.slider__dot:hover {
  background: var(--purple);
  opacity: .75;
}
.slider__dot.is-active {
  width: 24px;
  background: var(--purple);
  opacity: 1;
}
.slider__dot:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* ---------------------------------------------------------- Page-Hero */

.page-hero {
  position: relative; color: #fff;
  background: var(--brand-wide) no-repeat fixed;
  background-size: cover;
  padding: var(--sp-12) 0 calc(var(--sp-12) + var(--wave-h));
  -webkit-mask-image: linear-gradient(#000, #000), var(--wave-bottom);
  -webkit-mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  -webkit-mask-position: top left, bottom left;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: linear-gradient(#000, #000), var(--wave-bottom);
  mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  mask-position: top left, bottom left;
  mask-repeat: no-repeat, no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.page-hero--slim { padding-top: var(--sp-10); padding-bottom: calc(var(--sp-10) + var(--wave-h)); }

/* Hero-Bereiche starten hinter dem Header, damit keine Kante entsteht */
main > .hero:first-child,
main > .page-hero:first-child {
  margin-top: calc(-1 * var(--header-total) - 2px);
}
main > .hero:first-child { padding-top: calc(var(--header-total) + var(--sp-12)); }
main > .page-hero:first-child { padding-top: calc(var(--header-total) + var(--sp-8) + 2px); }
main > .page-hero--slim:first-child { padding-top: calc(var(--header-total) + var(--sp-6) + 2px); }

.page-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: var(--sp-2); }
.page-hero__lead { max-width: 62ch; color: rgba(255,255,255,.9); margin: 0; }

/* -------------------------------------------------------- Breadcrumbs */

.crumbs { padding: var(--sp-5) 0 0; }
.crumbs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; font-size: .84rem; color: var(--ink-mute); }
.crumbs__item { display: inline-flex; align-items: center; }
.crumbs__item a { color: var(--ink-soft); }
.crumbs__sep { margin: 0 .45rem; opacity: .5; font-size: .7rem; }

/* ------------------------------------------------------ Katalogfilter */

.catbar { margin-bottom: var(--sp-4); }
.catbar__scroll {
  display: flex; gap: var(--sp-2); overflow-x: auto; padding-block: 3px var(--sp-2);
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
}
.catbar__scroll::-webkit-scrollbar { display: none; }
.catchip {
  --chip: var(--purple);
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: .5rem .95rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .88rem;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line); white-space: nowrap;
  transition: all .16s ease;
}
.catchip .bi { color: var(--chip); font-size: 1rem; }
.catchip:hover { border-color: var(--chip); text-decoration: none; }
.catchip.is-active { background: var(--chip); border-color: var(--chip); color: #fff; }
.catchip.is-active .bi { color: #fff; }

.filters {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-4); margin-bottom: var(--sp-6);
}
.filters__bar { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.filters__search {
  position: relative; display: flex; align-items: center; gap: var(--sp-2);
  flex: 1 1 220px; min-width: 0;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 0 var(--sp-4); height: 44px;
}
.filters__search:focus-within { border-color: var(--purple); }
.filters__search .bi { color: var(--ink-mute); flex: 0 0 auto; }
.filters__search input {
  flex: 1; min-width: 0; border: none; background: none; font: inherit; color: var(--ink);
  padding: 0; outline: none; height: 100%;
}
.filters__submit { flex: 0 0 auto; }
.filters__toggle { flex: 0 0 auto; position: relative; }
.filters__count {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px;
  padding: 0 .3rem; border-radius: var(--r-pill);
  background: var(--pink); color: #fff; font-size: .72rem; font-weight: 800;
}

.filters__panel {
  display: none; gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-top: var(--sp-4); padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
}
.filters__panel.is-open { display: grid; }
.filters__field { min-width: 0; display: grid; gap: var(--sp-2); align-content: start; }
.filters__field > label:not(.switch) { font-weight: 700; font-size: .85rem; display: flex; justify-content: space-between; gap: var(--sp-2); }
.filters__field output { color: var(--purple); }
.filters__field select {
  width: 100%; height: 42px; padding: 0 var(--sp-3);
  border-radius: var(--r); border: 1px solid var(--line); background: var(--surface-2); font: inherit;
}
.filters__field input[type=range] { width: 100%; accent-color: var(--pink); }
.filters__field--switches { gap: var(--sp-3); align-content: center; }
.filters__field--actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; align-content: center; }

.switch { display: inline-flex; align-items: center; gap: var(--sp-3); cursor: pointer; font-weight: 600; font-size: .88rem; justify-content: flex-start; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__label { flex: 1; min-width: 0; }
.switch__track { width: 44px; height: 25px; border-radius: var(--r-pill); background: var(--line); position: relative; transition: background .2s ease; flex: 0 0 auto; }
.switch__thumb { position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: var(--sh-1); transition: transform .2s ease; }
.switch input:checked + .switch__track { background: var(--brand); }
.switch input:checked + .switch__track .switch__thumb { transform: translateX(19px); }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--purple); outline-offset: 3px; }

.catalog__count { font-weight: 600; color: var(--ink-soft); margin-bottom: var(--sp-4); font-size: .92rem; }
.catalog__count strong { color: var(--ink); }

.empty { text-align: center; padding: var(--sp-12) var(--sp-4); background: var(--surface-2); border-radius: var(--r-lg); }
.empty__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto var(--sp-4); border-radius: 50%; background: #fff; color: var(--purple); font-size: 1.5rem; }
.empty p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.empty .btn { margin-top: var(--sp-5); }

/* ------------------------------------------------------- Produktseite */

.product__grid { display: grid; gap: 0; align-items: start; }
.product__stage {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--surface-3); border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(31,24,56,.08);
}
.product__slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product__slider::-webkit-scrollbar { display: none; }
.product__slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  cursor: zoom-in;
}
.product__slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.product__zoom-btn {
  position: absolute; top: 48px; right: var(--sp-3); z-index: 4;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.88); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; font-size: .95rem;
  box-shadow: 0 2px 8px rgba(31,24,56,.12);
  transition: all .16s ease; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.product__zoom-btn:hover { background: #fff; color: var(--purple); transform: scale(1.08); }

.product__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.92); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(31,24,56,.14), 0 1px 3px rgba(31,24,56,.08);
  transition: background .16s ease, transform .16s cubic-bezier(.34,1.4,.64,1), color .16s ease, box-shadow .16s ease;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.product__arrow:hover {
  background: #fff; color: var(--purple);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(107,36,232,.22);
}
.product__arrow:active { transform: translateY(-50%) scale(.96); }
.product__arrow--prev { left: var(--sp-3); }
.product__arrow--next { right: var(--sp-3); }
.product__counter {
  position: absolute; bottom: var(--sp-3); left: 50%; transform: translateX(-50%); z-index: 3;
  background: rgba(31,24,56,.75); color: #fff; font-size: .78rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px); letter-spacing: .03em;
}

.product__thumbs {
  display: flex; gap: var(--sp-2); margin-top: var(--sp-3);
  overflow-x: auto; padding: 4px 2px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.product__thumbs::-webkit-scrollbar { height: 4px; }
.product__thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: var(--r-pill); }
.product__thumb {
  flex: 0 0 72px; width: 72px; border: 2px solid transparent; border-radius: 6px;
  overflow: hidden; padding: 0; background: var(--surface-2); cursor: pointer;
  box-shadow: var(--sh-1); transition: all .16s ease; opacity: .75;
}
.product__thumb:hover { opacity: 1; transform: translateY(-2px); border-color: rgba(107,36,232,.3); }
.product__thumb.is-active {
  opacity: 1; border-color: var(--purple);
  box-shadow: 0 0 0 2px var(--purple), 0 4px 12px rgba(107,36,232,.2);
}
.product__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ----------------------------------------------------------- Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100005;
  background: rgba(12, 10, 24, 0.94); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4); opacity: 0; pointer-events: none;
  transition: opacity .24s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__close {
  position: absolute; top: var(--sp-4); right: var(--sp-4); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); color: #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 1.25rem; transition: all .16s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }
.lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); color: #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 1.5rem; transition: all .16s ease;
}
.lightbox__arrow:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.1); }
.lightbox__arrow--prev { left: var(--sp-4); }
.lightbox__arrow--next { right: var(--sp-4); }
.lightbox__content {
  max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
}
.lightbox__img {
  max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0,0,0,.5); transition: transform .2s ease, opacity .2s ease;
  user-select: none;
}
.lightbox__info {
  margin-top: var(--sp-3); display: flex; align-items: center; gap: var(--sp-3);
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 600;
}
.lightbox__counter {
  background: rgba(255,255,255,.12); padding: .2rem .65rem; border-radius: var(--r-pill);
  font-feature-settings: "tnum";
}

.product__cat {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--card-accent); margin-bottom: var(--sp-3);
}
.product__title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: var(--sp-3); }
.product__teaser { font-size: 1.02rem; color: var(--ink-soft); }

.pricebox {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-5); margin: var(--sp-6) 0;
}
.pricebox__main { display: grid; gap: .1rem; margin-bottom: var(--sp-4); }
.pricebox__label { font-size: .82rem; font-weight: 600; color: var(--ink-mute); }
.pricebox__value { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1.1; color: var(--card-accent); }
.pricebox__list { list-style: none; padding: 0; margin: 0 0 var(--sp-3); }
.pricebox__list li { display: flex; justify-content: space-between; gap: var(--sp-4); padding: .5rem 0; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-soft); }
.pricebox__list strong { color: var(--ink); }
.pricebox__hint { font-size: .76rem; color: var(--ink-mute); margin: 0; }

.product__actions { display: grid; gap: var(--sp-3); }
.product__contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.product__detail { display: grid; gap: var(--sp-8); align-items: start; }
.product__content .section__title:first-child { margin-top: 0; }
.product__content .section__title { margin-top: var(--sp-10); }
.notebox {
  display: flex; gap: var(--sp-3); background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--yellow); border-radius: var(--r); padding: var(--sp-5);
}
.notebox > .bi { color: var(--orange); font-size: 1.15rem; flex: 0 0 auto; margin-top: .15rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.checklist li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.checklist__icon { color: var(--green); flex: 0 0 auto; margin-top: .18rem; }

.product__specs {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-5); position: sticky; top: calc(var(--header-h) + var(--sp-4));
}
.specs { margin: 0 0 var(--sp-5); }
.specs > div { display: flex; justify-content: space-between; gap: var(--sp-4); padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
.specs > div:last-child { border-bottom: none; }
.specs dt { color: var(--ink-mute); font-size: .88rem; }
.specs dd { margin: 0; font-weight: 700; font-size: .9rem; text-align: right; }

/* ------------------------------------------------------ Karten/Panels */

.panel-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-6); }
.panel-card + .panel-card { margin-top: var(--gap); }
.panel-card--tint { background: var(--surface-2); }
.panel-card__title { font-size: 1.1rem; margin-bottom: var(--sp-4); }
.panel-card__note { font-size: .84rem; color: var(--ink-mute); margin: var(--sp-4) 0 0; }

.infolist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.infolist li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .93rem; }
.infolist strong { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-mute); font-weight: 700; }
.infolist__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--surface-3); color: var(--purple); flex: 0 0 auto; }

.paper { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3.5vw, 2.5rem); }
.paper__updated { display: flex; align-items: center; gap: var(--sp-2); font-size: .8rem; color: var(--ink-mute); margin: var(--sp-8) 0 0; padding-top: var(--sp-4); border-top: 1px solid var(--line-soft); }

/* ------------------------------------------------ Vollflächige Seiteninhalte */
.page-section--full { width: 100%; max-width: 100%; padding-inline: 0; }
.page-content--full {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  box-sizing: border-box;
}
.page-content--full .rte--full { width: 100%; max-width: 100%; }
.page-content--full .rte--full > * { max-width: 100%; }
.page-content__updated {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: .82rem; color: var(--ink-mute);
  margin: var(--sp-8) 0 0; padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
}

/* Callout-Boxen & Akkordeons */
.callout {
  padding: 1.25rem 1.5rem; border-radius: var(--r); margin: 1.5rem 0;
  border-left: 4px solid var(--purple); background: var(--surface-2);
}
.callout--info { border-left-color: #0284c7; background: #f0f9ff; }
.callout--success { border-left-color: var(--green); background: #f0fdf4; }
.callout--warning { border-left-color: #d97706; background: #fffbeb; }

.rte table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.rte th, .rte td { border: 1px solid var(--line); padding: .75rem 1rem; text-align: left; }
.rte th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
.rte details { border: 1px solid var(--line); border-radius: var(--r); padding: .75rem 1.25rem; margin: 1rem 0; background: var(--surface-2); }
.rte summary { font-weight: 700; cursor: pointer; color: var(--ink); font-family: var(--font-display); }

.message-card {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(1.75rem, 5vw, 3rem);
  max-width: 640px; margin-inline: auto;
}
.message-card--success { border-color: var(--green); }
.message-card__icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto var(--sp-4);
  border-radius: 50%; background: var(--surface-3); color: var(--purple); font-size: 1.6rem;
}
.message-card--success .message-card__icon { background: #E4F8EE; color: var(--green); }
.message-card h1 { font-size: clamp(1.4rem, 3.6vw, 2rem); }
.message-card p { color: var(--ink-soft); }
.message-card__meta { font-size: .92rem; }
.message-card__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-6); }

/* ---------------------------------------------------------- Formulare */

.contact { display: grid; gap: var(--sp-8); align-items: start; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); }
.form__hp { position: absolute; left: -9999px; }
.form__step { border: none; padding: 0; margin: 0 0 var(--sp-8); }
.form__step:last-of-type { margin-bottom: var(--sp-5); }
.form__step legend {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); font-weight: 700; font-size: 1.12rem;
  margin-bottom: var(--sp-4); padding: 0; width: 100%;
}
.form__step-num {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: var(--r-pill);
  background: var(--brand); color: #fff; font-size: .92rem; flex: 0 0 auto;
}
.form__row { display: grid; gap: 0 var(--sp-4); }

.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-weight: 700; font-size: .87rem; margin-bottom: var(--sp-2); }
.field__opt { font-weight: 400; color: var(--ink-mute); }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field input[type=date], .field textarea, .field select {
  width: 100%; padding: .7rem var(--sp-4); min-height: 46px;
  border-radius: var(--r); border: 1px solid var(--line);
  font: inherit; background: var(--surface-2); color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--purple); background: var(--surface); outline: none;
  box-shadow: 0 0 0 3px rgba(107,36,232,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-size: .82rem; color: var(--ink-mute); margin: 0 0 var(--sp-4); }
.field__error { color: #C2185B; font-size: .82rem; font-weight: 700; margin: var(--sp-2) 0 0; }
.has-error input, .has-error textarea, .has-error select { border-color: #F08BAB; background: #FFF6F9; }

.field--check { display: flex; align-items: center; min-height: 40px; margin-bottom: var(--sp-4); }

.check, .field .check, .field label.check {
  display: flex; gap: var(--sp-3); align-items: center; cursor: pointer;
  font-weight: 400; font-size: .92rem; margin-bottom: 0; color: var(--ink-soft);
}
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px; margin-top: 0;
  border: 2px solid var(--line); background: #fff; position: relative; transition: all .16s ease;
}
.check__box::after {
  content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(.4); opacity: 0;
  transition: all .16s ease;
}
.check input:checked + .check__box { background: var(--brand); border-color: transparent; }
.check input:checked + .check__box::after { opacity: 1; transform: rotate(45deg) scale(1); }
.check input:focus-visible + .check__box { outline: 3px solid var(--purple); outline-offset: 2px; }

.form__note { font-size: .8rem; color: var(--ink-mute); text-align: center; margin: var(--sp-4) 0 0; }

.alert { display: flex; gap: var(--sp-3); border-radius: var(--r); padding: var(--sp-4); margin-bottom: var(--sp-6); font-size: .92rem; }
.alert--error { background: #FFF1F5; border: 1px solid #F6C2D5; color: #96143F; }
.alert .bi { flex: 0 0 auto; margin-top: .15rem; }

/* ------------------------------------------------------ Produkt-Picker */

.picker { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface-2); overflow: hidden; }
.picker__head { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; padding: var(--sp-4); border-bottom: 1px solid var(--line); background: var(--surface); }
.picker__search {
  flex: 1 1 200px; min-width: 0; display: flex; align-items: center; gap: var(--sp-2);
  height: 40px; padding: 0 var(--sp-3);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill);
}
.picker__search:focus-within { border-color: var(--purple); }
.picker__search .bi { color: var(--ink-mute); }
.picker__search input { flex: 1; min-width: 0; border: none; background: none; font: inherit; outline: none; }
.picker__status { margin: 0; font-size: .85rem; font-weight: 700; color: var(--ink-mute); flex: 0 0 auto; }
.picker__status.is-filled { color: var(--purple); }

.picker__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: var(--sp-3) var(--sp-4); background: var(--surface); border-bottom: 1px solid var(--line); }
.picker__chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--surface-3); color: var(--ink); font-weight: 700; font-size: .82rem;
  padding: .25rem .35rem .25rem .7rem; border-radius: var(--r-pill);
}
.picker__chip button {
  display: grid; place-items: center; width: 20px; height: 20px; border: none; border-radius: 50%;
  background: rgba(31,24,56,.1); color: var(--ink); cursor: pointer; font-size: .7rem; line-height: 1;
}
.picker__chip button:hover { background: var(--pink); color: #fff; }

.picker__list { max-height: 380px; overflow-y: auto; padding: var(--sp-2) var(--sp-3) var(--sp-3); }
.picker__group-title {
  position: sticky; top: -8px; z-index: 1;
  margin: 0; padding: var(--sp-3) var(--sp-1) var(--sp-2);
  font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-mute); background: var(--surface-2);
}
.pick { display: block; margin-bottom: var(--sp-2); }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick__box {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-2); border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line); cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.pick__img { width: 76px; height: 43px; object-fit: cover; border-radius: var(--r-sm); flex: 0 0 auto; }
.pick__info { min-width: 0; flex: 1; }
.pick__name { display: block; font-weight: 700; font-size: .92rem; line-height: 1.3; }
.pick__meta { display: block; font-size: .78rem; color: var(--ink-mute); }
.pick__state {
  display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto;
  border-radius: 50%; border: 2px solid var(--line); color: transparent; font-size: .8rem;
  transition: all .16s ease;
}
.pick:hover .pick__box { border-color: var(--purple); }
.pick input:checked + .pick__box { border-color: var(--purple); box-shadow: 0 0 0 2px rgba(107,36,232,.16); }
.pick input:checked + .pick__box .pick__state { background: var(--purple); border-color: var(--purple); color: #fff; }
.pick input:focus-visible + .pick__box { outline: 3px solid var(--purple); outline-offset: 2px; }
.picker__noresult { font-size: .9rem; color: var(--ink-mute); text-align: center; padding: var(--sp-6); margin: 0; }

/* -------------------------------------------------------------- Flash */

.flash { padding: var(--sp-3) 0; font-weight: 700; font-size: .93rem; }
.flash--success { background: #E4F8EE; color: #0A6B3D; }
.flash--error   { background: #FFF1F5; color: #96143F; }
.flash--info    { background: #EDF3FF; color: #1B4FA0; }

/* ------------------------------------------------------------- Footer */

.footer {
  position: relative; margin-top: auto;
  background: linear-gradient(165deg, #241A48 0%, #3C1A66 60%, #55145C 100%);
  color: rgba(255,255,255,.78);
  padding-top: calc(var(--sp-12) + var(--wave-h));
  -webkit-mask-image: linear-gradient(#000, #000), var(--wave-top);
  -webkit-mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  -webkit-mask-position: bottom left, top left;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: linear-gradient(#000, #000), var(--wave-top);
  mask-size: 100% calc(100% - var(--wave-h) + 2px), 100% calc(var(--wave-h) + 1px);
  mask-position: bottom left, top left;
  mask-repeat: no-repeat, no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-4);
  padding-bottom: var(--sp-10);
}
.footer__col--brand {
  flex: 0 0 100%;
  width: 100%;
}
.footer__col--contact {
  flex: 0 0 100%;
  width: 100%;
}
.footer__col--katalog {
  flex: 0 0 calc(50% - var(--sp-2));
  width: calc(50% - var(--sp-2));
}
.footer__col--service {
  flex: 0 0 calc(50% - var(--sp-2));
  width: calc(50% - var(--sp-2));
}
.footer__col--delivery {
  flex: 0 0 100%;
  width: 100%;
}
.footer__head { font-size: 1rem; color: #fff; margin-bottom: var(--sp-4); }
.footer__logo {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: var(--sp-4);
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer__claim { font-family: var(--font-display); font-size: 1.05rem; color: var(--yellow); margin-bottom: var(--sp-2); }
.footer__text { font-size: .9rem; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); font-size: .9rem; }
.footer__list--contact a { display: inline-flex; align-items: center; gap: var(--sp-2); }
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: var(--yellow); }
.footer__address { font-style: normal; margin-bottom: var(--sp-4); font-size: .9rem; }
.footer__address strong { color: #fff; }
.footer__note { font-size: .84rem; margin: var(--sp-5) 0 0; color: rgba(255,255,255,.65); }
.footer__note strong { color: rgba(255,255,255,.9); }

.socials { list-style: none; padding: 0; margin: var(--sp-5) 0 0; display: flex; gap: var(--sp-2); }
.socials__link {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.05rem;
  transition: all .18s ease;
}
.socials__link:hover { transform: translateY(-3px); color: #fff; }
.socials__link--facebook:hover  { background: #1877F2; }
.socials__link--instagram:hover { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); }
.socials__link--tiktok:hover    { background: #000; }
.socials__link--youtube:hover   { background: #FF0000; }
.socials__link--whatsapp:hover  { background: #25D366; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: var(--sp-5) 0 calc(var(--sp-16) + env(safe-area-inset-bottom)); font-size: .82rem; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: var(--sp-2); align-items: center; text-align: center; }
.footer__bottom p { margin: 0; }
.footer__bottom a { display: inline-flex; align-items: center; gap: var(--sp-2); }

/* --------------------------------------------- Mobiles Menü / FAB */

.mnav { position: fixed; inset: 0; pointer-events: none; z-index: 90; }
.mnav__list li:last-child { display: none!important; }

.fab {
  pointer-events: auto;
  position: fixed; left: 50%; bottom: calc(1.1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: grid; place-items: center;
  width: 56px; height: 56px; border: 2px solid white; border-radius: 50%;
  background: var(--brand); color: #fff; cursor: pointer; font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(107,36,232,.4);
  transition: transform .22s cubic-bezier(.34,1.4,.64,1), box-shadow .22s ease;
}
.fab:hover { transform: translateX(-50%) scale(1.05); }
.fab:active { transform: translateX(-50%) scale(.95); }
.fab__icon { position: absolute; transition: opacity .18s ease, transform .22s ease; }
.fab__icon--close { opacity: 0; transform: rotate(-90deg) scale(.6); font-size: 1.15rem; }
.mnav.is-open .fab__icon--open { opacity: 0; transform: rotate(90deg) scale(.6); }
.mnav.is-open .fab__icon--close { opacity: 1; transform: none; }

.mnav__scrim { pointer-events: auto; position: fixed; inset: 0; background: rgba(31,24,56,.5); backdrop-filter: blur(2px); opacity: 0; transition: opacity .26s ease; }
.mnav.is-open .mnav__scrim { opacity: 1; }

.mnav__card {
  pointer-events: auto;
  position: fixed; left: 50%; bottom: calc(5.4rem + env(safe-area-inset-bottom));
  transform: translate(-50%, 16px);
  width: min(92vw, 400px); max-height: 72vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-3);
  opacity: 0; transition: opacity .24s ease, transform .26s cubic-bezier(.34,1.4,.64,1);
}
.mnav.is-open .mnav__card { opacity: 1; transform: translate(-50%, 0); }
.mnav__handle { width: 40px; height: 4px; border-radius: var(--r-pill); background: var(--line); margin: 0 auto var(--sp-4); }
.mnav__list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: grid; gap: var(--sp-1); }
.mnav__item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: .7rem var(--sp-3); border-radius: var(--r);
  color: var(--ink); font-weight: 700; font-size: .95rem;
  transition: background .16s ease, color .16s ease;
}
.mnav__item:hover { background: var(--surface-2); text-decoration: none; }
.mnav__item.is-active { background: var(--surface-3); color: var(--purple); }
.mnav__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--surface-2); color: var(--purple); flex: 0 0 auto; }
.mnav__item.is-active .mnav__icon { background: var(--purple); color: #fff; }
.mnav__label { flex: 1; }
.mnav__chev { color: var(--ink-mute); font-size: .8rem; }
.mnav__quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); margin-top: var(--sp-3); }
.mnav__quick-item {
  display: grid; justify-items: center; gap: .2rem;
  padding: var(--sp-3) var(--sp-1); border-radius: var(--r);
  background: var(--surface-2); color: var(--ink-soft);
  font-size: .74rem; font-weight: 700;
}
.mnav__quick-item .bi { font-size: 1.1rem; color: var(--purple); }
.mnav__quick-item:hover { background: var(--surface-3); text-decoration: none; }

.to-top {
  position: fixed; right: var(--sp-4); bottom: calc(1.1rem + env(safe-area-inset-bottom)); z-index: 80;
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--purple); box-shadow: 0 4px 16px rgba(31, 24, 56, 0.12); font-size: 1.4rem;
  opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(0.85);
  transition: opacity .24s ease, transform .24s cubic-bezier(.34, 1.4, .64, 1), box-shadow .2s ease;
}
.to-top.is-visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.to-top:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 8px 24px rgba(107, 36, 232, 0.2); }
.to-top:active { transform: translateY(0) scale(.95); }
.to-top[hidden] { display: none !important; }

/* ------------------------------------------------ Contact Context Popup */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
}
.contact-popup[hidden] {
  display: none !important;
}
.contact-popup__scrim {
  pointer-events: auto;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 14, 40, .48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .22s ease;
}
.contact-popup.is-open .contact-popup__scrim {
  opacity: 1;
}
.contact-popup__card {
  pointer-events: auto;
  position: fixed;
  top: calc(var(--header-h) + 6px);
  right: max(var(--sp-3), env(safe-area-inset-right));
  width: min(calc(100vw - 1.5rem), 340px);
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(31, 24, 56, .22), 0 2px 8px rgba(31, 24, 56, .06);
  padding: var(--sp-4);
  transform-origin: top right;
  transform: translateY(-8px) scale(0.95);
  opacity: 0;
  transition: transform .24s cubic-bezier(.34, 1.35, .64, 1), opacity .2s ease;
}
.contact-popup.is-open .contact-popup__card {
  transform: none;
  opacity: 1;
}
.contact-popup__card::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.contact-popup__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--line-soft);
}
.contact-popup__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2px;
}
.contact-popup__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.contact-popup__close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: none;
  background: var(--surface-2);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: .85rem;
  flex: 0 0 auto;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.contact-popup__close:hover {
  background: var(--surface-3);
  color: var(--ink);
  transform: scale(1.08);
}

.contact-popup__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-2);
}
.contact-popup__option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: .65rem .75rem;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background .16s ease, transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  -webkit-tap-highlight-color: transparent;
}
.contact-popup__option:hover {
  background: var(--surface-3);
  border-color: rgba(107, 36, 232, .14);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(31, 24, 56, .06);
}
.contact-popup__option:active {
  transform: scale(.98);
}

.contact-popup__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex: 0 0 auto;
  font-size: 1.2rem;
  transition: transform .18s ease;
}
.contact-popup__option:hover .contact-popup__icon {
  transform: scale(1.08);
}
.contact-popup__icon--wa {
  background: #E6F8EF;
  color: #1FAF62;
}
.contact-popup__icon--phone {
  background: var(--surface-3);
  color: var(--purple);
}
.contact-popup__icon--email {
  background: #FCE8F3;
  color: var(--pink);
}
.contact-popup__icon--form {
  background: #FFF4E6;
  color: var(--orange);
}

.contact-popup__info {
  min-width: 0;
  flex: 1 1 auto;
}
.contact-popup__label-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.contact-popup__label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.2;
  color: var(--ink);
}
.contact-popup__badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .15rem .45rem;
  border-radius: var(--r-pill);
  background: #1FAF62;
  color: #fff;
  line-height: 1;
}
.contact-popup__sub {
  display: block;
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-popup__arrow {
  color: var(--ink-mute);
  font-size: .8rem;
  margin-left: auto;
  flex: 0 0 auto;
  transition: transform .16s ease, color .16s ease;
}
.contact-popup__option:hover .contact-popup__arrow {
  transform: translateX(2px);
  color: var(--purple);
}

.contact-popup__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line-soft);
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink-mute);
}
.contact-popup__foot .bi {
  color: var(--green);
  font-size: .85em;
}

@media (min-width: 1024px) {
  .contact-popup {
    display: none !important;
  }
}

/* --------------------------------------------------------- Cookie-Bar */

.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; padding: var(--sp-3); }
.cookie-bar__inner {
  display: grid; gap: var(--sp-3); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-3);
  max-width: 940px; margin-inline: auto;
}
.cookie-bar__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--surface-3); color: var(--purple); font-size: 1.1rem; }
.cookie-bar p { margin: 0; font-size: .86rem; color: var(--ink-soft); }
.cookie-bar__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* ---------------------------------------------------------- Animation */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.2,.64,1); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.is-visible { opacity: 1; transform: none; height: 100%; min-height: 240px;}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__bg-slide { transform: none !important; }
}

/* Produktbild mobil im Container mit Begrenzung (nicht randlos) */
@media (max-width: 899px) {
  .product__gallery {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: var(--sp-6);
  }
  .product__thumbs {
    justify-content: center;
    padding: 4px 2px;
  }
  .product__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .product__arrow--prev { left: var(--sp-2); }
  .product__arrow--next { right: var(--sp-2); }
}

/* --------------------------------------------------------- Responsive */

@media (min-width: 600px) {
  .hero__caption { display: inline-flex; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .form__row--zip { grid-template-columns: 130px 1fr; }
  .form { padding: var(--sp-8); }
  .cookie-bar__inner { grid-template-columns: auto 1fr auto; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__grid {
    display: flex; flex-wrap: wrap; gap: var(--sp-8);
  }
  .footer__col--brand { flex: 0 0 100%; }
  .footer__col--contact { flex: 0 0 100%; }
  .footer__col--katalog { flex: 0 0 calc(50% - var(--sp-4)); }
  .footer__col--service { flex: 0 0 calc(50% - var(--sp-4)); }
  .footer__col--delivery { flex: 0 0 100%; width: 100%; }
  .filters__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .picker__list { max-height: 420px; }
  .slider {
    --slide-w: calc((100% - 1 * var(--gap)) / 2);
  }
  .slider__item { scroll-snap-align: start; }
}

@media (min-width: 900px) {
  .features { grid-template-columns: repeat(4, 1fr); }
  .text-split { grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
  .text-split--reverse .text-split__media { order: 2; }
  .product__grid { grid-template-columns: 1.1fr .9fr; gap: var(--sp-8)!important; }
  .product__gallery { position: sticky; top: calc(var(--header-total) + var(--sp-4)); }
  .product__detail { grid-template-columns: minmax(0, 1.6fr) minmax(0, .8fr); gap: var(--sp-10); }
  .contact { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .footer__grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-8);
  }
  .footer__col--brand,
  .footer__col--contact,
  .footer__col--katalog,
  .footer__col--service {
    flex: initial; grid-column: auto; width: auto;
  }
  .footer__col--delivery {
    grid-column: 1 / -1; width: 100%; margin-top: calc(var(--sp-4) * -1);
    padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer__bottom { padding-bottom: var(--sp-5); }
  .cta { grid-template-columns: 1.35fr .65fr; align-items: center; }
  .filters__panel { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 800px) {
  .slider {
    --slide-w: calc((100% - 2 * var(--gap)) / 3);
  }
  .slider__item { scroll-snap-align: start; }
}

@media (min-width: 1024px) {
  .brand { margin-right: auto; margin-left: 0; justify-content: flex-start; }
  .nav { display: block; }
  .header__cta { display: flex; }
  .mnav { display: none; }
  .to-top { bottom: var(--sp-6); width: 56px; height: 56px; }
  .filters__toggle { display: none; }
  .filters__panel { display: grid; }
  .slider {
    --slide-w: calc((100% - 3 * var(--gap)) / 4);
  }
  .slider__item { scroll-snap-align: start; }
}

/* -------------------------------------------------------- Seiteninhalt */
.rte--page {
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --------------------------------- Google-Bewertungen Randlos-Laufband */
.reviews-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: var(--sp-12);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(123,47,247,0.03) 50%, var(--surface) 100%);
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: var(--sp-3);
}
.reviews-stars-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  color: #f59e0b;
  font-size: 1.85rem;
  margin: var(--sp-2) 0 var(--sp-3);
}
.reviews-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding-block: var(--sp-4) var(--sp-6);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.reviews-marquee__track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
  align-items: start;
}
.reviews-marquee__track:hover {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 330px;
  flex: 0 0 330px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: 0 4px 14px rgba(31,24,56,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(123,47,247,0.12);
  border-color: rgba(123,47,247,0.3);
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.2;
}
.review-card__verified {
  font-size: 0.76rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 3px;

  display: none;
}
.review-card__google {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.95rem;
}
.review-card__text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  text-align: left;
}
.review-card__date {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin: 0;
  text-align: left;
}

/* ------------------------------------------------------- FAQ Akkordeon */
.faq-wrap {
  max-width: 860px;
  margin-inline: auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-card:hover {
  border-color: rgba(107, 36, 232, 0.35);
}
.faq-card[open] {
  border-color: var(--purple);
  box-shadow: 0 4px 18px rgba(123,47,247,0.08);
}
.faq-card__summary {
  padding: 1.1rem 1.4rem;
  min-height: 58px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  list-style: none;
  user-select: none;
  color: var(--ink);
  transition: background 0.16s ease;
}
.faq-card__summary::-webkit-details-marker { display: none; }
.faq-card__summary::marker { display: none; content: ""; }

.faq-card__title {
  flex: 1 1 auto;
  line-height: 1.4;
}

.faq-card__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(31, 24, 56, 0.05);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.faq-card__icon i {
  display: inline-flex;
  vertical-align: 0;
  line-height: 1;
  margin: 0;
}
.faq-card__summary:hover .faq-card__icon {
  background: var(--surface-3);
  color: var(--purple);
  transform: scale(1.06);
}
.faq-card[open] .faq-card__icon {
  transform: rotate(180deg);
  background: var(--purple);
  color: #fff;
  box-shadow: 0 2px 8px rgba(107, 36, 232, 0.3);
}
.faq-card[open] .faq-card__summary:hover .faq-card__icon {
  transform: rotate(180deg) scale(1.06);
}

@media (min-width: 768px) {
  .faq-card__summary {
    padding: 1.25rem 1.6rem;
    min-height: 66px;
    font-size: 1.1rem;
  }
  .faq-card__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 1.1rem;
  }
}
.faq-card__body {
  padding: 0 1.4rem 1.3rem 1.4rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
  border-top: 1px solid var(--line-soft);
  margin-top: -0.2rem;
  padding-top: 1rem;
}
