/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

main {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
  margin-bottom: 15px;
}

a {
  color: #78B41B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  main {
    padding: 15px;
  }

  .logo {
    width: 100px; /* Reduce logo size for small screens */
  }

  h1 {
    font-size: 1.5em; /* Reduce heading size */
  }

  p {
    font-size: 1em; /* Reduce paragraph size */
  }
}
/* EQX
dark green = rgb(0, 104, 56)
light green = rgb(0, 255, 68)
white = rgb(255, 255, 255)
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
}


h1{
  color: #006838; /*dark green*/
}

input[type="submit"] {
  background-color: #006838 ; /*dark green*/
}

input[type="submit"]:hover {
  background-color: #00482d; /*darker green*/
}

.photo-upload-label {
  background-color: #00ff43;
}

.photo-upload-label:hover {
  background-color: #006838 ; /*dark green*/
}

footer a {
  color: #006838; /*dark green*/
}

.flash-close-btn {
  background-color: #00ff43;
  color: black;
}

.flash-close-btn:hover {
  background-color: #006838;
}
/* ══════════════════════════════════════════════════════════════
   formulare.css — Formular-spezifische Styles
   Gilt für alle Stand-Alone-Formulare (Formular-*.html)
   Layout-Shell wird von .form-page* (inuvet.css) übernommen
   ══════════════════════════════════════════════════════════════ */

/* ─── Language Switch: Logo bleibt zentriert, Select absolut rechts ─── */
.form-page__header { position: relative; }

.form-lang-switch {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--fg-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.form-lang-switch:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

/* ─── reCAPTCHA Platzhalter (alle Formulare) ─── */
.form-captcha {
  border: 1px solid var(--border-light);
  padding: calc(var(--base) * 0.75) var(--base);
  display: flex;
  align-items: center;
  gap: var(--base);
  margin-bottom: var(--half-module);
  max-width: calc(var(--module) * 10);
}

.form-captcha__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.form-captcha__label {
  font-size: var(--text-base);
  color: var(--fg);
  flex: 1;
}

.form-captcha__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.form-captcha__brand-logo {
  font-size: var(--text-m);
  line-height: 1;
}

.form-captcha__brand-name {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════
   STAND-ALONE FORMULAR LAYOUT (form-page)
   ══════════════════════════════════════════════════════════════ */

/* ─── Seitenhintergrund + Zentrierung ─── */
.form-page {
  min-height: 100vh;
  background: var(--accent-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--half-module) var(--base) var(--module);
}

/* ─── Weißer Card-Container ─── */
.form-page__card {
  background: var(--bg);
  width: 100%;
  max-width: 640px;
  padding: var(--half-module) var(--module) calc(var(--module) * 1.5);
}

@media (max-width: 480px) {
  .form-page__card { padding: var(--half-module) var(--half-module) var(--module); }
}

/* ─── Header — Logo zentriert ─── */
.form-page__header {
  display: flex;
  justify-content: center;
  padding-bottom: var(--half-module);
  margin-bottom: var(--module);
  border-bottom: 1px solid var(--border-light);
}

.form-page__header svg,
.form-page__header img {
  height: calc(var(--module) * 1.75);
  width: auto;
  display: block;
}

/* ─── Seiten-Titel (H1) ─── */
.form-page__title {
  font-size: var(--text-l);
  font-weight: 700;
  color: var(--fg);
  line-height: var(--lh-h2);
  margin-bottom: var(--module);
}

/* ─── Datenschutzhinweis ─── */
.form-page__privacy {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  margin-top: var(--half-module);
  line-height: var(--lh-base);
}

/* ─── Rechtlicher Footer (Impressum) ─── */
.form-page__footer {
  width: 100%;
  max-width: 640px;
  margin-top: var(--half-module);
  font-size: var(--text-xs);
  color: var(--fg-muted);
  line-height: var(--lh-base);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   REKLAMATIONSFORMULAR (Formular-Reklamation)
   ══════════════════════════════════════════════════════════════ */

/* ─── form-grid Abstand nach unten ─── */
#reklamationForm .form-grid {
  margin-bottom: var(--half-module);
}

/* ─── Checkbox group ─── */
.rk-check-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 0.5);
  margin-bottom: var(--half-module);
}

/* ══════════════════════════════════════════════════════════════
   MELDEFORMULAR UNERWÜNSCHTE WIRKUNGEN (Formular-Nebenwirkungen-TB + TA)
   ══════════════════════════════════════════════════════════════ */

/* ─── Intro-Block ─── */
.nw-intro {
  font-size: var(--text-base);
  color: var(--fg);
  line-height: var(--lh-base);
  margin-bottom: var(--module);
}

.nw-intro p { margin-bottom: calc(var(--base) * 0.75); }
.nw-intro p:last-child { margin-bottom: 0; }

/* ─── Pflichtfeld-Hinweis ─── */
.nw-pflicht {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  margin-top: calc(var(--base) * 0.75);
}

/* ─── Hilfetext unter einem Formularfeld ─── */
.nw-hint {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  line-height: var(--lh-base);
  margin-top: 0;
  margin-bottom: 0;
}
/* Nur standalone Hints (direkte Kinder des Forms) brauchen unteren Abstand */
#nebenwirkungenForm > .nw-hint,
#nebenwirkungenTAForm > .nw-hint { margin-bottom: var(--half-module); }

/* ─── Gruppen-Label für Radio-Felder (kein Floating Label) ─── */
.nw-group-label {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin-bottom: calc(var(--base) * 0.5);
  display: block;
}

* + .nw-group-label { margin-top: var(--half-module); }

/* ─── Radio-Gitter 2×2 für Geschlecht ─── */
.nw-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--base) * 0.5);
  margin-bottom: var(--half-module);
}

/* ─── Radio-Zeile für Ja / Nein ─── */
.nw-radio-row {
  display: flex;
  gap: var(--module);
  margin-bottom: var(--half-module);
}

/* ─── Grid: kein Stretch, damit Labels vertikal zentriert bleiben ─── */
#nebenwirkungenForm .form-grid,
#nebenwirkungenTAForm .form-grid { align-items: start; }

/* ─── Hint direkt unter dem Feld — form-field margin-bottom überschreiben ─── */
.form-field:has(+ .nw-hint) { margin-bottom: calc(var(--base) * 0.35); }

/* ══════════════════════════════════════════════════════════════
   MELDEFORMULAR TIERARZTPRAXIS (Formular-Nebenwirkungen-TA)
   ══════════════════════════════════════════════════════════════ */

/* ─── Vertikale Radio-Gruppe ─── */
.ta-radio-col {
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 0.5);
  margin-bottom: var(--half-module);
}

/* ─── Sonstige-Option mit Inline-Textfeld ─── */
.ta-rolle-other { align-items: center; flex-wrap: nowrap; }

.ta-rolle-other__input {
  flex: 1;
  min-width: 0;
  height: 1.5rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--fg);
  padding: 0 calc(var(--base) * 0.25);
  transition: border-color var(--anim-fast);
}

.ta-rolle-other__input:focus {
  outline: none;
  border-bottom-color: var(--fg);
}
/* Ibedex
dark green = rgb(0, 151, 94)
white = rgb(255, 255, 255)
*/
/* Manukalind
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  font-family: "Poppins";
  font-weight:600;
  font-style: normal;
}

h1{
  color: #00975e; /*dark green*/
}

input[type="submit"] {
  background-color: #00975e ; /*dark green*/
}

input[type="submit"]:hover {
  background-color: #007c4d; /*darker green*/
}

.photo-upload-label {
  background-color: #e9f4f0;
}

.photo-upload-label:hover {
  background-color: #00975e ; /*dark green*/
}

footer a {
  color: #00975e; /*dark green*/
}

.flash-close-btn {
  background-color: #00975e;
}

.flash-close-btn:hover {
  background-color: #e9f4f0;
}
/* Inuvet
dark green = rgb(0, 104, 56)
light green = rgb(0, 255, 68)
white = rgb(255, 255, 255)

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body{
  font-family: "Noto Sans";
}
*/

@import url('https://use.typekit.net/vhh5bbc.css');

body {
  font-family: 'schnebel-sans-me', sans-serif !important;
}
.logo{
  margin-left: -17.5px;
}

.flash-close-btn {
  background-color: #e0eec9;
}

.flash-close-btn:hover {
  background-color: #78b41c;
}
/* ═══════════════════════════════════════════
   inuvet Design System
   Tokens · Komponenten · Layout
   Verwendung: alle Seiten (Theme + Dokumentation)
   ═══════════════════════════════════════════ */
  :root {
    --base: 1rem;
    --module: clamp(1.5rem, 1rem + 2.7vw, 3rem);
    --half-module: clamp(0.75rem, 0.5rem + 1.35vw, 1.5rem);

    --gutter: var(--module);
    --margin: var(--module);
    --section-gap: var(--module);

    --text-xs: 0.667rem;
    --text-sm: 0.8rem;
    --text-base: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --text-m: clamp(1.25rem, 1rem + 0.7vw, 1.5rem);
    --text-l: clamp(1.5rem, 1rem + 1.7vw, 2.25rem);
    --text-xl: clamp(2rem, 1rem + 3.2vw, 3.375rem);

    --lh-base: 1.5;                       /* Body: Faktor 1.5 */
    --lh-h3: 1.2;                         /* H3: Kompakt für Headlines */
    --lh-h2: 1.17;                        /* H2: Faktor 1.17 */
    --lh-h1: 1.11;                        /* H1: Faktor 1.11 */

    --fg: #2E2E2E;
    --fg-hover: #333;
    --fg-muted: #666;
    --bg: #fff;
    --border: #cccccc;       /* Linien: sichtbare Trennung (Nav, Karten, Tabellen) */
    --border-light: #e0e0e0; /* Linien: dezente Gliederung (Rules, Rows, Dashed) */
    --accent-bg: #f2f2f2;    /* Flächen: neutrale Hintergründe (Boxen, Placeholder) — bewusst ≠ --border-light */
    --cross-color: var(--border);

    /* ─── Semantische Border-Tokens ─── */
    --border-focus:  var(--fg);
    --border-active: var(--fg-hover); /* #333 — weicher als --fg, klar sichtbar */

    /* ─── Focus-Ring ─── */
    --focus-ring-width:  2px;
    --focus-ring-offset: 2px;
    --focus-ring-color:  var(--green);

    /* ─── Farben (Primitives) ─── */
    --green: #78b41b;
    --green-hover: #58990F;
    --green-light: #f0fae6;

    /* ─── Semantische Farb-Aliases ─── */
    /* Neuer Code soll diese Namen nutzen. --green bleibt für Bestand. */
    --color-action:  var(--green);       /* Primäre CTAs, Buttons */
    --color-action-hover: var(--green-hover);
    --color-success: var(--green);       /* Erfolgs-Feedback, Häkchen, Checkouts */
    --color-link:    var(--green);       /* Fließtext-Links */
    --color-amber:      #E8A020;  /* Warmer Akzent: Sterne, Testimonials, Gutscheinkarten */
    --color-notice-bg:  #FEFFDA;  /* Infobox-Hintergrund (Notice) */

    /* ─── Produkt-Kategoriefarben ─── */
    --cat-cbd: #C5B4E3;
    --cat-cbd-light: #f2eff9;
    --cat-bauchspeichel: #FFB1BB;
    --cat-bauchspeichel-light: #ffeff2;
    --cat-blase: #F3DD6D;
    --cat-blase-light: #fdf8e3;
    --cat-niere: #C3623A;
    --cat-niere-light: #f8ece8;
    --cat-herz: #FF6D6A;
    --cat-herz-light: #ffeceb;
    --cat-leber: #DDBCB0;
    --cat-leber-light: #f8f2f0;
    --cat-beruhigung: #C3D7EE;
    --cat-beruhigung-light: #ecf2fa;
    --cat-gelenke: #D0D3D4;
    --cat-gelenke-light: #f1f2f2;
    --cat-magendarm: #D4EC8E;
    --cat-magendarm-light: #f0fae6;
    --cat-fettsaeuren: #05868E;
    --cat-fettsaeuren-light: #e5f0f1;
    --cat-haut: #F1A7DC;
    --cat-haut-light: #fcedf7;
    --cat-immun: #a7e6d7;
    --cat-immun-light: #e5f7f3;
    --cat-atemwege: #FFB990;
    --cat-atemwege-light: #fff1e9;
    --cat-hormone: #994878;
    --cat-hormone-light: #f4e9ef;

    --module-2xl: calc(var(--module) * 2);

    --icon-box-sm: calc(var(--base) * 2.5);
    --icon-box-md: calc(var(--base) * 2.75);

    --announcement-height: var(--module);
    --nav-height: calc(var(--module) * 2.5);
    --header-height: calc(var(--module) * 3.5);  /* announcement + nav */
    --page-pt: var(--module);                    /* Atemraum unter sticky Header zum ersten Content-Element */
    --section-max-height: 51rem;
    --section-min-height: 24rem;

    --font: "schnebel-sans-me", sans-serif;

    /* ─── Animation ─── */
    --anim-fast: 0.2s ease;
    --anim-mid:  0.3s ease;
    --anim-base: 0.4s ease;
    --anim-slow: 0.6s ease;
    --anim-announcement: 4s;  /* Anzeigedauer pro Announcement-Item */
    --anim-delay: 0ms;        /* Per-Element Verzögerung für gestaffelte Animationen */

    /* ─── Z-Index ─── */
    --z-default:  1;
    --z-nav:    100;
    --z-dropdown: 110;
    --z-overlay: 200;
    --z-drawer:  210;
    --z-modal:   220;

    /* ─── Fehlerfarben ─── */
    --color-error: #c00;
    --color-error-bg: #c0392b;

    /* ─── Overlay-Farben ─── */
    --color-overlay-dark:  rgba(0, 0, 0, 0.4);
    --color-overlay-light: rgba(255, 255, 255, 0.6);

    /* ─── Layout ─── */
    --container-max: 1536px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
  }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: var(--lh-base);
  }

  /* Mobile-Menu offen → Hintergrund-Scroll sperren */
  body:has(.mobile-menu.--open) { overflow: hidden; }

  /* ─── Links & Listen (Fließtext) ─── */
  a:not([class]) {
    color: var(--green);
    text-decoration: none;
    transition: color var(--anim-fast);
  }
  a:not([class]):hover {
    color: var(--green-hover);
    text-decoration: underline;
  }

  ul:not([class]), ol:not([class]) {
    padding-left: calc(var(--base) * 1.5);
    margin-bottom: var(--half-module);
  }
  ul:not([class]) li, ol:not([class]) li {
    margin-bottom: calc(var(--base) * 0.25);
    line-height: var(--lh-base);
  }

  /* ─── Rich Text Editor (CMS Content) ─── */
  .rte p, .rte ul, .rte ol { margin-bottom: var(--half-module); }
  .rte h2, .rte h3, .rte h4 { margin-top: var(--module); margin-bottom: var(--half-module); line-height: 1.2; }
  .rte ul, .rte ol { padding-left: calc(var(--base) * 1.5); }
  .rte li { margin-bottom: calc(var(--base) * 0.25); }
  .rte > *:first-child { margin-top: 0; }
  .rte > *:last-child { margin-bottom: 0; }
  .rte blockquote { margin: var(--module) 0; padding-left: var(--half-module); border-left: 2px solid var(--green); font-size: var(--text-m); font-style: italic; }
  .rte figure { margin: var(--module) 0; }
  .rte figure img { width: 100%; height: auto; display: block; border: 1px solid var(--border-light); }
  .rte figcaption { font-size: var(--text-xs); color: var(--fg-muted); margin-top: calc(var(--base) * 0.5); }
  .rte pre { background: var(--accent-bg); border: 1px solid var(--border-light); border-left: 3px solid var(--green); padding: var(--half-module); margin-bottom: var(--half-module); overflow-x: auto; }
  .rte pre code { font-family: 'Courier New', monospace; font-size: var(--text-xs); line-height: 1.6; color: var(--fg); background: none; }
  .rte h3 { font-size: var(--text-base); font-weight: 700; }
  .rte table { width: 100%; border-collapse: collapse; margin-bottom: var(--half-module); display: block; overflow-x: auto; }
  .rte table th, .rte table td { text-align: left; padding: calc(var(--base) * 0.4) calc(var(--base) * 0.75) calc(var(--base) * 0.4) 0; border-bottom: 1px solid var(--border-light); font-size: var(--text-base); vertical-align: top; }
  .rte table th { font-weight: 700; border-bottom-color: var(--border); }
  .rte table tr:last-child td { border-bottom: none; }

  /* ═══════════════════════════════════════════
     ANNOUNCEMENT BAR + NAVIGATION
     ═══════════════════════════════════════════ */

  /* ─── Announcement Bar ─── */
  .announcement-bar {
    position: sticky;
    top: 0;
    z-index: calc(var(--z-nav) + 1);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    background: var(--green-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    transition: height var(--anim-mid), border-color var(--anim-mid);
  }
  .announcement-bar.--closed { height: 0; border-bottom-color: transparent; }
  .announcement-bar__item {
    position: absolute;
    opacity: 0;
    animation-name: annBarFade;
    animation-duration: calc(var(--anim-announcement) * 4);
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }
  .announcement-bar__item:nth-child(1) { animation-delay: 0s; }
  .announcement-bar__item:nth-child(2) { animation-delay: var(--anim-announcement); }
  .announcement-bar__item:nth-child(3) { animation-delay: calc(var(--anim-announcement) * 2); }
  .announcement-bar__item:nth-child(4) { animation-delay: calc(var(--anim-announcement) * 3); }
  @keyframes annBarFade {
    0%, 100% { opacity: 0; }
    2%, 23%  { opacity: 1; }
    25%      { opacity: 0; }
  }
  .announcement-bar .btn.--icon {
    position: absolute;
    right: var(--half-module);
    top: 50%;
    transform: translateY(-50%);
  }

  /* ─── Navigation ─── */
  .site-nav {
    position: sticky;
    top: var(--announcement-height);
    z-index: var(--z-nav);
    height: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--margin);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .nav-left > a,
  .nav-item__trigger {
    font-size: var(--text-base);
    color: var(--fg-muted);
    text-decoration: none;
    transition: color var(--anim-fast);
    white-space: nowrap;
  }
  .nav-left > a:hover,
  .nav-item__trigger:hover,
  .nav-item:hover .nav-item__trigger,
  .nav-item:focus-within .nav-item__trigger { color: var(--fg); }

  .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-center img { width: clamp(3.5rem, 2rem + 5vw, 6rem); height: auto; display: block; }

  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--half-module);
  }

  /* ─── Icon mit Badge (Atom) ─── */
  .icon-badged { position: relative; display: inline-flex; align-items: center; justify-content: center; }
  .icon-badged .badge.--count { position: absolute; top: calc(var(--base) * -0.25); right: calc(var(--base) * -0.25); transition: transform var(--anim-fast); }
  .icon-badged:hover .badge.--count { transform: scale(1.2); }

  /* ─── Badge (Atom) ─── */
  .badge {
    display: inline-flex;
    align-items: center;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: calc(var(--base) * 0.25) calc(var(--base) * 0.5);
    border-radius: 0;
    pointer-events: none;
    background: var(--accent-bg);
    color: var(--fg);
  }
  .badge.--dark  { background: var(--fg);    color: var(--bg); }
  .badge.--sale  { background: var(--green); color: var(--bg); }
  .badge.--pill  { background: var(--green); color: var(--bg); border-radius: 2em; padding: 0.15em 0.6em; }
  .badge.--free  { background: var(--green-light); color: var(--green); }
  /* Counter-Badge — Positionierung via .icon-badged .badge.--count */
  .badge.--count {
    text-transform: none;
    letter-spacing: 0;
    justify-content: center;
    min-width: calc(var(--base) * 0.875);
    height: calc(var(--base) * 0.875);
    padding: 0 calc(var(--base) * 0.2);
    font-size: calc(var(--base) * 0.5);
    line-height: calc(var(--base) * 0.875);
    border-radius: calc(var(--base) * 0.5);  /* Pill — funktioniert auch bei 2+ Ziffern */
    background: var(--green);
    color: var(--bg);
  }

  /* circle-badge — runder Indikator (22x22 px), Zahl oder Icon */
  .circle-badge {
    width: calc(var(--base) * 1.375);
    height: calc(var(--base) * 1.375);
    border-radius: 50%; /* Ausnahme: circle-badge */
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: none;
  }
  .circle-badge.--num {
    font-size: var(--text-xs);
    font-weight: 700;
    line-height: 1;
  }
  .circle-badge.--check .material-icons {
    font-size: calc(var(--base) * 0.8125); /* 13px */
    line-height: 1;
  }


  /* ─── Nav dropdown (Sektionen) ─── */
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-item__trigger {
    display: flex;
    align-items: center;
    gap: 0.2em;
    cursor: default;
  }
  .nav-item__trigger .material-icons {
    font-size: 1rem;
    transition: transform var(--anim-fast);
    color: var(--fg-muted);
  }
  .nav-item:hover .nav-item__trigger .material-icons,
  .nav-item:focus-within .nav-item__trigger .material-icons { transform: rotate(180deg); color: var(--fg); }

  .nav-item__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(4px);
    min-width: 14rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-top: 2px solid var(--fg);
    padding: var(--half-module) 0;
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-fast), visibility var(--anim-fast), transform var(--anim-fast);
  }
  .nav-item:hover .nav-item__dropdown,
  .nav-item:focus-within .nav-item__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* Anderes Item wird gehovered → fokussiertes Dropdown schließen */
  .nav-left:has(.nav-item:hover) .nav-item:not(:hover) .nav-item__dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
  }
  .nav-item__dropdown a {
    display: block;
    padding: 0.375rem var(--half-module);
    font-size: var(--text-base);
    color: var(--fg-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-fast), background var(--anim-fast);
  }
  .nav-item__dropdown a:hover { color: var(--fg); background: var(--accent-bg); }

  /* Mobile: dropdown komplett ausblenden — mobile-menu übernimmt */
  @media (max-width: 767px) {
    .nav-item__dropdown { display: none; }
  }

  /* ─── Hamburger ─── */
  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    width: var(--half-module);
    height: var(--half-module);
    flex-direction: column;
    gap: calc(var(--base) * 0.25);
  }
  .nav-hamburger span {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--fg);
    transition: transform var(--anim-fast), opacity var(--anim-fast);
  }
  .nav-hamburger.--open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-hamburger.--open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.--open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  /* ─── Fullscreen Nav Menu ─── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--announcement-height) + var(--nav-height));
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: calc(var(--z-nav) - 1);
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }

  /* Mobile: einspaltig */
  @media (max-width: 767px) {
    .site-nav { padding: 0 var(--half-module); }
    .nav-left a { display: none; }          /* Links weg, nur Hamburger */
    .mobile-menu.--open { display: flex; flex-direction: column; padding: var(--module); gap: 0.5rem; }
    .mobile-menu .nav-col { display: contents; }
    .mobile-menu a {
      font-size: var(--text-base);
      color: var(--fg);
      text-decoration: none;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .mobile-menu a:not(.--indent) { font-weight: 700; margin-top: 0.5rem; }
    .mobile-menu a:not(.--indent):first-child { margin-top: 0; }
    .mobile-menu a.--indent { padding-left: var(--half-module); color: var(--fg-muted); }
  }

  /* Desktop: mehrspaltig */
  @media (min-width: 768px) {
    .nav-hamburger { display: none; }       /* Hamburger weg, nur Links */
    .mobile-menu.--open {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: var(--gutter);
      align-items: start;
      padding: var(--module) var(--margin);
    }
    .mobile-menu .nav-col { display: flex; flex-direction: column; gap: 0.25rem; }
    .mobile-menu a {
      font-size: var(--text-base);
      color: var(--fg);
      text-decoration: none;
      padding: 0.25rem 0;
    }
    .mobile-menu a:not(.--indent) {
      font-weight: 700;
      margin-top: var(--half-module);
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-light);
    }
    .mobile-menu a:not(.--indent):first-child { margin-top: 0; }
    .mobile-menu a.--indent { color: var(--fg-muted); }
  }

  /* ─── Page ─── Standard-Content-Container
     padding-top via --page-pt: gibt Atemraum zum sticky Header.
     Pages mit Hero-Section liegen außerhalb von .page (siehe Bundle.html). */
  .page { max-width: var(--container-max); margin: 0 auto; padding: var(--page-pt) var(--margin) var(--margin); }

  /* ─── Container-Breiten-Modifier ───
     Drei standardisierte Lese-Breiten für unterschiedliche Inhaltsdichten:
     Standard (1536px), --narrow (Lese-Content, 720px), --form (Eingabe-Formulare, 480px).
     Ersetzt ad-hoc max-width-Werte in Page-CSS-Dateien. */
  .page.--narrow { max-width: calc(var(--module) * 15); }   /* ≈ 720px — Lese-Content */
  .page.--form   { max-width: calc(var(--module) * 10); }   /* ≈ 480px — Formulare */

  /* Modifier: Pages, die direkt nach einer .section-type-Hero starten und keinen
     Atemraum brauchen (Hero hat die volle Breite und ist edge-to-edge). */
  .page.--no-pt { padding-top: 0; }

  /* ─── Header ─── */
  .header {
    padding-bottom: var(--module);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--section-gap);
  }
  .label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-muted);
    margin-bottom: var(--half-module);
  }
  h1 { font-size: var(--text-xl); font-weight: 700; line-height: var(--lh-h1); letter-spacing: -0.02em; margin-bottom: var(--half-module); }
  h2 { font-size: var(--text-l); font-weight: 700; line-height: var(--lh-h2); margin-bottom: var(--half-module); }
  h3 { font-size: var(--text-m); font-weight: 700; line-height: var(--lh-h3); margin-bottom: var(--half-module); }
  h4 { font-size: var(--text-base); font-weight: 700; line-height: var(--lh-base); margin-bottom: var(--half-module); }
  /* Visuelle Überschriften-Klassen für Demo-Zwecke (kein semantisches Gewicht) */
  .h1 { font-size: var(--text-xl); font-weight: 700; line-height: var(--lh-h1); letter-spacing: -0.02em; }
  .h2 { font-size: var(--text-l); font-weight: 700; line-height: var(--lh-h2); }
  code { font-family: monospace; font-size: 0.85em; }
  /* ─── Text Utilities ─── */
  .text-xs   { font-size: var(--text-xs); }
  .text-m    { font-size: var(--text-m); }
  .text-muted { color: var(--fg-muted); }
  .link { color: var(--fg-muted); text-decoration: none; transition: color var(--anim-fast); } /* Sekundärer/gedämpfter Link */
  .link:hover { color: var(--green-hover); }
  /* ═══════════════════════════════════════════
     SECTION TYPES
     ═══════════════════════════════════════════ */

  /* ─── Section Base ─── */
  .section-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: var(--section-min-height);
  }
  /* Alle Section-Types außer --v3 + --v4 (Vollbild-Hintergrund): Satzspiegel + Abstand oben */
  .section-type:not(.--v3):not(.--v4) {
    margin-top: var(--module);
  }
  .section-type.--viewport {
    height: calc(100dvh - var(--header-height));
    max-height: var(--section-max-height);
  }
  .section-type.--reverse { direction: rtl; }
  .section-type.--reverse > * { direction: ltr; }

  /* ─── Section Image ─── */
  /* .section-type__image — nutzt .placeholder-bg */
  .section-type__image {
    background-position: center center;
    background-size: cover;
  }

  /* ─── Section CTA (generische Buttongruppe in Section-Content) ─── */
  .section-type__cta {
    display: flex;
    gap: var(--half-module);
    flex-wrap: wrap;
    margin-top: var(--module);
  }

  /* ─── Section Animation (Lottie) ─── */
  .section-type__animation { align-self: center; }
  .section-type__animation lottie-player { width: 100%; display: block; }

  /* Wenn Animation statt Bild: Content vertikal zentriert, volle Spaltenbreite */
  .section-type:has(.section-type__animation) .section-type__content {
    justify-content: center;
    gap: var(--half-module);
    margin-block: auto;  /* vertikal zentriert, kein horizontales Einrücken */
  }
  .section-type:has(.section-type__animation) .section-type__bottom {
    margin-top: 0;
  }

  /* ─── Section Content ─── */
  .section-type__content {
    display: flex;
    flex-direction: column;
  }

  /* Variante 1: kein Hintergrund, H1, Inhalt vertikal zentriert */
  .section-type.--v1 { gap: var(--gutter); max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: var(--margin); padding-right: var(--margin); }
  .section-type.--v1 .section-type__image {
    overflow: hidden;
    animation: heroPanIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v1 .section-type__content {
    justify-content: center;
    gap: 0;
  }
  .section-type.--v1 .section-type__content > * {
    animation: heroFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v1 .section-type__content > *:nth-child(1) { animation-delay: 0.10s; }
  .section-type.--v1 .section-type__content > *:nth-child(2) { animation-delay: 0.25s; }
  .section-type.--v1 .section-type__content > *:nth-child(3) { animation-delay: 0.40s; }
  .section-type.--v1 .section-type__headline {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: var(--lh-h1);
    letter-spacing: -0.02em;
  }
  .section-type.--v1 .section-type__body {
    color: var(--fg-muted);
    line-height: var(--lh-base);
    margin-bottom: var(--half-module);
  }

  /* Variante 2: Content-Box mit Hintergrund, H2, kein Gap, Padding 3rem, Inhalt vertikal zentriert */
  .section-type.--v2 { gap: 0; max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: var(--margin); padding-right: var(--margin); }
  .section-type.--v2 .section-type__image {
    overflow: hidden;
    animation: heroPanIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v2 .section-type__content {
    background: var(--green-light);
    padding: var(--module);
    justify-content: center;
    gap: 0;
  }
  .section-type.--v2 .section-type__content > * {
    animation: heroFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v2 .section-type__content > *:nth-child(1) { animation-delay: 0.10s; }
  .section-type.--v2 .section-type__content > *:nth-child(2) { animation-delay: 0.25s; }
  .section-type.--v2 .section-type__content > *:nth-child(3) { animation-delay: 0.40s; }
  .section-type.--v2 .section-type__headline {
    font-size: var(--text-l);
    font-weight: 700;
    line-height: var(--lh-h2);
  }
  .section-type.--v2 .section-type__body {
    color: var(--fg-muted);
    line-height: var(--lh-base);
    margin-bottom: var(--half-module);
  }

  /* ─── Hero-Animations ─── */
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(1.5rem); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroPanIn {
    from { transform: scale(1.05); }
    to   { transform: scale(1); }
  }

  /* Variante 3: Viewport-Breite, Hintergrundbild, Content-Box mit BG überlagert */
  .section-type.--v3 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .section-type.--v3 .section-type__image {
    position: absolute;
    inset: 0;
    z-index: var(--z-default);
    animation: heroPanIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v3 .section-type__inner {
    position: relative;
    z-index: var(--z-default);
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 var(--margin);
  }
  .section-type.--v3 .section-type__content {
    grid-column: 2;
    background: var(--green-light);
    padding: var(--module);
    align-self: center;
    margin: var(--module) 0;
  }
  .section-type.--v3.--reverse .section-type__content {
    grid-column: 1;
    grid-row: 1;
  }
  .section-type.--v3 .section-type__headline {
    font-size: var(--text-l);
    font-weight: 700;
    line-height: var(--lh-h2);
  }
  .section-type.--v3 .section-type__body {
    color: var(--fg-muted);
    line-height: var(--lh-base);
  }
  /* Staggered entrance for content children */
  .section-type.--v3 .section-type__content > * {
    animation: heroFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v3 .section-type__content > *:nth-child(1) { animation-delay: 0.10s; }
  .section-type.--v3 .section-type__content > *:nth-child(2) { animation-delay: 0.25s; }
  .section-type.--v3 .section-type__content > *:nth-child(3) { animation-delay: 0.40s; }
  .section-type.--v3 .section-type__content > *:nth-child(4) { animation-delay: 0.55s; }
  /* ─── Flow-Spacing: kontextsensitiver Rhythmus in section-type__content ─── */
  /* Browser-Default-Margins auf direkten Kindern zurücksetzen */
  .section-type.--v1 .section-type__content > *,
  .section-type.--v2 .section-type__content > *,
  .section-type.--v3 .section-type__content > * { margin-bottom: 0; }

  .section-type.--v1 .section-type__content > * + *,
  .section-type.--v2 .section-type__content > * + *,
  .section-type.--v3 .section-type__content > * + * {
    margin-top: var(--flow-space, var(--base));
  }
  /* Headline → Body: nah */
  .section-type.--v1 .section-type__content > .section-type__headline + *,
  .section-type.--v2 .section-type__content > .section-type__headline + *,
  .section-type.--v3 .section-type__content > .section-type__headline + * {
    --flow-space: var(--base);
  }
  /* Body → CTA (--v3, direkte Kinder): etwas Luft */
  .section-type.--v3 .section-type__content > .section-type__body + * {
    --flow-space: var(--half-module);
  }

  /* Reduced motion: skip animations */
  @media (prefers-reduced-motion: reduce) {
    .section-type.--v1 .section-type__image,
    .section-type.--v1 .section-type__content > *,
    .section-type.--v2 .section-type__image,
    .section-type.--v2 .section-type__content > *,
    .section-type.--v3 .section-type__image,
    .section-type.--v3 .section-type__content > * {
      animation: none;
    }
  }

  /* ─── Variante 4: Vollbild-Hintergrund, Text direkt auf Bild ─── */
  .section-type.--v4 {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }
  /* Dunkles Overlay für Lesbarkeit */
  .section-type.--v4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.22);
    z-index: 1;
  }
  .section-type.--v4 .section-type__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    animation: heroPanIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v4 .section-type__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: var(--module) var(--margin);
    max-width: 44rem;
    text-shadow: 0 1px 14px rgba(0,0,0,0.4);
  }
  .section-type.--v4 .section-type__headline {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: var(--lh-h1);
    color: #fff;
    margin-bottom: 0;
  }
  .section-type.--v4 .section-type__body {
    font-size: var(--text-base);
    line-height: var(--lh-base);
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
  }
  /* Buttons auf Bild/farbigem Hintergrund */
  .section-type.--v3 .section-type__content .btn.--ghost { border: none; }
  .section-type.--v4 .section-type__content .btn         { text-shadow: none; }
  .section-type.--v4 .section-type__content .btn.--ghost { color: #fff; border: none; }
  .section-type--v4__cta {
    display: flex;
    gap: var(--half-module);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--base);
  }
  @media (max-width: 767px) {
    .section-type--v4__cta { flex-direction: column; align-items: center; }
  }
  /* Staggered entrance */
  .section-type.--v4 .section-type__content > * {
    animation: heroFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .section-type.--v4 .section-type__content > *:nth-child(1) { animation-delay: 0.10s; }
  .section-type.--v4 .section-type__content > *:nth-child(2) { animation-delay: 0.25s; }
  .section-type.--v4 .section-type__content > *:nth-child(3) { animation-delay: 0.40s; }
  .section-type.--v4 .section-type__content > *:nth-child(4) { animation-delay: 0.55s; }
  /* Mobile: volle Höhe abzgl. Header, Text oben – Buttons unten */
  @media (max-width: 767px) {
    .section-type.--v4 {
      min-height: calc(100dvh - var(--header-height));
      align-items: stretch;
    }
    .section-type.--v4 .section-type__content {
      flex: 1;
      justify-content: flex-start;
      padding-top: calc(var(--module) * 2);
    }
    .section-type--v4__cta {
      margin-top: auto;
      padding-bottom: var(--module);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .section-type.--v4 .section-type__image,
    .section-type.--v4 .section-type__content > * { animation: none; }
  }

  /* ═══════════════════════════════════════════
     TILE GRIDS
     ═══════════════════════════════════════════ */

  /* ─── Grid Container ─── */
  .tile-grid {
    display: grid;
    gap: var(--gutter);
  }
  .tile-grid.--cols-2 { grid-template-columns: 1fr 1fr; }
  .tile-grid.--cols-3 { grid-template-columns: 1fr 1fr 1fr; }
  .tile-grid.--cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

  /* ─── Tile Grid — Boxed (Infoboxen für Landing-Pages) ─── */
  .tile-grid.--boxed > .tile {
    border: 1px solid var(--border-light);
    padding: var(--half-module);
  }

  /* ─── Tile Base ─── */
  .tile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .tile__headline-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--half-module);
  }
  .tile__headline {
    font-size: var(--text-base);
    font-weight: 700;
    line-height: var(--lh-base);
    margin-bottom: 0;
  }
  .tile__body {
    font-size: var(--text-base);
    color: var(--fg-muted);
    line-height: var(--lh-base);
  }

  /* ─── Tile Variante A: Icon + Text ─── */
  /* .tile__icon — nutzt .icon-box + .placeholder-bg */
  .tile__icon { margin-bottom: calc(var(--base) * 0.5); }

  /* ─── Tile Variante B: Bild + Text ─── */
  /* .tile__image — nutzt .placeholder-bg */
  .tile__image { position: relative; overflow: hidden; }
  .tile__image.--square { aspect-ratio: 1 / 1; }
  .tile__image.--landscape { aspect-ratio: 4 / 3; }
  .tile__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--anim-mid); }
  .tile__image:hover img:nth-child(1) { transform: scale(1.05); }

  /* ─── Produkt-Rollover ─── */
  /* Zweites img = Rollover-Bild, absolut überlagert, auf Hover sichtbar */
  .tile__image img:nth-child(2),
  .product-thumb img:nth-child(2) {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--anim-base);
  }
  .tile__image:hover img:nth-child(2),
  .product-thumb:hover img:nth-child(2) {
    opacity: 1;
  }

  /* ─── Tile Variante C: Sonderkachel (Content-Box mit Hintergrund) ─── */
  .tile.--featured {
    background: var(--green-light);
    padding: var(--half-module);
    justify-content: space-between;
  }
  .tile.--featured .tile__headline {
    font-size: var(--text-m);
    line-height: var(--lh-h3);
  }
  .tile.--featured .tile__bottom {
    margin-top: auto;
  }
  .tile.--featured .tile__body {
    color: var(--fg-muted);
    margin-bottom: var(--half-module);
  }
  /* ─── Tile Variante D: Produktkarte ─── */
  .tile.--product {
    position: relative;
    cursor: pointer;
  }
  .tile.--product .tile__image-wrap {
    position: relative;
    overflow: hidden;
  }
  .tile.--product .tile__image {
    aspect-ratio: 1 / 1;
  }
  .tile.--product .tile__cart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--anim-mid), opacity var(--anim-fast);
  }
  .tile.--product .tile__cart .btn {
    width: 100%;
    text-align: center;
  }
  .tile.--product:hover .tile__cart {
    transform: translateY(0);
    opacity: 1;
  }
  /* Mobile cart icon */
  /* .tile__cart-icon — Größe entspricht .icon-box.--sm; display:none verhindert direkte Nutzung der Klasse */
  .tile.--product .tile__cart-icon {
    display: none;
    position: absolute;
    top: calc(var(--base) * 0.75);
    right: calc(var(--base) * 0.75);
    width: var(--icon-box-sm);
    height: var(--icon-box-sm);
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 0;
    align-items: center;
    justify-content: center;
    z-index: var(--z-default);
    cursor: pointer;
    transition: background var(--anim-fast);
  }
  .tile.--product .tile__cart-icon .material-icons {
    font-size: calc(var(--base) * 1.25);
  }
  .tile.--product .tile__cart-icon:hover {
    background: var(--fg);
  }
  .tile.--product .tile__cart-icon:hover .material-icons {
    color: var(--bg);
  }
  @media (max-width: 767px) {
    /* Cart-Overlay auf Mobile immer sichtbar (kein Hover nötig) */
    .tile.--product .tile__cart      { transform: translateY(0); opacity: 1; }
    .tile.--product .tile__cart-icon { display: none; }
  }
  .tile__description {
    font-size: var(--text-sm);
    color: var(--fg-muted);
    line-height: var(--lh-base);
  }
  .tile__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* ─── Floating Meta (Badge-Container oben links) ─── */
  .floating-meta {
    position: absolute;
    top: calc(var(--base) * 0.75);
    left: calc(var(--base) * 0.75);
    z-index: var(--z-default);
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
  }

  /* ═══════════════════════════════════════════
     ACCORDION
     ═══════════════════════════════════════════ */

  .accordion {
    border-top: 1px solid var(--border-light);
  }
  .accordion-item {
    border-bottom: 1px solid var(--border-light);
  }
  .accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--half-module) 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    line-height: var(--lh-base);
    color: var(--fg);
    cursor: pointer;
    text-align: left;
  }
  .accordion-trigger:hover { color: var(--fg-muted); }
  .accordion-icon {
    font-size: calc(var(--base) * 1.25);
    transition: transform var(--anim-fast);
    flex-shrink: 0;
    margin-left: var(--half-module);
  }
  .accordion-item.--open .accordion-icon {
    transform: rotate(180deg);
  }
  .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--anim-base);
  }
  .accordion-item.--open .accordion-content {
    grid-template-rows: 1fr;
  }
  .accordion-content__inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom var(--anim-base);
  }
  .accordion-item.--open .accordion-content__inner {
    padding-bottom: var(--half-module);
  }
  .accordion-content p {
    color: var(--fg-muted);
    font-size: var(--text-base);
    line-height: var(--lh-base);
  }

  /* ═══════════════════════════════════════════
     TABS
     ═══════════════════════════════════════════ */

  .tabs { display: flex; gap: var(--module); border-bottom: 1px solid var(--border); padding-bottom: 0; margin-bottom: var(--module); }
  .tab-nav { display: flex; gap: var(--module); box-shadow: inset 0 -1px 0 var(--border-light); margin-bottom: var(--module); overflow-x: auto; scrollbar-width: none; }
  .tab-nav::-webkit-scrollbar { display: none; }
  .tab-btn { font-family: var(--font); font-size: var(--text-base); font-weight: 700; color: var(--fg-muted); background: none; border: none; border-bottom: 1px solid transparent; padding: 0 0 var(--half-module) 0; margin-bottom: -1px; cursor: pointer; transition: color var(--anim-fast), border-color var(--anim-fast); white-space: nowrap; }
  .tab-btn:hover { color: var(--fg); border-color: var(--border); }
  .tab-btn.--active { color: var(--fg); border-color: var(--border-active); }
  .tab-panel { display: none; }
  .tab-panel.--active { display: block; animation: fadeIn var(--anim-base); }

  /* ═══════════════════════════════════════════
     BUTTONS
     ═══════════════════════════════════════════ */

  .btn {
    display: inline-block;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    line-height: 1;
    padding: 1.125rem var(--half-module);
    width: fit-content;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--anim-fast), color var(--anim-fast), border-color var(--anim-fast);
    text-decoration: none;
  }

  /* Primary — schwarz gefüllt */
  .btn.--primary {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
  }
  .btn.--primary:hover {
    background: var(--fg);
    border-color: var(--fg);
    box-shadow: 0 0 0 2px var(--fg);
  }

  /* Secondary — Outline */
  .btn.--secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--fg);
    border-color: var(--fg);
  }
  .btn.--secondary:hover {
    background: var(--fg);
    color: var(--bg);
    box-shadow: 0 0 0 2px var(--fg);
  }

  /* Ghost — kein Rand, nur Text */
  .btn.--ghost {
    background: transparent;
    color: var(--fg);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .btn.--ghost::after {
    content: ' →';
    transition: margin-left var(--anim-fast);
    margin-left: 0.25rem;
  }
  .btn.--ghost:hover::after {
    margin-left: 0.5rem;
  }
  .btn.--ghost.--back::after  { content: none; }
  .btn.--ghost.--back::before {
    content: '←';
    transition: margin-right var(--anim-fast);
    margin-right: 0.25rem;
  }
  .btn.--ghost.--back:hover::before { margin-right: 0.5rem; }
  .btn.--full { width: 100%; text-align: center; }
  .btn.--sm { font-size: var(--text-sm); height: calc(var(--base) * 2); padding-top: 0; padding-bottom: 0; display: inline-flex; align-items: center; justify-content: center; }
  .btn:disabled, .btn[disabled], .btn.--disabled { opacity: 0.35; pointer-events: none; cursor: not-allowed; }
  .btn.--danger { color: var(--color-error); }

  /* Ghost-Button: Mobile Touch-Target
     Auf Desktop ist padding 0 gewollt (Text bündig mit Layout).
     Auf Mobile würde das die Tap-Fläche auf Textbreite reduzieren — zu schmal.
     Lösung: Padding wiederherstellen + visuell durch negativen margin-left kompensieren,
     sodass der Text optisch bündig bleibt, der Finger aber genug Fläche findet. */
  @media (max-width: 767px) {
    .btn.--ghost {
      padding-left:  calc(var(--base) * 0.75);
      padding-right: calc(var(--base) * 0.75);
      margin-left:   calc(var(--base) * -0.75);
    }
  }

  /* ═══════════════════════════════════════════
     GLOBALE MOLEKÜLE
     ═══════════════════════════════════════════ */

  /* ─── Rating ─── */
  .rating { display: flex; align-items: center; gap: 0.25rem; font-size: var(--text-sm); color: var(--fg); }
  .rating .material-icons { font-size: 1rem; color: var(--color-amber); }
  .rating .material-icons.--empty { color: var(--border-light); }

  /* ─── Price Stack ─── */
  .price-stack { display: flex; align-items: baseline; gap: 0.5rem; font-size: var(--text-base); font-weight: 700; line-height: var(--lh-base); }
  .price-stack .--old { font-weight: 400; color: var(--fg-muted); text-decoration: line-through; }

  /* ─── Empty State ─── */
  .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--half-module); padding: var(--module); color: var(--fg-muted); text-align: center; max-width: 28rem; margin-left: auto; margin-right: auto; }
  .empty-state .material-icons { font-size: var(--module); color: var(--border-light); }
  .empty-state p { font-size: var(--text-base); }

  /* ─── Success-State — globale Komponente für Erfolgs-Bestätigungen
     Einsetzbar inline auf einer Page, in einem Modal, in einem Drawer.
     Schwester-Komponente zu .empty-state, aber positiv konnotiert. ─── */
  .success-state { display: flex; flex-direction: column; align-items: center; gap: var(--half-module); padding: var(--module) 0; text-align: center; }
  .success-state__icon { font-size: calc(var(--base) * 2.5); color: var(--green); }
  .success-state__title { font-size: var(--text-m); font-weight: 700; line-height: var(--lh-h3); margin: 0; }
  .success-state__body { color: var(--fg-muted); line-height: var(--lh-base); max-width: 28rem; margin: 0; }
  .success-state__actions { display: flex; flex-direction: column; align-items: center; gap: calc(var(--half-module) / 2); }

  /* ─── Shipping Hint ─── */
  .shipping-hint { font-size: var(--text-xs); color: var(--fg-muted); display: flex; align-items: center; gap: calc(var(--base) * 0.25); }
  .shipping-hint .material-icons { font-size: var(--base); }

  /* ─── Pagination ─── */
  .pagination { display: flex; justify-content: center; align-items: center; gap: calc(var(--base) * 0.25); margin-top: var(--module-2xl); }
  .pagination__page, .pagination__btn { display: flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; font-size: var(--text-base); color: var(--fg); text-decoration: none; border: 1px solid transparent; transition: border-color var(--anim-fast); cursor: pointer; }
  .pagination__page:hover, .pagination__btn:hover { border-color: var(--border-light); }
  .pagination__page.--current { font-weight: 700; border-color: var(--border-active); }
  .pagination__page.--current:hover { border-color: var(--border-active); }
  .pagination__dots { color: var(--fg-muted); padding: 0 0.5rem; }

  /* ─── Breadcrumb ─── */
  .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; font-size: var(--text-xs); color: var(--fg-muted); margin-bottom: var(--module); }
  .breadcrumb__item { display: flex; align-items: center; gap: 0.25rem; }
  .breadcrumb__item a { color: var(--fg-muted); text-decoration: none; transition: color var(--anim-fast); }
  .breadcrumb__item a:hover { color: var(--fg); }
  .breadcrumb__sep { color: var(--border); }
  .breadcrumb__item .--current { color: var(--fg); font-weight: 700; }

  /* ─── Toast / Notification ─── */
  .toast-container { position: fixed; bottom: var(--module); right: var(--module); z-index: calc(var(--z-modal) + 10); display: flex; flex-direction: column; gap: calc(var(--base) * 0.5); pointer-events: none; }
  .toast { display: flex; align-items: flex-start; gap: calc(var(--base) * 0.5); padding: calc(var(--base) * 0.75) var(--base); background: var(--fg); color: var(--bg); font-size: var(--text-base); max-width: 20rem; pointer-events: all; animation: toastIn var(--anim-mid); transition: opacity var(--anim-fast), transform var(--anim-fast); }
  .toast .material-icons { font-size: var(--base); flex-shrink: 0; margin-top: 0.1rem; }
  .toast.--success { background: var(--green); }
  .toast.--error { background: var(--color-error-bg); }
  .toast.--info { background: var(--fg-muted); }
  .toast.--out { opacity: 0; transform: translateX(0.75rem); }

/* ─── Infobox / Hinweis ─── */
.notice {
  background: var(--color-notice-bg);
  padding: var(--half-module);
  display: flex;
  flex-direction: column;
  gap: calc(var(--base) * 0.35);
}
.notice p        { margin: 0; font-size: var(--text-base); line-height: var(--lh-base); }
.notice__title   { font-weight: 700; font-size: var(--text-base); margin: 0; }
.notice__actions { margin-top: var(--half-module); display: flex; gap: var(--half-module); flex-wrap: wrap; }

  /* ═══════════════════════════════════════════
     FORMS
     ═══════════════════════════════════════════ */

  /* ─── Form field wrapper ─── */
  .form-field {
    position: relative;
    margin-bottom: var(--half-module);
  }

  /* ─── Input / Textarea base ─── */
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: var(--lh-base);
    color: var(--fg);
    background: var(--bg);
    border: 1px solid var(--border-light);
    padding: calc(var(--base) * 1.25) calc(var(--base) * 0.75) calc(var(--base) * 0.5);
    width: 100%;
    min-width: 0;
    outline: none;
    transition: border-color var(--anim-fast), background var(--anim-fast);
  }
  .form-field input,
  .form-field textarea { background: var(--green-light); }
  .form-field textarea {
    display: block; /* inline-block-Default erzeugt Descender-Gap am Feldende */
    resize: vertical;
    min-height: 8rem;
  }
  .form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  /* ─── Global focus ring ─── */
  :focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
  }

  /* ─── Focus state ─── */
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--border-focus);
  }
  .form-field input:focus,
  .form-field input:not(:placeholder-shown),
  .form-field textarea:focus,
  .form-field textarea:not(:placeholder-shown) { background: var(--bg); }
  /* Setzt den globalen :focus-visible durch höhere Spezifität wieder ein,
     da der Base-Selektor (.form-field input) outline:none mit (0,1,1) überschreibt. */
  .form-field input:focus-visible,
  .form-field textarea:focus-visible,
  .form-field select:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
  }

  /* ─── Floating label ─── */
  .form-field label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--fg-muted);
    pointer-events: none;
    transition: all var(--anim-fast);
    background: transparent;
    padding: 0 0.25rem;
  }
  .form-field textarea ~ label {
    top: 1.25rem;
    transform: none;
  }

  /* ─── Label floated state (focus or filled) ─── */
  .form-field input:focus ~ label,
  .form-field input:not(:placeholder-shown) ~ label,
  .form-field textarea:focus ~ label,
  .form-field textarea:not(:placeholder-shown) ~ label,
  .form-field select:focus ~ label,
  .form-field select:valid ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: var(--text-xs);
    color: var(--fg);
    background: var(--bg);
  }

  /* ─── Date-Input: native Breite/Spinner entfernen, Date-Picker bleibt erhalten ─── */
  .form-field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    /* Höhe explizit: padding-top + 1.5em Zeilenhöhe + padding-bottom + 2px Border */
    min-height: calc(var(--base) * 1.75 + 1.5em + 2px);
    /* Chrome Android wertet TT.MM.JJJJ als :placeholder-shown → grüner Hintergrund unterdrückt */
    background: var(--bg);
  }

  /* ─── Date-Input: Label immer in gefloateter Position ─── */
  .form-field input[type="date"] ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: var(--text-xs);
    color: var(--fg);
    background: var(--bg);
  }

  /* ─── Error state ─── */
  .form-field.--error input,
  .form-field.--error textarea,
  .form-field.--error select {
    border-color: var(--color-error);
  }
  .form-field.--error label {
    color: var(--color-error);
    background: var(--bg); /* fehlt → Border scheint durch Label-Text */
    top: 0;
    transform: translateY(-50%);
    font-size: var(--text-xs);
  }
  .form-field.--error textarea ~ label {
    transform: translateY(-50%);
  }
  /* ─── Error: Label bleibt rot auch im gefloateten Zustand ─── */
  .form-field.--error input:focus ~ label,
  .form-field.--error input:not(:placeholder-shown) ~ label,
  .form-field.--error textarea:focus ~ label,
  .form-field.--error textarea:not(:placeholder-shown) ~ label,
  .form-field.--error select:focus ~ label,
  .form-field.--error select:valid ~ label {
    color: var(--color-error);
  }
  .form-field__error {
    font-size: var(--text-xs);
    color: var(--color-error);
    margin-top: 0.25rem;
  }

  /* ─── Success state ─── */
  .form-field.--success input,
  .form-field.--success textarea,
  .form-field.--success select {
    border-color: var(--green);
  }
  .form-field.--success label {
    color: var(--green);
    top: 0;
    transform: translateY(-50%);
    font-size: var(--text-xs);
  }
  .form-field__success {
    font-size: var(--text-xs);
    color: var(--green);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .form-field__success .material-icons { font-size: var(--base); }

  /* ─── Checkbox / Radio ─── */
  .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
  }
  .form-check input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--fg);
    cursor: pointer;
  }
  .form-check span {
    font-size: var(--text-base);
    color: var(--fg);
    line-height: var(--lh-base);
  }

  .form-check + .btn,
  .form-check-group + .btn { margin-top: var(--half-module); }

/* ─── Form grid ─── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: var(--half-module);
  margin-bottom: var(--half-module);
  }
/* WICHTIG: Felder im Grid dürfen keinen eigenen Margin haben */
.form-grid > .form-field { margin-bottom: 0; }
/* Verhindert, dass Grid-Cells durch native Input-Mindestbreiten (z. B. date) überlaufen */
.form-grid > * { min-width: 0; }
/* Volles Feld über beide Spalten: <div class="form-field --full"> */
.form-field.--full { grid-column: 1 / -1; }

/* ─── Kompaktes Formularfeld — kein Floating Label, Höhe = --sm-Komponenten ─── */
.form-field.--sm { margin-bottom: 0; }
.form-field.--sm > label {
  position: static;
  transform: none;
  display: block;
  font-size: var(--text-xs);
  color: var(--fg-muted);
  padding: 0;
  background: none;
  margin-bottom: calc(var(--base) * 0.25);
}
.form-field.--sm select,
.form-field.--sm input {
  font-size: var(--text-sm);
  height: calc(var(--base) * 2);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: calc(var(--base) * 0.5);
}

.form-grid.--full { grid-template-columns: 1fr; }

@media (max-width: 767px) {
  .form-grid { grid-template-columns: 1fr; }
  }

  /* ─── Farbiger Container: --bg neu definieren, alle Kinder erben automatisch ─── */
  .--on-green {
    --bg: var(--green-light);
    background-color: var(--bg);
  }

  /* ─── Forms on colored background ─── */
  .--on-green .form-upload {
    border-color: var(--border-light);
    background: transparent;
  }
  .--on-green .form-upload:hover,
  .--on-green .form-upload.--dragover {
    background: rgba(255,255,255,0.4);
  }

  /* ─── File upload ─── */
  .form-upload {
    position: relative;
    border: 1px dashed var(--border-light);
    padding: var(--module);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: border-color var(--anim-fast), background var(--anim-fast);
    margin-bottom: var(--half-module);
  }
  .form-upload:hover,
  .form-upload.--dragover {
    border-color: var(--border-focus);
    background: var(--accent-bg);
  }
  .form-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  .form-upload__icon {
    color: var(--fg-muted);
  }
  .form-upload__icon .material-icons {
    font-size: 2.25rem;
  }
  .form-upload__text {
    font-size: var(--text-base);
    color: var(--fg-muted);
    text-align: center;
  }
  .form-upload__text strong {
    color: var(--fg);
  }
  .form-upload__hint {
    font-size: var(--text-xs);
    color: var(--fg-muted);
  }
  .form-upload__files {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .form-upload__file {
    display: flex;
    align-items: center;
    gap: calc(var(--base) * 0.5);
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-light);
    font-size: var(--text-xs);
    color: var(--fg);
  }
  .form-upload__file .material-icons { font-size: var(--base); flex-shrink: 0; }
  .form-upload__file__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .form-upload__file__size { color: var(--fg-muted); white-space: nowrap; }
  .form-upload__remove {
    background: none;
    border: none;
    font-size: var(--text-base);
    color: var(--fg-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }
  .form-upload__remove:hover { color: var(--fg); }

/* ─── Icon Box (quadratisches Atom, zentriert Inhalt) ─── */
  .icon-box {
    width: var(--module);
    height: var(--module);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .icon-box.--sm { width: var(--icon-box-sm); height: var(--icon-box-sm); }
  .icon-box.--md { width: var(--icon-box-md); height: var(--icon-box-md); }
  .icon-box.--lg { width: calc(var(--base) * 5); height: calc(var(--base) * 5); }

  /* ─── Choice Box (Varianten-Button oder Label für Radio) ─── */
  .choice-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: calc(var(--base) * 0.5) var(--base);
    border: 1px solid var(--border-light);
    border-radius: 0;
    background: var(--bg);
    cursor: pointer;
    transition: border-color var(--anim-fast), background var(--anim-fast);
    user-select: none;
  }
  .choice-box:hover { border-color: var(--border); }
  .choice-box.--active,
  .choice-box:has(input:checked) { border: 1px solid var(--border-active); background: var(--green-light); color: var(--fg); }
  .choice-box.--sm { font-size: var(--text-sm); font-weight: 400; height: calc(var(--base) * 2); padding-top: 0; padding-bottom: 0; }
  .choice-box.--block { display: grid; grid-template-columns: min-content 1fr; gap: var(--half-module); align-items: center; text-align: left; width: 100%; padding: var(--half-module); }
  .choice-box.--block .material-icons { margin: 0; }
  .choice-box.--detail { display: flex; align-items: center; gap: var(--half-module); width: 100%; padding: var(--half-module); text-align: left; font-weight: 400; }
  .choice-box.--detail .material-icons { flex-shrink: 0; margin: 0; }
  .choice-box__content { display: flex; flex-direction: column; gap: calc(var(--base) * 0.2); flex: 1; }
  .choice-box__label { font-size: var(--text-base); font-weight: 700; line-height: var(--lh-h3); }
  .choice-box__desc  { font-size: var(--text-base); color: var(--fg-muted); line-height: var(--lh-base); }

  /* ─── Placeholder Background (Bild-Platzhalter mit diagonalem Kreuz) ─── */
  .placeholder-bg {
    background-color: var(--accent-bg);
    background-image:
      linear-gradient(to bottom right, transparent calc(50% - 0.5px), var(--cross-color) calc(50% - 0.5px), var(--cross-color) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
      linear-gradient(to top right, transparent calc(50% - 0.5px), var(--cross-color) calc(50% - 0.5px), var(--cross-color) calc(50% + 0.5px), transparent calc(50% + 0.5px));
    position: relative;
    overflow: hidden;
  }

  /* ─── Quantity Selector ─── */
  .qty-selector { display: flex; align-items: center; }
  .qty-selector__btn { width: calc(var(--base) * 2.75); height: calc(var(--base) * 2.75); display: flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--border); border-radius: 0; cursor: pointer; transition: background var(--anim-fast), color var(--anim-fast); font-family: var(--font); color: var(--fg); }
  .qty-selector__btn:hover { background: var(--fg); color: var(--bg); }
  .qty-selector__btn .material-icons { font-size: calc(var(--base) * 1.25); }
  .qty-selector__input { width: calc(var(--base) * 3); height: calc(var(--base) * 2.75); text-align: center; font-family: var(--font); font-size: var(--text-base); font-weight: 700; border: 1px solid var(--border); border-left: none; border-right: none; outline: none; -moz-appearance: textfield; }
  .qty-selector__input::-webkit-inner-spin-button, .qty-selector__input::-webkit-outer-spin-button { -webkit-appearance: none; }

  /* ─── Section Label ─── */
  /* Zwei Tokens für präzise Kontrolle pro Kontext:
     --section-label-mb  Abstand von der Linie zum nächsten Element (default: --half-module)
     --section-label-mt  Abstand vom vorherigen Element zur Überschrift (default: --module-2xl)
     Tipp: In Kontexten wo das folgende Element (cart-item, form-grid) eigenes
     padding-top hat, --section-label-mb auf 0 setzen — kein Doppelabstand. */
  .section-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); padding-bottom: var(--half-module); border-bottom: 1px solid var(--border); margin-bottom: var(--section-label-mb, var(--half-module)); }
  * + .section-label { margin-top: var(--section-label-mt, var(--module-2xl)); }
  /* ─── Sub-Variant — für h3-Sub-Sektionen innerhalb von Formularen, Checkout etc.
     Leichter Border, kleinerer Top-Abstand. Sema­ntik: h3 mit .section-label.--sub */
  .section-label.--sub { border-bottom-color: var(--border-light); padding-bottom: calc(var(--half-module) * 0.5); margin-bottom: var(--half-module); }
  * + .section-label.--sub { margin-top: var(--module); }

  /* ─── Label Caps — kompaktes Uppercase-Label ohne Border/Padding (z.B. Varianten, Filter) ─── */
  .label-caps { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-muted); }

  /* ─── Check List (Textliste mit Häkchen, Landing-Pages) ─── */
  .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--base) * 0.5);
    padding: calc(var(--base) * 0.25) 0;
    font-size: var(--text-base);
    line-height: var(--lh-base);
  }
  .check-list li .material-icons {
    color: var(--green);
    font-size: var(--base);
    flex-shrink: 0;
    margin-top: 0.2em;
  }

  /* ─── Divider / Line ─── */
  .line { padding-bottom: var(--half-module); margin-bottom: var(--half-module); }
  .line.--structural { border-bottom: 1px solid var(--fg); font-weight: 700; }
  .line.--light { border-bottom: 1px solid var(--border-light); color: var(--fg-muted); }
  .line.--dashed { border-bottom: 1px dashed var(--border-light); color: var(--fg-muted); margin-bottom: 0; }

  /* ─── Spacing Utilities ─── */
  .mt-half { margin-top: var(--half-module); }
  .mt-1    { margin-top: var(--module); }
  .mt-2    { margin-top: var(--module-2xl); }
  .mb-half { margin-bottom: var(--half-module); }
  .mb-1    { margin-bottom: var(--module); }

  /* ─── .flow — Kontextsensitives Typografie-Spacing ─────────────────────────
     Basiert auf dem Every-Layout-Flow-Pattern (Andy Bell / heydonworks.com).
     Setzt margin-top kontextsensitiv via --flow-space CSS Custom Property.

     Einsatz:      Info-Pages, section-type__content, überall wo Headings
                   und Fließtext gemischt auftreten.
     Nicht für:    .rte-Blöcke (eigene Regelung) + Komponenten-Interna.
     Override:     --flow-space direkt am Element setzen für Sonderfälle.
     ──────────────────────────────────────────────────────────────────────── */

  /* margin-bottom aller direkten Kinder zurücksetzen — margin-top übernimmt Rhythmus */
  .flow > * { margin-bottom: 0; }

  /* Default: Paragraph → Paragraph */
  .flow > * + * { margin-top: var(--flow-space, var(--base)); }

  /* Nach Heading: zugehöriger Content bleibt nah */
  .flow > h1 + * { --flow-space: calc(var(--base) * 0.75); }
  .flow > h2 + * { --flow-space: var(--base); }
  .flow > h3 + * { --flow-space: calc(var(--base) * 0.75); }
  .flow > h4 + * { --flow-space: calc(var(--base) * 0.5); }

  /* Vor Heading: neuer Abschnitt — Zäsur nach oben
     Reihenfolge bewusst: diese Regeln kommen zuletzt und gewinnen bei h2+h3-Folgen */
  .flow > * + h2 { --flow-space: var(--module); }
  .flow > * + h3 { --flow-space: var(--half-module); }
  .flow > * + h4 { --flow-space: calc(var(--base) * 1.5); }
  .label.--inset { margin: 0 var(--margin) var(--half-module); }

  /* ═══════════════════════════════════════════
     NEWSLETTER
     ═══════════════════════════════════════════ */

  .newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter);
    background: var(--green-light);
    padding: var(--module);
  }
  @media (max-width: 767px) {
    .newsletter { grid-template-columns: 1fr; }
  }

  /* ─── Actionable Input (Molekül) ─── */
  .actionable-input {
    display: flex;
    flex-direction: column;
    gap: var(--half-module);
    align-items: stretch;
    /* NEU: Auch dieses Molekül hält den Rhythmus ein */
    margin-bottom: var(--half-module);
  }
  .actionable-input .form-field { flex: 1; margin-bottom: 0; }
  @media (min-width: 768px) {
    .actionable-input { flex-direction: row; align-items: flex-start; }
  }

  /* ═══════════════════════════════════════════
     SUMMARY LINES
     ═══════════════════════════════════════════ */

  .summary-line { display: flex; justify-content: space-between; padding: calc(var(--base) * 0.75) 0; border-bottom: 1px dashed var(--border-light); color: var(--fg-muted); }
  .summary-line:last-of-type { border-bottom: none; padding-bottom: 0; }
  .summary-total { display: flex; justify-content: space-between; font-weight: 700; font-size: var(--text-m); margin-top: var(--half-module); padding-top: var(--module); border-top: 1px solid var(--fg); color: var(--fg); }
  /* Checkout: letztes summary-line als solide Trennlinie, summary-total ohne eigene Linie */
  .checkout .summary-line:has(+ .summary-total) { border-bottom: 1px solid var(--fg); padding-bottom: calc(var(--half-module) / 2); color: var(--fg); }
  .checkout .summary-total { border-top: none; padding-top: calc(var(--half-module) / 4); margin-top: calc(var(--half-module) / 4); }

  /* ═══════════════════════════════════════════
     CHECKOUT
     ═══════════════════════════════════════════ */

  .checkout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: start; }
  .checkout > div { display: flex; flex-direction: column; gap: var(--module); }
  /* Section-Label im Checkout: Flex-Gap übernimmt Abstand, margin-bottom entfällt */

  .checkout__block { margin-bottom: var(--module); }
  .checkout .choice-box:not(.--block) { padding-top: calc(var(--base) * 0.75); padding-bottom: calc(var(--base) * 0.75); }
  .checkout__block-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--module); }
  /* checkout__sidebar: section-label direkt über cart-items → mb=0, item-padding übernimmt */
  .checkout__sidebar { position: sticky; top: var(--module); align-self: start; --section-label-mb: 0; }
  .checkout__cta { margin-top: var(--module); }
  /* .checkout__success-icon — entfernt, durch globale .success-state__icon ersetzt */
  .checkout .tile-grid { gap: var(--half-module); }
  @media (max-width: 767px) { .checkout { grid-template-columns: 1fr; } .checkout .form-grid { grid-template-columns: 1fr; } .checkout .form-field.--full { grid-column: 1; } }

  /* ═══════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════ */

  .site-footer {
    background: var(--green-light);
    margin-top: var(--module-2xl);
  }
  .site-footer a {
    color: var(--fg);
    text-decoration: none;
    transition: color var(--anim-fast);
  }
  .site-footer a:hover { color: var(--fg-muted); }

  .footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--module-2xl) var(--margin) var(--module);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--gutter);
  }
  .footer-col h4 { margin-bottom: var(--half-module); }
  .footer-col p,
  .footer-col li {
    font-size: var(--text-base);
    line-height: var(--lh-base);
    color: var(--fg-muted);
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-col li a { color: var(--fg-muted); }
  .footer-col li a:hover { color: var(--fg); }

  .footer-bar {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--module) var(--margin);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: var(--fg-muted);
  }

  @media (max-width: 1535px) {
    .footer-main { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 767px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; gap: 0.5rem; }
  }


/* ═══════════════════════════════════════════
   MARQUEE / TICKER
   ═══════════════════════════════════════════ */

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .marquee {
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .marquee.--green { background: var(--green); color: var(--bg); border-color: var(--green); }
  .marquee.--dark  { background: var(--fg);    color: var(--bg); border-color: var(--fg); }

  .marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 24s linear infinite;
  }
  .marquee__track:hover { animation-play-state: paused; }

  .marquee__item {
    font-size: var(--text-base);
    font-weight: 700;
    white-space: nowrap;
    padding: var(--half-module) 0;
  }

  .marquee__sep {
    display: inline-flex;
    align-items: center;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 var(--module);
  }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

  /* ─── Grid Container ─── */
  .testimonial-grid {
    display: grid;
    gap: var(--gutter);
  }
  .testimonial-grid.--cols-3 { grid-template-columns: 1fr 1fr 1fr; }
  .testimonial-grid.--cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  
  /* ─── Einzelnes Testimonial ─── */
  .testimonial {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: var(--half-module);
  }
  
  /* ─── Quote-Icon ─── */
  .testimonial__quote-mark .material-icons {
    font-size: 1.5rem;
    color: var(--green);
  }
  
  /* ─── Zitat-Text ─── */
  .testimonial__text {
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--lh-base);
    color: var(--fg);
  }
  
  
  /* ─── Autor-Bereich ─── */
  .testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--half-module);
    margin-top: auto;
    padding-top: 0.5rem;
  }
  
  /* ─── Avatar (Platzhalter oder Foto) ─── */
  /* .testimonial__avatar — nutzt .placeholder-bg + .icon-box oder enthält <img> */
  .testimonial__avatar { border: 1px solid var(--border-light); flex-shrink: 0; border-radius: 50%; overflow: hidden; }
  .testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  
  /* ─── Name + Rolle ─── */
  .testimonial__name {
    font-size: var(--text-base);
    font-weight: 700;
    line-height: var(--lh-base);
  }
  .testimonial__role {
    font-size: var(--text-xs);
    color: var(--fg-muted);
    line-height: var(--lh-base);
  }
  
  /* ─── Variante: auf --green-light ─── */
  .testimonial-section.--on-green {
    padding: var(--module);
  }
  .testimonial-section.--on-green .testimonial__avatar {
    background: var(--color-overlay-light);
  }
  
  /* ═══════════════════════════════════════════
     TESTIMONIAL SLIDER
     ═══════════════════════════════════════════ */
  
  .testimonial-slider {
    position: relative;
    overflow: hidden;
  }
  .testimonial-slider__track {
    display: grid;
    grid-auto-flow: column;
    gap: var(--gutter);
    transition: transform var(--anim-slow);
  }
  .testimonial-slider.--cols-3 .testimonial-slider__track {
    grid-auto-columns: calc((100% - var(--gutter) * 2) / 3);
  }
  .testimonial-slider.--cols-4 .testimonial-slider__track {
    grid-auto-columns: calc((100% - var(--gutter) * 3) / 4);
  }
  
  /* ─── Slider Navigation ─── */
  .slider-nav {
    display: flex;
    align-items: center;
    gap: var(--half-module);
    margin-top: var(--module);
  }
  /* .slider-btn — nutzt .icon-box (width/height/display/align) */
  .slider-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: background var(--anim-fast), color var(--anim-fast);
    color: var(--fg);
  }
  .slider-btn:hover {
    background: var(--fg);
    color: var(--bg);
  }
  .slider-btn:disabled {
    border-color: var(--border-light);
    color: var(--border-light);
    cursor: default;
    background: none;
  }
  .slider-btn .material-icons {
    font-size: calc(var(--base) * 1.25);
  }
  .slider-counter {
    font-size: var(--text-xs);
    color: var(--fg-muted);
    min-width: 3rem;
    text-align: center;
  }
  
  /* ─── Slider on green ─── */
  .testimonial-slider.--on-green {
    padding: var(--module);
  }
  .testimonial-slider.--on-green .testimonial__avatar {
    background: var(--color-overlay-light);
  }
  
  /* ─── "Mehr anzeigen" Button-Wrapper (nur mobil sichtbar) ─── */
  .testimonial-more {
    display: none;
    margin-top: var(--module);
  }
  
  /* ═══════════════════════════════════════════
     PDP — PRODUKTDETAILSEITE
     ═══════════════════════════════════════════ */

  .pdp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter);
    margin-bottom: var(--module-2xl);
  }
  .pdp__gallery { display: flex; flex-direction: column; gap: var(--half-module); }
  /* .pdp__main-image — nutzt .placeholder-bg */
  .pdp__main-image { aspect-ratio: 1/1; border: 1px solid var(--border-light); overflow: hidden; position: relative; }
  .pdp__main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pdp__thumbs { display: flex; gap: var(--half-module); }
  /* .pdp__thumb — nutzt .placeholder-bg */
  .pdp__thumb { width: calc((100% - var(--half-module) * 4) / 5); aspect-ratio: 1/1; border: 1px solid var(--border-light); cursor: pointer; transition: border-color var(--anim-fast); overflow: hidden; }
  .pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pdp__thumb.--active, .pdp__thumb:hover { border-color: var(--border-active); }

  /* ─── PDP Caption (Text-Layer über Hauptbild) ─── */
  .pdp__caption.--hidden { display: none; }
  .pdp__caption {
    position: absolute;
    bottom: calc(var(--base) * 0.75);
    left: calc(var(--base) * 0.75);
    right: calc(var(--base) * 0.75);
    z-index: 1;
    background: var(--color-overlay-light);
    backdrop-filter: blur(6px);
    padding: var(--half-module);
    font-size: var(--text-base);
    line-height: var(--lh-base);
    color: var(--fg);
  }
  .pdp__caption-author {
    display: block;
    margin-top: calc(var(--base) * 0.25);
    font-size: var(--text-xs);
    color: var(--fg-muted);
  }
  .pdp__info { display: flex; flex-direction: column; }

  /* ─── Kategorie-Farben via data-cat ─── */
  [data-cat="cbd"]          { background: var(--cat-cbd-light); }
  [data-cat="bauchspeichel"]{ background: var(--cat-bauchspeichel-light); }
  [data-cat="blase"]        { background: var(--cat-blase-light); }
  [data-cat="niere"]        { background: var(--cat-niere-light); }
  [data-cat="herz"]         { background: var(--cat-herz-light); }
  [data-cat="leber"]        { background: var(--cat-leber-light); }
  [data-cat="beruhigung"]   { background: var(--cat-beruhigung-light); }
  [data-cat="gelenke"]      { background: var(--cat-gelenke-light); }
  [data-cat="magendarm"]    { background: var(--cat-magendarm-light); }
  [data-cat="fettsaeuren"]  { background: var(--cat-fettsaeuren-light); }
  [data-cat="haut"]         { background: var(--cat-haut-light); }
  [data-cat="immun"]        { background: var(--cat-immun-light); }
  [data-cat="atemwege"]     { background: var(--cat-atemwege-light); }
  [data-cat="hormone"]      { background: var(--cat-hormone-light); }
  .pdp__title { font-size: var(--text-xl); font-weight: 700; line-height: var(--lh-h2); margin-bottom: var(--half-module); }
  .pdp__price { display: flex; align-items: center; gap: var(--half-module); margin-bottom: var(--half-module); }
  .pdp__price .price-stack { font-size: var(--text-m); }
  .pdp__info .rating { margin-bottom: var(--half-module); }

  .pdp__description { color: var(--fg-muted); font-size: var(--text-base); line-height: var(--lh-base); margin-bottom: var(--half-module); }
  .pdp__variants { margin-bottom: var(--half-module); }
  /* .pdp__variant-label — nutzt .label-caps */
  .pdp__variant-label { margin-bottom: 0.5rem; }
  .pdp__variant-options { display: flex; gap: calc(var(--base) * 0.5); flex-wrap: wrap; }
  /* .pdp__variant-option → .choice-box (globaler Atom) */
  .pdp__actions { display: flex; gap: var(--half-module); align-items: flex-end; margin-bottom: var(--module); }
  .pdp__actions .btn { flex: 1; text-align: center; }
  /* .pdp__wishlist — nutzt .icon-box.--md */
  .pdp__wishlist { background: none; border: 1px solid var(--border-light); border-radius: 0; cursor: pointer; transition: border-color var(--anim-fast); }
  .pdp__wishlist:hover { border-color: var(--border-active); }
  .pdp__wishlist.--active { border-color: var(--color-error); }
  .pdp__wishlist.--active .material-icons { color: var(--color-error); }
  .pdp__wishlist .material-icons { font-size: calc(var(--base) * 1.25); transition: color var(--anim-fast); }
  .pdp__recommendations { margin-top: var(--module-2xl); padding-top: var(--module); border-top: 1px solid var(--border); }
  .pdp__recommendations > h3 { font-size: var(--text-m); font-weight: 700; line-height: var(--lh-h3); margin-bottom: var(--module); }

  /* ═══════════════════════════════════════════
     CART DRAWER
     ═══════════════════════════════════════════ */

  .cart-overlay { position: fixed; inset: 0; background: var(--color-overlay-dark); z-index: var(--z-overlay); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .cart-overlay.--open { opacity: 1; visibility: visible; }
  .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(28rem, 100vw); background: var(--bg); z-index: var(--z-drawer); display: flex; flex-direction: column; transform: translateX(100%); transition: transform var(--anim-base); border-left: 1px solid var(--border); }
  .cart-drawer.--open { transform: translateX(0); }
  .cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: var(--half-module) var(--module); border-bottom: 1px solid var(--border); flex-shrink: 0; }
  .cart-drawer__title { font-size: var(--text-base); font-weight: 700; }
  .cart-drawer__count { font-weight: 400; color: var(--fg-muted); }
  .btn.--icon { background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color var(--anim-fast); color: var(--fg); padding: 0; }
  .btn.--icon:hover { color: var(--fg-muted); }
  .btn.--icon .material-icons { font-size: calc(var(--base) * 1.25); }
  .btn.--with-icon { display: inline-flex; align-items: center; gap: 0.5rem; }
  .btn.--with-icon .material-icons { font-size: 1em; }
  .cart-drawer__items { flex: 1; overflow-y: auto; padding: var(--module) var(--module) 0;
    /* mb=0: cart-item hat eigenes padding-top → kein Doppelabstand unter der Linie
       mt=half-module: Atemraum zwischen letztem Item und nächster Gruppe */
    --section-label-mb: 0;
    --section-label-mt: var(--half-module);
  }
  .cart-item { display: grid; grid-template-columns: calc(var(--base) * 5) 1fr; gap: var(--half-module); padding: var(--half-module) 0; border-bottom: 1px solid var(--border-light); }
  .cart-item.--clickable { cursor: pointer; }
  /* ─── Product Thumb — geteiltes Atom für Produkt-Vorschaubilder (Cart, Search) ─── */
  .product-thumb { position: relative; width: calc(var(--base) * 5); height: calc(var(--base) * 5); border: 1px solid var(--border-light); flex-shrink: 0; overflow: hidden; }
  .product-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

  /* .cart-item__image — nutzt .placeholder-bg + .product-thumb */
  .cart-item__info { display: flex; flex-direction: column; gap: calc(var(--base) * 0.25); min-width: 0; }
  .cart-item__top { display: flex; justify-content: space-between; align-items: flex-start; gap: calc(var(--base) * 0.5); }
  .cart-item__name { font-size: var(--text-base); font-weight: 700; line-height: var(--lh-base); }
  .cart-item__remove { color: var(--fg-muted); flex-shrink: 0; }
  .cart-item__remove:hover { color: var(--fg); }
  .cart-item__variant { font-size: var(--text-xs); color: var(--fg-muted); }
  .cart-item__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
  .cart-item__price { font-size: var(--text-base); font-weight: 700; white-space: nowrap; text-align: right; }
  .qty-selector.--sm .qty-selector__btn { width: calc(var(--base) * 2); height: calc(var(--base) * 2); }
  .qty-selector.--sm .qty-selector__btn .material-icons { font-size: var(--base); }
  .qty-selector.--sm .qty-selector__input { width: calc(var(--base) * 2.5); height: calc(var(--base) * 2); }
  .cart-drawer__footer { flex-shrink: 0; padding: var(--half-module) var(--module) var(--module); border-top: 1px solid var(--border); }
  .cart-drawer__shipping { margin-bottom: var(--half-module); }
  .cart-drawer__footer .summary-total { border-top: none; padding-top: 0; margin-top: 0; }
  .cart-item__qty-text { font-size: var(--text-base); color: var(--fg-muted); }
  .cart-drawer__tax { font-size: var(--text-xs); color: var(--fg-muted); margin-bottom: var(--half-module); }
  .cart-drawer__checkout { width: 100%; text-align: center; }
  .cart-drawer__continue-wrap { padding-top: var(--half-module); }
  .cart-drawer__continue { width: 100%; text-align: center; }
  .cart-drawer__empty { flex: 1; display: flex; align-items: center; justify-content: center; padding: var(--module); }

  /* ─── Produktlisten-Karte — geteilte Erweiterungen für .cart-item ─── */
  /* Thumb-Wrapper: ermöglicht .floating-meta Overlay auf .product-thumb  */
  .product-thumb-wrap { position: relative; width: calc(var(--base) * 5); flex-shrink: 0; }
  /* Counter-Zeile: .qty-selector --sm + optionaler Inline-Badge          */
  .cart-item__counter { display: flex; align-items: center; gap: calc(var(--base) * 0.5); }

  /* ═══════════════════════════════════════════
     OPTIONS-DRAWER (Varianten wählen)
     ═══════════════════════════════════════════ */

  .options-overlay { position: fixed; inset: 0; background: var(--color-overlay-dark); z-index: var(--z-overlay); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .options-overlay.--open { opacity: 1; visibility: visible; }
  .options-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(28rem, 100vw); background: var(--bg); z-index: var(--z-drawer); display: flex; flex-direction: column; transform: translateX(100%); transition: transform var(--anim-base); border-left: 1px solid var(--border); }
  .options-drawer.--open { transform: translateX(0); }
  .options-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: var(--half-module) var(--module); border-bottom: 1px solid var(--border); flex-shrink: 0; }
  .options-drawer__title { font-size: var(--text-base); font-weight: 700; }
  .options-drawer__items { flex: 1; overflow-y: auto; padding: var(--module) var(--module) 0; }
  .options-drawer__product { margin-bottom: var(--half-module); padding-bottom: var(--half-module); border-bottom: 1px solid var(--border); }
  .options-drawer__section { margin-bottom: var(--half-module); }
  .options-drawer__section-label { margin-bottom: calc(var(--base) * 0.3); }
  .options-variants { display: flex; flex-wrap: wrap; gap: calc(var(--base) * 0.4); }
  .options-drawer__footer { flex-shrink: 0; padding: var(--half-module) var(--module) var(--module); border-top: 1px solid var(--border); }

  /* ═══════════════════════════════════════════
     PRODUKTÜBERSICHT
     ═══════════════════════════════════════════ */

  .collection-layout { display: grid; grid-template-columns: 1fr 3fr; gap: var(--gutter); margin-bottom: var(--module-2xl); }
  .collection-sidebar { position: sticky; top: var(--module); align-self: start; }
  .collection-sidebar__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--half-module); padding-bottom: var(--half-module); border-bottom: 1px solid var(--border); }
  .collection-sidebar__title { font-size: var(--text-base); font-weight: 700; }
  @media (min-width: 768px) { .collection-sidebar__close { display: none !important; } }
  .filter-group { margin-bottom: var(--module); }
  /* .filter-group__title — nutzt .label-caps */
  .filter-group__title { margin-bottom: 0.5rem; }
  .filter-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--half-module); }
  .filter-tag { display: inline-flex; align-items: center; gap: 0.25rem; font-size: var(--text-xs); font-weight: 700; padding: 0.25rem 0.5rem; border: 1px solid var(--border); background: var(--bg); cursor: pointer; transition: background var(--anim-fast); }
  .filter-tag:hover { background: var(--accent-bg); }
  .filter-tag .material-icons { font-size: 0.875rem; }
  .filter-clear { font-family: var(--font); font-size: var(--text-xs); color: var(--fg-muted); background: none; border: none; cursor: pointer; padding: 0.25rem 0; transition: color var(--anim-fast); }
  .filter-clear:hover { color: var(--fg); }

  /* ─── Filter Active Bar — horizontale Zeile mit aktiven Filter-Tags ─── */
  .filter-active-bar { display: flex; align-items: center; flex-wrap: wrap; gap: calc(var(--base) * 0.5); padding: var(--half-module) 0; border-bottom: 1px solid var(--border-light); margin-bottom: var(--half-module); }
  /* ─── Filter-Tag Remove-Button (innerhalb .filter-tag) ─── */
  .filter-tag__remove { display: inline-flex; align-items: center; background: none; border: none; cursor: pointer; padding: 0; color: var(--fg-muted); line-height: 1; transition: color var(--anim-fast); }
  .filter-tag__remove:hover { color: var(--fg); }
  .filter-tag__remove .material-icons { font-size: 0.875rem; }
  /* ─── Filter Count — Anzahl in Klammern nach Label ─── */
  .filter-count { color: var(--fg-muted); font-weight: 400; }
  /* ─── Filter Reset — Alle zurücksetzen, rechts in .filter-active-bar ─── */
  .filter-reset { font-family: var(--font); font-size: var(--text-xs); color: var(--fg-muted); background: none; border: none; cursor: pointer; padding: calc(var(--base) * 0.25) 0; margin-left: auto; transition: color var(--anim-fast); text-decoration: underline; }
  .filter-reset:hover { color: var(--fg); }
  .collection-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--half-module); padding-bottom: var(--half-module); border-bottom: 1px solid var(--border-light); }
  .collection-toolbar__count { font-size: var(--text-xs); color: var(--fg-muted); }
  .collection-toolbar__sort { display: flex; align-items: center; gap: 0.5rem; }
  .collection-toolbar__sort-label { font-size: var(--text-xs); color: var(--fg-muted); }
  .collection-toolbar__sort-select { font-family: var(--font); font-size: var(--text-xs); color: var(--fg); border: 1px solid var(--border-light); padding: 0.375rem 2rem 0.375rem 0.5rem; background: var(--bg); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; cursor: pointer; outline: none; transition: border-color var(--anim-fast); }
  .collection-toolbar__sort-select:focus { border-color: var(--border-focus); }
  .collection-filter-toggle { display: none; font-family: var(--font); font-size: var(--text-base); font-weight: 700; padding: 0.5rem 0; background: none; border: none; cursor: pointer; color: var(--fg); align-items: center; gap: 0.25rem; }
  .collection-filter-toggle .material-icons { font-size: calc(var(--base) * 1.25); }
  .filter-overlay { position: fixed; inset: 0; background: var(--color-overlay-dark); z-index: var(--z-overlay); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .filter-overlay.--open { opacity: 1; visibility: visible; }

  /* ─── Responsive ─── */
  @media (max-width: 1535px) {
    .rules { grid-template-columns: 1fr; }
    .col-grid[data-cols="4"] { grid-template-columns: 1fr 1fr; }
    .height-demo { grid-template-columns: 1fr; }
    .specimen-row { grid-template-columns: 6rem 1fr; }
    .testimonial-grid.--cols-4 { grid-template-columns: 1fr 1fr; }
    .testimonial-slider.--cols-4 .testimonial-slider__track {
      grid-auto-columns: calc((100% - var(--gutter)) / 2);
    }
    .testimonial-slider.--cols-3 .testimonial-slider__track {
      grid-auto-columns: calc((100% - var(--gutter)) / 2);
    }
  }
  @media (max-width: 1100px) {
    .tile-grid.--cols-4 { grid-template-columns: 1fr 1fr 1fr; }
  }
  @media (max-width: 1023px) {
    .tile-grid.--cols-4 { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 767px) {
    .page { padding: var(--module); }
    .col-grid[data-cols="2"], .col-grid[data-cols="3"], .col-grid[data-cols="4"] { grid-template-columns: 1fr; }
    .tile-grid.--cols-2, .tile-grid.--cols-3 { grid-template-columns: 1fr; }
    .section-type { grid-template-columns: 1fr; }
    .section-type.--viewport { height: auto; max-height: none; }
    .section-type__image { min-height: 15rem; }
    .section-type.--reverse { direction: ltr; }
    .section-type.--v1 .section-type__content,
    .section-type.--v2 .section-type__content {
      justify-content: flex-start;
      gap: var(--half-module);
    }
    .section-type:has(.section-type__animation) .section-type__content {
      max-width: none;
      margin: 0;
    }
    .section-type.--v1 .section-type__bottom,
    .section-type.--v2 .section-type__bottom {
      margin-top: 0;
    }
    .section-type.--v3 {
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    .section-type.--v3 .section-type__image {
      position: relative;
      min-height: 15rem;
    }
    .section-type.--v3 .section-type__inner {
      display: block;
      padding: 0;
    }
    .section-type.--v3 .section-type__content {
      grid-column: 1;
      margin: 0;
    }
    .specimen-row { grid-template-columns: 1fr; gap: 0.25rem; }
    /* Testimonial Grid */
    .testimonial-grid.--cols-3,
    .testimonial-grid.--cols-4 {
      grid-template-columns: 1fr;
    }
    .testimonial-grid > .testimonial {
      display: none;
    }
    .testimonial-grid > .testimonial.--visible {
      display: flex;
    }
    .testimonial-more {
      display: block;
    }
    .testimonial-more.--hidden {
      display: none;
    }

    /* Testimonial Slider */
    .testimonial-slider__track {
      display: flex;
      flex-direction: column;
      transform: none !important;
      gap: var(--gutter);
    }
    .testimonial-slider .testimonial-slider__slide {
      min-width: 100%;
      display: none;
    }
    .testimonial-slider .testimonial-slider__slide.--visible {
      display: flex;
    }
    .slider-nav {
      display: none;
    }
    .testimonial-slider + .testimonial-more {
      display: block;
    }
    .testimonial-slider + .testimonial-more.--hidden {
      display: none;
    }

    /* PDP */
    .pdp { grid-template-columns: 1fr; }

    /* Checkout */
    .checkout { grid-template-columns: 1fr; }

    /* Collection */
    .collection-layout { grid-template-columns: 1fr; }
    .collection-sidebar {
      position: fixed; top: 0; left: 0; bottom: 0;
      width: min(20rem, 85vw); background: var(--bg); z-index: var(--z-drawer);
      padding: var(--half-module); overflow-y: auto; transform: translateX(-100%);
      transition: transform var(--anim-base); border-right: 1px solid var(--border);
    }
    .collection-sidebar.--open { transform: translateX(0); }
    .collection-toolbar { display: grid; grid-template-columns: 1fr 1fr; padding: 0; border-top: 1px solid var(--border-light); margin-bottom: var(--module); }
    .collection-toolbar__count { display: none; }
    .collection-filter-toggle { display: flex; justify-content: center; border-right: 1px solid var(--border-light); padding: var(--half-module) 0; width: 100%; }
    .collection-toolbar__sort { justify-content: center; }
    .collection-toolbar__sort-label { display: none; }
    .collection-toolbar__sort-select { border: none; font-size: var(--text-base); font-weight: 700; padding: var(--half-module) 1.5rem var(--half-module) 0; background-position: right center; width: auto; }
    .collection-main .tile-grid.--cols-3 { grid-template-columns: 1fr 1fr; }
    /* iOS Safari: Zoom bei Inputs unter 16px verhindern */
    .form-field input, .form-field textarea, .form-field select { font-size: 1rem; }
  }

  /* ═══════════════════════════════════════════
     MODAL / POP-UP
     ═══════════════════════════════════════════ */

  .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--module); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .modal-overlay.--open { opacity: 1; visibility: visible; }
  .modal { background: var(--bg); width: 100%; max-width: 32rem; max-height: calc(100vh - var(--module-2xl)); display: flex; flex-direction: column; transform: translateY(1.5rem); transition: transform var(--anim-base); border: 1px solid var(--border); }
  .modal-overlay.--open .modal { transform: translateY(0); }
  .modal__header { display: flex; align-items: center; justify-content: space-between; padding: var(--half-module) var(--module); border-bottom: 1px solid var(--border-light); flex-shrink: 0; }
  .modal__title { font-size: var(--text-m); font-weight: 700; line-height: var(--lh-h3); }
  .modal__body { padding: var(--module); overflow-y: auto; }

  /* ─── Shop-Modal (Bestätigungs-/Feedback-Dialog) ─── */
  .shop-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--module); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .shop-modal-overlay.--open { opacity: 1; visibility: visible; }
  .shop-modal { background: var(--bg); width: min(24rem, 100%); padding: var(--module); display: flex; flex-direction: column; gap: var(--half-module); transform: translateY(1rem); opacity: 0; transition: transform var(--anim-base), opacity var(--anim-base); }
  .shop-modal-overlay.--open .shop-modal { transform: translateY(0); opacity: 1; }
  .shop-modal__icon { text-align: center; }
  .shop-modal__icon .material-icons { font-size: 3rem; color: var(--green); }
  .shop-modal__title { font-size: var(--text-m); font-weight: 700; text-align: center; margin: 0; }
  .shop-modal__body  { font-size: var(--text-base); color: var(--fg-muted); line-height: var(--lh-base); }
  .shop-modal__actions { display: flex; flex-direction: column; gap: calc(var(--base) * 0.4); padding-top: calc(var(--base) * 0.4); }

  /* ─── Login-Modal (zweispaltig: Brand-Panel + Formular-Panel) ─── */
  .login-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--module); opacity: 0; visibility: hidden; transition: opacity var(--anim-base), visibility var(--anim-base); }
  .login-overlay.--open { opacity: 1; visibility: visible; }
  .login-modal { display: flex; width: 100%; max-width: 52rem; min-height: 30rem; background: var(--bg); overflow: hidden; transform: translateY(1rem); opacity: 0; transition: transform var(--anim-base), opacity var(--anim-base); }
  .login-overlay.--open .login-modal { transform: translateY(0); opacity: 1; }
  .login-brand { display: none; flex: 0 0 38%; background: var(--fg); padding: var(--module); flex-direction: column; justify-content: space-between; }
  @media (min-width: 640px) { .login-brand { display: flex; } }
  .login-brand__logo { width: 8rem; filter: brightness(0) invert(1); opacity: 0.9; }
  .login-brand__content { margin-top: auto; }
  .login-brand__headline { font-size: var(--text-m); font-weight: 700; color: #fff; line-height: var(--lh-h3); margin: 0 0 var(--half-module); }
  .login-brand__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: calc(var(--base) * 0.35); }
  .login-brand__features li { font-size: var(--text-sm); color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: calc(var(--base) * 0.4); }
  .login-brand__features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
  .login-form-panel { flex: 1; position: relative; padding: var(--module); display: flex; flex-direction: column; gap: var(--half-module); overflow-y: auto; }
  .login-modal__close { position: absolute; top: calc(var(--base) * 0.6); right: calc(var(--base) * 0.6); }
  .login-tabs { display: flex; gap: var(--module); border-bottom: 1px solid var(--border); padding-top: calc(var(--base) * 0.25); margin-bottom: calc(var(--base) * 0.25); }
  .login-tab { font-size: var(--text-base); font-weight: 600; color: var(--fg-muted); background: none; border: none; padding: 0 0 calc(var(--base) * 0.5); cursor: pointer; position: relative; transition: color var(--anim-fast); }
  .login-tab.--active { color: var(--fg); }
  .login-tab.--active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--fg); }
  .login-panel { display: flex; flex-direction: column; gap: calc(var(--base) * 0.6); }
  .login-panel.--hidden { display: none; }
  .login-panel__header { display: flex; flex-direction: column; gap: calc(var(--base) * 0.15); }
  .login-panel__title { font-size: var(--text-m); font-weight: 700; margin: 0; line-height: var(--lh-h3); }
  .login-panel__sub { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: var(--lh-base); }
  .login-form { display: flex; flex-direction: column; gap: calc(var(--base) * 0.5); }
  .login-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--base) * 0.5); }
  .login-forgot { font-size: var(--text-xs); color: var(--fg-muted); text-decoration: none; margin-top: calc(var(--base) * -0.25); }
  .login-forgot:hover { color: var(--fg); }
  .login-cta { width: 100%; text-align: center; }
  .login-divider { display: flex; align-items: center; gap: var(--half-module); font-size: var(--text-xs); color: var(--fg-muted); }
  .login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .login-social { width: 100%; display: flex; align-items: center; justify-content: center; gap: calc(var(--base) * 0.5); border: 1px solid var(--border); background: var(--bg); font-size: var(--text-base); font-weight: 500; padding: calc(var(--base) * 0.55) var(--half-module); cursor: pointer; transition: border-color var(--anim-fast), background var(--anim-fast); }
  .login-social:hover { border-color: var(--fg); background: var(--accent-bg); }
  .login-switch { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; text-align: center; }
  .login-switch__btn { background: none; border: none; font-size: inherit; font-weight: 600; color: var(--fg); cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 2px; }

  /* ═══════════════════════════════════════════
     SEARCH
     ═══════════════════════════════════════════ */

  /* ─── Overlay-Backdrop ─── */
  .search-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-overlay-dark);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-base), visibility var(--anim-base);
  }
  .search-overlay.--open { opacity: 1; visibility: visible; }

  /* ─── Search Panel (oben, slide-in) ─── */
  .search-panel {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg);
    z-index: calc(var(--z-overlay) + 1);
    transform: translateY(-100%);
    transition: transform var(--anim-base);
    border-bottom: 1px solid var(--border);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
  }
  .search-overlay.--open .search-panel { transform: translateY(0); }

  /* ─── Eingabezeile ─── */
  .search-panel__bar {
    display: flex;
    align-items: center;
    gap: var(--half-module);
    padding: var(--half-module) var(--module);
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
  }
  .search-panel__bar > .material-icons { color: var(--fg-muted); flex-shrink: 0; }
  .search-panel__input {
    flex: 1;
    font-family: var(--font);
    font-size: var(--text-m);
    font-weight: 700;
    border: none;
    outline: none;
    background: transparent;
    color: var(--fg);
  }
  .search-panel__input::placeholder { color: var(--fg-muted); font-weight: 400; }

  /* ─── Ergebnisliste ─── */
  .search-results {
    overflow-y: auto;
    padding: calc(var(--base) * 0.5) 0 var(--half-module);
  }
  .search-results__section { margin-bottom: calc(var(--base) * 0.5); }
  .search-results .section-label { border-bottom-color: var(--border-light); padding: calc(var(--base) * 0.5) var(--module); margin-bottom: 0; }

  /* ─── Einzelnes Ergebnis — angelehnt an .cart-item ─── */
  .search-result {
    display: grid;
    grid-template-columns: calc(var(--base) * 5) 1fr auto;
    gap: var(--half-module);
    padding: var(--half-module) var(--module);
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--fg);
    cursor: pointer;
    transition: background var(--anim-fast);
  }
  .search-result:hover,
  .search-result.--active { background: var(--accent-bg); }

  /* ─── Query-Icon (für Suchvorschläge ohne Bild) — nutzt .icon-box.--lg ─── */
  .search-results .icon-box.--lg { background: var(--accent-bg); }
  .search-results .icon-box.--lg .material-icons { font-size: 1.25rem; color: var(--fg-muted); }

  /* ─── Text-Info ─── */
  .search-result__info { display: flex; flex-direction: column; gap: calc(var(--base) * 0.25); min-width: 0; justify-content: center; }
  .search-result__name { font-size: var(--text-base); font-weight: 700; line-height: var(--lh-base); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .search-result__meta { font-size: var(--text-xs); color: var(--fg-muted); }
  .search-result__price { font-size: var(--text-base); font-weight: 700; white-space: nowrap; align-self: center; justify-self: end; }

  /* ─── Empty + Loading ─── */
  /* .search-results__empty — nutzt .empty-state */
  .search-results__loading { display: flex; justify-content: center; padding: var(--module); color: var(--fg-muted); font-size: var(--text-xs); }

  /* ═══════════════════════════════════════════
     EMPTY STATE (erweitert)
     ═══════════════════════════════════════════ */
  .empty-state__title { font-size: var(--text-m); font-weight: 700; color: var(--fg); line-height: var(--lh-h3); }
  .empty-state__sub { font-size: var(--text-base); color: var(--fg-muted); }

  /* ═══════════════════════════════════════════
     PDP — OUT OF STOCK
     ═══════════════════════════════════════════ */
  .pdp__oos-badge { display: inline-flex; align-items: center; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-muted); border: 1px solid var(--border-light); padding: calc(var(--base) * 0.25) calc(var(--base) * 0.5); margin-bottom: var(--half-module); }
  .pdp__oos-cta { display: flex; flex-direction: column; gap: var(--half-module); }
  .pdp__oos-cta__label { font-size: var(--text-base); color: var(--fg-muted); }
  .pdp__oos-cta .btn { width: 100%; text-align: center; }

  /* ═══════════════════════════════════════════
     ACCOUNT
     ═══════════════════════════════════════════ */
  .order-item { display: grid; grid-template-columns: 1fr auto auto auto auto; gap: var(--half-module); padding: var(--half-module) 0; border-bottom: 1px solid var(--border-light); align-items: center; }
  .order-item__number { font-size: var(--text-base); font-weight: 700; }
  .order-item__date { font-size: var(--text-xs); color: var(--fg-muted); }
  .order-item__amount { font-size: var(--text-base); font-weight: 700; white-space: nowrap; }
  .order-item__link { font-size: var(--text-xs); font-weight: 700; color: var(--green); text-decoration: none; white-space: nowrap; transition: color var(--anim-fast); }
  .order-item__link:hover { color: var(--green-hover); text-decoration: underline; }

  /* ═══════════════════════════════════════════
     COOKIE BANNER
     ═══════════════════════════════════════════ */
  .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border-light); padding: var(--half-module) var(--module); display: flex; align-items: center; justify-content: space-between; gap: var(--module); z-index: var(--z-overlay); }
  .cookie-banner__text { font-size: var(--text-xs); color: var(--fg-muted); flex: 1; min-width: 0; }
  .cookie-banner__actions { display: flex; gap: var(--half-module); flex-shrink: 0; }

  /* ═══════════════════════════════════════════
     BLOG
     ═══════════════════════════════════════════ */

  /* ─── Blog-Übersicht Grid ─── */
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--module); }
  @media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }

  /* ─── Blog-Card ─── */
  .blog-card { display: flex; flex-direction: column; }
  .blog-card__image { aspect-ratio: 16 / 9; }
  .blog-card__content { display: flex; flex-direction: column; gap: calc(var(--base) * 0.5); padding-top: var(--half-module); flex: 1; }
  /* .blog-card__meta — nutzt .label-caps */
  .blog-card__title { font-size: var(--text-m); font-weight: 700; line-height: var(--lh-h3); }
  .blog-card__excerpt { font-size: var(--text-base); color: var(--fg-muted); line-height: var(--lh-base); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .blog-card__cta { font-size: var(--text-base); color: var(--green); text-decoration: none; margin-top: auto; padding-top: calc(var(--base) * 0.5); transition: color var(--anim-fast); }
  .blog-card__cta:hover { color: var(--green-hover); text-decoration: underline; }

  /* ─── Artikel-Detailseite: 2-Spalten-Layout Desktop ─── */
  .article-layout { display: grid; grid-template-columns: 1fr 3fr; gap: var(--gutter); align-items: start; max-width: 60rem; margin-inline: auto; }
  .article-layout > * { min-width: 0; }
  .article-sidebar { position: sticky; top: var(--header-height); display: flex; flex-direction: column; gap: var(--half-module); }
  @media (max-width: 767px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; align-items: flex-start; border-bottom: 1px solid var(--border-light); padding-bottom: var(--half-module); margin-bottom: var(--half-module); }
  }
  /* ─── Artikel-Detailseite ─── */
  .article__header { margin-bottom: var(--half-module); }
  .article__header h1 { margin-top: calc(var(--base) * 0.5); margin-bottom: var(--half-module); }
  .article__hero { aspect-ratio: 16 / 9; margin-bottom: var(--module); }
  /* .article__body — nutzt .rte */
  .article__author { display: flex; align-items: center; gap: var(--half-module); }
  .article__author-avatar { width: calc(var(--base) * 3); height: calc(var(--base) * 3); border-radius: 50%; flex-shrink: 0; overflow: hidden; }
  .article__author-name { font-size: var(--text-base); font-weight: 700; line-height: var(--lh-base); }
  .article__author-role { font-size: var(--text-xs); color: var(--fg-muted); }
  .article__tags { display: flex; flex-wrap: wrap; gap: calc(var(--base) * 0.5); }

  /* ─── Keyframes ─── */
  @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
  @keyframes toastIn { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: translateX(0); } }

  /* ─── Scroll Animations ─── */
  @media (prefers-reduced-motion: no-preference) {
    [data-animate] {
      opacity: 0;
      transform: translateY(2.5rem);
    }
    [data-animate].--in-view {
      opacity: 1;
      transform: none;
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--anim-delay, 0ms);
    }
  }

/* ─── PDP Typ-Selektor (Produktfamilien) ─── */

.pdp__type-selector {
  border-top: 1px solid var(--border);
}

.pdp__type-selector-header {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  padding: calc(var(--base) * 0.4) 0;
  border-bottom: 1px solid var(--border);
}

.pdp__type-row {
  display: flex;
  align-items: center;
  gap: calc(var(--base) * 0.5);
  padding: calc(var(--base) * 0.5) 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}

.pdp__type-row:last-child { border-bottom: none; }

.pdp__type-row input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--fg);
  cursor: pointer;
  flex-shrink: 0;
}

.pdp__type-label { flex: 1; font-size: var(--text-base); }

.pdp__type-animals { font-size: var(--text-xs); color: var(--fg-muted); }


/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR — MARQUEE-VARIANTE
   Außerhalb von :root{} — html-Präfix schlägt :root-Spezifität
   ═══════════════════════════════════════════ */
html .announcement-bar.--marquee { justify-content: flex-start; }
html .announcement-bar.--marquee .announcement-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: annBarMarquee 28s linear infinite;
}
@keyframes annBarMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}
html .announcement-bar.--marquee .announcement-bar__item {
  position: static;
  opacity: 1;
  animation: none;
  white-space: nowrap;
}
html .announcement-bar.--marquee .announcement-bar__sep {
  display: inline-flex;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.35;
  margin: 0 var(--module);
}
/* Manukalind
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  font-family: "Poppins";
  font-weight:600;
  font-style: normal;
}

h1{
  color: #00975e; /*dark green*/
}

input[type="submit"] {
  background-color: #00975e ; /*dark green*/
}

input[type="submit"]:hover {
  background-color: #007c4d; /*darker green*/
}

.photo-upload-label {
  background-color: #e9f4f0;
}

.photo-upload-label:hover {
  background-color: #00975e ; /*dark green*/
}

footer a {
  color: #00975e; /*dark green*/
}

.flash-close-btn {
  background-color: #00975e;
}

.flash-close-btn:hover {
  background-color: #e9f4f0;
}
/* Planimol
brown #3e2b2f
light #e0f4dc
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  font-family: 'Plus Jakarta Sans';
}

h1{
  color: rgb(62, 43, 47); /*dark brown*/
}

input[type="submit"] {
  background-color: rgb(62, 43, 47); /*dark brown*/
}

input[type="submit"]:hover {
  background-color: rgb(47, 33, 36); /*darker brown*/
}

.photo-upload-label {
  background-color: #e0f4dc;
}

.photo-upload-label:hover {
  background-color: rgb(62, 43, 47); /*dark brown*/
}

footer a {
  color: rgb(62, 43, 47); /*dark brown*/
}

.flash-close-btn {
  background-color: rgb(62, 43, 47);
}

.flash-close-btn:hover {
  background-color: #e0f4dc;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Futura, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin-left: 8%;
  margin-right: 8%;
  padding: 0;
}

main {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  color: #78B41B;
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
}

p {
  margin-bottom: 10px;
}

.logo {
  display: block;
  /*margin: 0 auto 20px;*/
  margin-top: 25px;
  width: 150px; /* Adjust size */
  height: auto;
  margin-left: 0px;
}

.form-item {
  margin-bottom: 15px;
}

.form-item label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 8px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border 0.3s ease-in-out;
}

.form-item input:focus,
.form-item textarea:focus {
  border-color: #78B41B; /* Focus color */
  outline: none;
}

.form-item input[type="file"] {
  padding: 5px;
}

input[type="submit"] {
  background-color: #78B41B;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
  transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #5A8C14;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #666;
  font-weight: 100;
}

footer a {
  color: #78B41B;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

#photo_upload_input {
  display: none; /* Hide the file input */
}

.photo-upload-label {
  background-color: #E0EEC9;
  border: none;
  transition: 0.15s all ease;
  font-size: medium;
  width: 100%;
  padding: 16px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  cursor: pointer;
  border-radius: 4px;
}

.photo-upload-label:hover {
  background-color: #78B41B;
  color: white;
}

.photo-upload-label.selected:hover {
  color: white;
}

.upload-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.photo-upload-label {
  margin: auto;
}

.special-upload-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#produkt-name-box{
  margin-top:20px;
}

.flash-alert-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it’s above other elements */
}

.flash-alert {
  background-color: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.flash-alert p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.flash-close-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.flash-close-btn:hover {
  background-color: #0056b3;
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.logo-wrapper {
  flex: 1;
  text-align: center;
}

.language-switcher {
  flex: 0 0 auto;
}

.language-select {
  background: transparent;
  border: none;
  padding: 8px 32px 8px 16px; /* Increased right padding for arrow space */
  cursor: pointer;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.language-select:focus {
  outline: none;
}

.language-select option {
  background: white;
  color: #333;
}

.photo-upload-label.selected:hover {
  color: white;
}

.photo-upload-label {
  display: block;
  padding: 8px 16px;
  background-color: #78B41B;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.photo-upload-label:hover {
  background-color: #669B17;
}

.upload-wrapper {
  text-align: center;
}

.photo-upload-input {
  display: none;
}

.flash-alert-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: white;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.flash-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flash-close-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
}

.flash-close-btn:hover {
  background-color: #0056b3;
}

/* File upload feedback styles */
.file-selected-feedback {
  margin-top: 10px;
  padding: 12px 15px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  color: #495057;
}

.file-selected-feedback .file-count {
  font-weight: 600;
  color: #0d6efd;
}

.file-selected-feedback .file-list {
  margin-top: 8px;
  padding-left: 15px;
  list-style-type: none;
}

.file-selected-feedback .file-item {
  display: flex;
  align-items: center;
  padding: 4px 0;
  color: #495057;
}

.file-selected-feedback .file-item:before {
  content: "•";
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* For the upload button */
.photo-upload-label {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

