/* ================================================================
   THE BOTANIQUE HAUS — Design System v4
   Botanisches Atelier. Editorial, materiell, präzise.
   Elfenbein + Schwarz. Playfair Display + Inter.
   ================================================================ */

/* ── Web-Fonts ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  /* Farben — warmes Elfenbein + Tintenschwarz */
  --clr-bg:            #F7F5F1;
  --clr-bg-warm:       #F0EDE6;
  --clr-surface:       #FFFFFF;
  --clr-text:          #161614;
  --clr-text-soft:     #2E2E2C;
  --clr-text-muted:    #736B63;
  --clr-accent:        #161614;
  --clr-accent-hover:  #2E2E2C;
  --clr-accent-light:  #F0EDE6;
  --clr-border:        #DCD6CD;
  --clr-border-light:  #E8E4DD;
  --clr-focus:         #161614;
  --clr-sold-out:      #736B63;
  --clr-sage:          #A9B8A5;

  /* Typografie — Playfair Display + Inter */
  --ff-serif:    'Playfair Display', 'Iowan Old Style', 'Palatino Linotype',
                 Georgia, serif;
  --ff-sans:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;

  --fs-label:    0.8125rem;   /* 13px — Eyebrows, Metadaten */
  --fs-xs:       0.8125rem;
  --fs-sm:       0.875rem;
  --fs-base:     1rem;        /* 16px — Body */
  --fs-md:       1.125rem;
  --fs-lg:       1.25rem;
  --fs-xl:       1.5rem;
  --fs-2xl:      2rem;
  --fs-display:  clamp(2.75rem, 5vw + 1rem, 4.875rem);

  --lh-tight:    1.04;
  --lh-snug:     1.25;
  --lh-normal:   1.55;
  --lh-relaxed:  1.7;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semi:     600;

  --ls-tight:   -0.01em;
  --ls-normal:   0;
  --ls-wide:     0.14em;      /* Eyebrow-Spacing */

  --sp-2xs:      0.25rem;
  --sp-xs:       0.5rem;
  --sp-sm:       0.75rem;
  --sp-md:       1rem;
  --sp-lg:       1.5rem;
  --sp-xl:       2rem;
  --sp-2xl:      3rem;
  --sp-3xl:      4rem;
  --sp-4xl:      6rem;
  --sp-5xl:      8rem;

  --section-y:   clamp(80px, 10vw, 168px);
  --wrap-max:    88rem;       /* 1408px */
  --wrap-narrow: 40rem;
  --wrap-text:   38rem;
  --wrap-px:     clamp(1.25rem, 4vw, 4rem);

  --radius-sm:   0;
  --radius-md:   0;

  --shadow-sm:   none;
  --shadow-md:   none;
  --shadow-lg:   none;

  --dur-fast:    150ms;
  --dur-normal:  200ms;
  --dur-slow:    250ms;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --touch-min:   2.75rem;
}

/* --- REDUCED MOTION ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- RESET ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--clr-text);
  text-decoration-skip-ink: auto;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--clr-text-muted); }

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-text);
}
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

strong { font-weight: var(--fw-semi); }

/* --- KLEINLABEL (global) -------------------------------------- */
/* Eyebrow, nav, buttons, footer headings: einheitlicher Look */
.label-style {
  font-family: var(--ff-sans);
  font-size: var(--fs-label);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* --- SKIP LINK ------------------------------------------------ */
.skip-link {
  position: absolute; top: var(--sp-xs); left: var(--sp-xs);
  padding: var(--sp-xs) var(--sp-md);
  background: var(--clr-text); color: var(--clr-bg);
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  z-index: 1000;
  transform: translateY(-200%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--clr-focus); outline-offset: 2px; }

/* --- WRAP ----------------------------------------------------- */
.wrap {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-px);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--sp-3xl); gap: var(--sp-lg);
}

.brand { text-decoration: none; line-height: var(--lh-tight); display: flex; align-items: center; gap: var(--sp-xs); }
.brand-logo { width: 32px; height: 32px; flex-shrink: 0; }
.brand-name {
  font-family: var(--ff-serif); font-size: var(--fs-lg);
  font-weight: var(--fw-regular); color: var(--clr-text);
  letter-spacing: var(--ls-tight);
}

.site-nav ul { display: flex; gap: var(--sp-xs); align-items: center; }
.site-nav a {
  display: inline-flex; align-items: center;
  min-height: var(--touch-min);
  padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: var(--clr-text-soft); }
.site-nav a[aria-current="page"] { color: var(--clr-text); }

.nav-divider {
  width: 1px; height: var(--sp-lg);
  background-color: var(--clr-border); margin-inline: var(--sp-2xs);
}

.nav-checkbox {
  position: absolute; opacity: 0; width: 1px; height: 1px;
  pointer-events: none;
}
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  background: none; border: none;
  padding: var(--sp-xs); min-width: var(--touch-min); min-height: var(--touch-min);
  cursor: pointer; color: var(--clr-text);
}
.nav-toggle svg { width: var(--sp-lg); height: var(--sp-lg); }

@media (max-width: 48rem) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--clr-bg); border-bottom: 1px solid var(--clr-border);
    padding: var(--sp-md) var(--wrap-px);
  }
  .nav-checkbox:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a { width: 100%; padding: var(--sp-sm) var(--sp-md); font-size: var(--fs-label); }
  .nav-divider { width: 100%; height: 1px; margin-block: var(--sp-xs); }

  /* Mobile: dropdown becomes flat indented list */
  .nav-dropdown { display: contents; }
  .nav-dropdown-menu {
    display: flex !important; flex-direction: column;
    position: static; border: none; box-shadow: none; background: none;
    padding: 0; opacity: 1; visibility: visible;
    pointer-events: auto;
  }
  .nav-brand-item a {
    padding-left: var(--sp-xl);
  }
}

/* Nav dropdown (desktop) */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 14rem; padding: var(--sp-xs) 0;
  background: rgba(240, 237, 230, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: none;
  border-bottom: 1px solid var(--clr-border-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  z-index: 200; list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms var(--ease-out),
              transform 180ms var(--ease-out),
              visibility 0ms 180ms;
  pointer-events: none;
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: flex; align-items: center;
  min-height: var(--touch-min);
  padding: var(--sp-xs) var(--sp-md);
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text); text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-dropdown-menu a:hover { color: var(--clr-text-soft); }

/* Bridge: keep hover zone continuous between trigger and menu */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 0; pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after {
  height: 0; /* menu sits flush at top:100%, no gap needed */
}

/* Show dropdown on hover or focus-within */
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms var(--ease-out),
              transform 180ms var(--ease-out),
              visibility 0ms 0ms;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-menu {
    transform: none;
    transition: opacity 180ms var(--ease-out),
                visibility 0ms 180ms;
  }
  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:focus-within > .nav-dropdown-menu {
    transform: none;
    transition: opacity 180ms var(--ease-out),
                visibility 0ms 0ms;
  }
}

/* Mobile: brand sub-items hidden on desktop */
.nav-brand-item { display: none; }
@media (max-width: 48rem) {
  .nav-brand-item { display: list-item; }
  .nav-dropdown-menu { display: none !important; }
}

/* ================================================================
   HERO — Text + Bild nebeneinander, INNERHALB von .wrap.
   Max 60vh, Bild 50% mit aspect-ratio 1.
   ================================================================ */
.hero-split {
  max-height: 60vh;
  overflow: hidden;
}
.hero-split .wrap {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--sp-xl);
  align-items: center;
  max-height: 60vh;
}
.hero-split-text {
  padding-block: var(--sp-2xl);
}
.hero-split-text h1 { margin-bottom: var(--sp-sm); }
.hero-split-text .hero-lead {
  max-width: 40ch;
  font-size: var(--fs-base); line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}
.hero-split-text .hero-sub {
  font-size: var(--fs-label); color: var(--clr-text-muted);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  font-weight: var(--fw-regular); margin-bottom: var(--sp-sm);
}
.hero-split-img {
  overflow: hidden; background: var(--clr-bg-warm);
  aspect-ratio: 1;
  max-height: 60vh;
  position: relative;
  border-radius: 2px;
  border: 1px solid var(--clr-border-light);
}
.hero-split-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Hero slideshow — pure CSS */
@keyframes hero-fade {
  0%    { opacity: 0; }
  5%    { opacity: 1; }
  20%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  animation: hero-fade 40s infinite;
}
.hero-slide:first-child  { animation-delay: -2s; }
.hero-slide:nth-child(2) { animation-delay:  6s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 22s; }
.hero-slide:nth-child(5) { animation-delay: 30s; }

/* Single image fallback (no slideshow) */
.hero-split-img > picture:only-child {
  position: relative; display: block;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: var(--sp-md) var(--sp-lg);
  align-items: center; margin-top: var(--sp-xl);
}
.hero-link {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.hero-trust {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  letter-spacing: 0.02em;
  margin-top: var(--sp-lg);
}
.hero-link:hover { color: var(--clr-text-soft); }

@media (max-width: 48rem) {
  .hero-split { max-height: none; }
  .hero-split .wrap {
    grid-template-columns: 1fr;
    gap: 0;
    max-height: none;
  }
  .hero-split-text { padding-block: var(--sp-xl); order: 2; }
  .hero-split-img { order: 1; aspect-ratio: 4/3; max-height: 50vh; }
}

/* Einfaches Hero (Kollektion) */
.hero { padding-block: var(--sp-2xl) var(--sp-xl); }
.collection-hero { padding-block: var(--sp-xl) var(--sp-sm); }
.collection-hero h1 { margin-bottom: var(--sp-2xs); }
.collection-hero .hero-lead { margin-bottom: 0; }
.hero h1 { margin-bottom: var(--sp-xs); }
.hero .hero-lead {
  max-width: 55ch; font-size: var(--fs-base);
  line-height: var(--lh-relaxed); color: var(--clr-text-soft);
}
.hero .eyebrow {
  display: inline-block;
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-xs);
}

/* ================================================================
   SECTIONS
   ================================================================ */
section { padding-block: var(--sp-2xl); }
/* Homepage sections override generic padding */
.hp-hero, .hp-facts, .hp-collection,
.hp-process, .hp-closing { padding: 0; }

.section-head {
  max-width: var(--wrap-text); margin-bottom: var(--sp-xl);
}
.section-head .eyebrow {
  display: inline-block;
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-2xs);
}
.section-head h2 { margin-bottom: var(--sp-xs); }
.section-head p { color: var(--clr-text-soft); line-height: var(--lh-relaxed); max-width: 55ch; }

/* ================================================================
   VALUES BAR
   ================================================================ */
.values-bar {
  border-block: 1px solid var(--clr-border);
  padding-block: var(--sp-3xl);
  background: var(--clr-bg-warm);
}
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl) var(--sp-lg);
}
@media (min-width: 48rem) {
  .values-list { grid-template-columns: repeat(4, 1fr); }
}
.values-list li {
  font-size: 14px; color: var(--clr-text-soft); line-height: var(--lh-relaxed);
}
.values-list strong {
  display: block;
  font-family: var(--ff-serif); font-weight: var(--fw-regular);
  font-size: 18px; color: var(--clr-text);
  margin-bottom: var(--sp-xs);
}

.pillars { display: none; }

/* ================================================================
   ANNOUNCE BAR (eski sayfalar + homepage)
   ================================================================ */
.announce-bar {
  padding: var(--sp-sm) 0;
  background: var(--clr-bg-warm);
  border-bottom: 1px solid var(--clr-border-light);
  text-align: center;
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--clr-text-muted);
}
.announce-bar .wrap {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0 var(--sp-sm);
}
.announce-sep { color: var(--clr-border); }

/* ================================================================
   HOMEPAGE — hp- prefix
   ================================================================ */

/* Tüm hp- sectionlar generic section padding'i ezer */
.hp-hero, .hp-collection, .hp-process, .hp-closing { padding: 0; }

/* ── Announce ── */
.hp-announce {
  height: 30px; display: flex; align-items: center; justify-content: center;
  background: #1a1917; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-sans); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #9a9590; text-align: center; padding-inline: 16px;
}
@media (max-width: 767px) {
  .hp-announce { height: auto; padding: 6px 16px; font-size: 10px; line-height: 1.5; }
}

/* ── Header ── */
.hp-header {
  height: 72px; border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #1a1917;
}
.hp-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 100%;
  max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px);
}
.hp-header__brand {
  font-family: var(--ff-serif); font-size: 20px;
  font-weight: 400; letter-spacing: -0.01em;
  color: #f0ece6; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.hp-header__brand .brand-logo { width: 32px; height: 32px; flex-shrink: 0; }
.hp-header__nav { display: flex; gap: 32px; justify-content: center; }
.hp-header__nav a {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: #c4bfb8; transition: color 150ms;
}
.hp-header__nav a:hover { color: #f0ece6; }
.hp-header__icons {
  display: flex; gap: 8px; justify-content: flex-end; align-items: center;
}
.hp-header__icons a, .hp-menu-btn {
  display: flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  color: #c4bfb8; text-decoration: none; background: none; border: none; cursor: pointer;
}
.hp-menu-btn { display: none; }
@media (max-width: 767px) {
  .hp-header { height: 56px; }
  .hp-header__inner { grid-template-columns: 1fr auto; }
  .hp-header__nav { display: none; }
  .hp-menu-btn { display: flex; }
  .hp-header__brand { font-size: 17px; }
}

/* ── Mobile overlay ── */
.hp-menu-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(23,23,21,0.4); }
.hp-menu-overlay__inner {
  position: absolute; top: 0; right: 0; width: min(360px, 85vw); height: 100%;
  background: var(--clr-bg); padding: 24px 32px; display: flex; flex-direction: column;
}
.hp-menu-close {
  align-self: flex-end; background: none; border: none; font-size: 32px;
  color: var(--clr-text); cursor: pointer; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.hp-menu-overlay nav { margin-top: 48px; display: flex; flex-direction: column; }
.hp-menu-overlay nav a {
  display: block; padding: 14px 0; font-family: var(--ff-serif); font-size: 26px;
  font-weight: 400; color: var(--clr-text); text-decoration: none;
  border-bottom: 1px solid var(--clr-border-light);
}

/* ── Shared ── */
.hp-eyebrow {
  display: block; font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-text-muted);
}
.hp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 32px;
  font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clr-bg); background: var(--clr-text); border: 1px solid var(--clr-text);
  text-decoration: none; transition: background 200ms, color 200ms;
}
.hp-btn:hover { background: var(--clr-text-soft); border-color: var(--clr-text-soft); color: var(--clr-bg); }
.hp-textlink {
  font-family: var(--ff-sans); font-size: 13px; font-weight: 500;
  color: var(--clr-text); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 150ms;
}
.hp-textlink:hover { color: var(--clr-text-muted); }

/* ── HERO — dark atelier ── */
.hp-hero {
  background: #1a1917;
  color: #e8e4dd;
}
.hp-hero__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 56px clamp(20px, 4vw, 48px) 64px;
  display: grid; grid-template-columns: 55% 40%; gap: 5%;
  align-items: center;
  min-height: 480px;
}
.hp-hero__copy { max-width: 520px; }
.hp-hero__copy .hp-eyebrow {
  color: #9a9590; margin-bottom: 24px;
}
.hp-hero__copy h1 {
  font-family: var(--ff-serif); font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.02em;
  color: #f0ece6; margin-bottom: 20px;
}
.hp-hero__copy p {
  font-size: 16px; line-height: 1.65; color: #a8a29e;
  max-width: 400px; margin-bottom: 32px;
}
.hp-hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.hp-hero .hp-btn {
  background: #f0ece6; color: #1a1917; border-color: #f0ece6;
}
.hp-hero .hp-btn:hover {
  background: #dcd6cd; border-color: #dcd6cd; color: #1a1917;
}
.hp-hero .hp-textlink {
  color: #a8a29e;
}
.hp-hero .hp-textlink:hover { color: #f0ece6; }
.hp-hero__photo {
  display: flex; align-items: center; justify-content: center;
  max-height: 420px;
}
.hp-hero__photo img {
  max-width: 100%; max-height: 400px;
  width: auto; height: auto; object-fit: contain;
}
@media (max-width: 767px) {
  .hp-hero__inner {
    grid-template-columns: 1fr; gap: 32px;
    min-height: 0; padding: 40px 20px 48px;
  }
  .hp-hero__photo { max-height: 300px; order: -1; }
  .hp-hero__photo img { max-height: 280px; }
  .hp-hero__copy h1 { font-size: 34px; }
}

/* ── KOLLEKTION — character-led cards ── */
.hp-collection {
  padding: 96px 0 80px;
}
.hp-collection__inner {
  max-width: 1180px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.hp-collection__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.hp-collection__head h2 {
  font-family: var(--ff-serif); font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; line-height: 1.15; margin-top: 6px;
}
.hp-collection__intro {
  font-size: 15px; line-height: 1.55; color: var(--clr-text-muted);
  max-width: 440px; margin-top: 8px;
}
.hp-collection__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .hp-collection__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hp-collection__grid {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hp-collection__grid::-webkit-scrollbar { display: none; }
  .hp-collection__grid .hp-card { flex: 0 0 82vw; scroll-snap-align: start; }
}

/* ── Kart — per-soap color accent ── */
.hp-card__link { display: block; text-decoration: none; color: inherit; }
.hp-card__img {
  aspect-ratio: 1 / 1.08; overflow: hidden;
  border-radius: 2px;
}
.hp-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* Color worlds from actual product photography */
.hp-card--cacao .hp-card__img    { background: #3d2e28; }
.hp-card--rose .hp-card__img     { background: #c4a69a; }
.hp-card--moss .hp-card__img     { background: #6b7e5e; }
.hp-card--charcoal .hp-card__img { background: #2c3038; }

.hp-card__info { padding-top: 14px; }
.hp-card__info h3 {
  font-family: var(--ff-serif); font-size: 17px; font-weight: 400;
  line-height: 1.3; color: var(--clr-text);
}
.hp-card__mood {
  display: block; margin-top: 4px;
  font-family: var(--ff-serif); font-size: 14px; font-style: italic;
  color: var(--clr-text-muted); line-height: 1.4;
}
.hp-card__price { margin-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.hp-card__price span:first-child { font-size: 15px; font-weight: 500; color: var(--clr-text); }
.hp-card__unit { font-size: 12px; color: var(--clr-text-muted); }
.hp-card__go {
  display: block; margin-top: 12px; font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clr-text-muted); transition: color 150ms;
}
.hp-card__link:hover .hp-card__go { color: var(--clr-text); }

/* Accent stripe at card bottom derived from product world */
.hp-card--cacao  { border-bottom: 3px solid #5c3d2e; }
.hp-card--rose   { border-bottom: 3px solid #c4a69a; }
.hp-card--moss   { border-bottom: 3px solid #7a8e6a; }
.hp-card--charcoal { border-bottom: 3px solid #3a4048; }

/* ── ÜRETİM ── */
.hp-process { padding-top: 110px; padding-bottom: 96px; }
.hp-process__inner {
  display: grid; grid-template-columns: 390px 1fr; gap: 64px;
  max-width: 980px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px); align-items: center;
}
.hp-process__media { overflow: hidden; max-width: 390px; }
.hp-process__media img { width: 390px; height: 450px; object-fit: cover; display: block; }
.hp-process__text { max-width: 390px; }
.hp-process__text .hp-eyebrow { margin-bottom: 12px; }
.hp-process__text h2 {
  font-family: var(--ff-serif); font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; line-height: 1.15; margin-bottom: 16px;
}
.hp-process__text p {
  font-size: 16px; line-height: 1.6; color: var(--clr-text-soft);
  max-width: 36ch; margin-bottom: 24px;
}
@media (max-width: 767px) {
  .hp-process { padding-top: 64px; padding-bottom: 64px; }
  .hp-process__inner { display: flex; flex-direction: column; gap: 24px; }
  .hp-process__media { max-width: 100%; }
  .hp-process__media img { width: 100%; height: auto; aspect-ratio: 4 / 5; }
}

/* ── KART-HOVER ── */
/* Zweitbild-Crossfade (nur wenn .hp-card__img-hover vorhanden) */
.hp-card__img { position: relative; }
.hp-card__img-primary,
.hp-card__img-hover { display: block; }
.hp-card__img-hover {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 200ms ease;
}
.hp-card__img-hover img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) {
  .hp-card__link:hover .hp-card__img-hover,
  .hp-card__link:focus-visible .hp-card__img-hover { opacity: 1; }
}
/* Scale-Fallback für Karten ohne Zweitbild */
@media (hover: hover) {
  .hp-card__img:not(:has(.hp-card__img-hover)) img {
    transition: transform 200ms ease;
  }
  .hp-card__link:hover .hp-card__img:not(:has(.hp-card__img-hover)) img,
  .hp-card__link:focus-visible .hp-card__img:not(:has(.hp-card__img-hover)) img {
    transform: scale(1.025);
  }
}
/* Farb-Overlay aus Produktfarbe */
.hp-card__img::after {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 200ms ease;
  pointer-events: none;
}
.hp-card--cacao .hp-card__img::after    { background: #3d2e28; }
.hp-card--rose .hp-card__img::after     { background: #c4a69a; }
.hp-card--moss .hp-card__img::after     { background: #6b7e5e; }
.hp-card--charcoal .hp-card__img::after { background: #2c3038; }
@media (hover: hover) {
  .hp-card__link:hover .hp-card__img::after,
  .hp-card__link:focus-visible .hp-card__img::after { opacity: 0.12; }
}
/* "Entdecken →" Verschiebung + Unterstrich */
.hp-card__go {
  position: relative;
  transition: color 150ms, transform 200ms ease;
}
.hp-card__go::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: currentColor;
  transition: width 200ms ease;
}
@media (hover: hover) {
  .hp-card__link:hover .hp-card__go,
  .hp-card__link:focus-visible .hp-card__go {
    transform: translateX(8px); color: var(--clr-text);
  }
  .hp-card__link:hover .hp-card__go::after,
  .hp-card__link:focus-visible .hp-card__go::after { width: 100%; }
}
/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hp-card__img-hover,
  .hp-card__img img,
  .hp-card__img::after,
  .hp-card__go,
  .hp-card__go::after {
    transition: none !important;
  }
}

/* ── DAS HAUS ── */
.hp-haus {
  background: #242321; color: #e0dbd4;
  padding: 0;
}
.hp-haus__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 80px clamp(20px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center;
}
.hp-haus .hp-eyebrow { color: #7a756f; margin-bottom: 16px; }
.hp-haus__content { max-width: 560px; }
.hp-haus__content h2 {
  font-family: var(--ff-serif); font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400; line-height: 1.2; color: #f0ece6; margin-bottom: 24px;
}
.hp-haus__content p {
  font-size: 16px; line-height: 1.65; color: #a8a29e; margin-bottom: 16px;
}
.hp-haus .hp-textlink { color: #a8a29e; }
.hp-haus .hp-textlink:hover { color: #f0ece6; }
@media (max-width: 767px) {
  .hp-haus__inner { padding: 56px 20px; }
}

/* ── AUS DEM ATELIER ── */
.hp-atelier {
  background: var(--clr-bg-warm);
  padding: 0;
}
.hp-atelier__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 80px clamp(20px, 4vw, 48px) 48px;
  /* Grid: 1fr wenn kein Foto, später auf '440px 1fr' umstellen */
  display: grid; grid-template-columns: 1fr;
  justify-items: center;
}
.hp-atelier__content { max-width: 560px; }
.hp-atelier__content .hp-eyebrow { margin-bottom: 16px; }
.hp-atelier__content h2 {
  font-family: var(--ff-serif); font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400; line-height: 1.2; margin-bottom: 24px;
}
.hp-atelier__content p {
  font-size: 16px; line-height: 1.65; color: var(--clr-text-soft); margin-bottom: 16px;
}

/* ── MATERIALIEN ── */
.hp-materials {
  padding: 0;
}
.hp-materials__inner {
  max-width: 1180px; margin-inline: auto;
  padding: 56px clamp(20px, 4vw, 48px) 80px;
  display: flex; flex-direction: column; align-items: center;
}
.hp-materials__head { max-width: 620px; margin-bottom: 40px; text-align: center; }
.hp-materials__grid { width: 100%; }
.hp-materials__inner > .hp-textlink { margin-top: 0; }
.hp-materials__head h2 {
  font-family: var(--ff-serif); font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400; line-height: 1.2; margin-bottom: 16px;
}
.hp-materials__head p {
  font-size: 15px; line-height: 1.6; color: var(--clr-text-muted);
}
.hp-materials__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 32px;
}
.hp-materials__item {
  padding: 28px 32px 28px 24px;
  border-top: 1px solid var(--clr-border-light);
  border-left: 5px solid var(--mat-color, var(--clr-border));
}
.hp-materials__item strong {
  display: block; font-family: var(--ff-serif); font-size: 17px;
  font-weight: 400; margin-bottom: 6px;
}
.hp-materials__item p {
  font-size: 14px; line-height: 1.55; color: var(--clr-text-muted);
}
@media (max-width: 767px) {
  .hp-materials__grid { grid-template-columns: 1fr; }
}

/* ── KAPANIŞ ── */
.hp-closing {
  padding: 88px 20px; text-align: center;
  border-top: 1px solid var(--clr-border-light);
}
.hp-closing p {
  font-family: var(--ff-serif); font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400; line-height: 1.3; color: var(--clr-text); margin-bottom: 20px;
}

/* ── FOOTER ── */
.hp-footer {
  background: var(--clr-bg-warm); border-top: 1px solid var(--clr-border-light);
  padding: 56px 0 36px;
}
.hp-footer__inner {
  max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px);
}
.hp-footer__cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
.hp-footer__brand strong {
  font-family: var(--ff-serif); font-size: 18px; font-weight: 400;
  display: block; margin-bottom: 10px;
}
.hp-footer__brand p { font-size: 14px; line-height: 1.6; color: var(--clr-text-muted); max-width: 300px; }
.hp-footer__cols h2 {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: 14px;
}
.hp-footer__cols ul { list-style: none; padding: 0; margin: 0; }
.hp-footer__cols li { margin-bottom: 7px; }
.hp-footer__cols a { font-size: 14px; color: var(--clr-text); text-decoration: none; transition: color 150ms; }
.hp-footer__cols a:hover { color: var(--clr-text-muted); }
.hp-footer__legal {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--clr-border-light);
  display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13px; color: var(--clr-text-muted);
}
.hp-footer__legal a { color: var(--clr-text-muted); }
@media (max-width: 767px) {
  .hp-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hp-footer__brand { grid-column: span 2; }
}

/* Text-Link (globaler Pattern) */
.text-link {
  font-family: var(--ff-sans); font-size: 13px; font-weight: 500;
  color: var(--clr-text); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 150ms;
}
.text-link:hover { color: var(--clr-text-muted); }

/* ================================================================
   BUTTONS — Schwarz, kein Radius, kein Schatten, kein translateY
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--touch-min);
  padding: var(--sp-sm) var(--sp-xl);
  font-family: var(--ff-sans);
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-bg); background-color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  border-radius: 0;
  cursor: pointer;
  transition: background-color var(--dur-normal) var(--ease-out);
}
.btn:hover {
  background-color: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  color: var(--clr-bg);
}
.btn:active { background-color: var(--clr-text); }

.btn--outline {
  background-color: transparent; color: var(--clr-accent);
}
.btn--outline:hover {
  background-color: var(--clr-accent); color: var(--clr-bg);
}

.btn--disabled, .btn[aria-disabled="true"] {
  background-color: var(--clr-border); border-color: var(--clr-border);
  color: var(--clr-text-muted); cursor: not-allowed; pointer-events: none;
}
.btn--sold-out {
  background-color: transparent; border-color: var(--clr-sold-out);
  color: var(--clr-sold-out); cursor: not-allowed; pointer-events: none;
}

/* ================================================================
   PRODUKTRASTER — 3 Spalten Desktop, 2 Tablet + Mobil
   Kein farbiger Hintergrund → leere Zellen bleiben unsichtbar.
   ================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 56rem) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-grid--home {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 56rem) {
  .product-grid--home { grid-template-columns: repeat(4, 1fr); }
}
.home-products { padding-block: var(--sp-3xl); }
.home-products-cta {
  text-align: center;
  margin-top: var(--sp-2xl);
}

/* ================================================================
   PRODUKTKARTE — Bild, Name, Eyebrow, Preis, Warenkorb-Button
   ================================================================ */
.card {
  background: var(--clr-bg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (hover: hover) {
  .card:hover .card-media img { transform: scale(1.04); }
}

.card-link {
  display: block; text-decoration: none; color: inherit;
}

.card-media {
  display: block; overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--clr-bg-warm);
  border-radius: 2px;
  border: 1px solid var(--clr-border-light);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .card-media img { transition: none; }
}

.card-body {
  padding: var(--sp-sm) 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-family: var(--ff-serif); font-weight: var(--fw-regular);
  font-size: var(--fs-base); margin-bottom: var(--sp-2xs);
  letter-spacing: var(--ls-tight); color: var(--clr-text);
  line-height: var(--lh-snug);
}
.card-body h3 a {
  text-decoration: none; color: inherit;
  transition: color var(--dur-fast) var(--ease-out);
}
.card-body h3 a:hover { color: var(--clr-text-soft); }

.card-tag {
  display: block;
  font-size: var(--fs-xs); letter-spacing: 0.02em;
  text-transform: none; color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
  line-height: var(--lh-snug);
  min-height: 1.2em;
}

.card-footer {
  display: flex;
  align-items: baseline;
  gap: var(--sp-sm);
  margin-top: auto;
  padding-top: var(--sp-xs);
}
.card-price {
  font-size: var(--fs-base); font-weight: var(--fw-semi);
  color: var(--clr-text); margin: 0;
  white-space: nowrap;
}
.card-grundpreis {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  margin: 0; white-space: nowrap;
}

/* Legacy .price-block + .btn still used on buybox pages */
.price-block { margin-bottom: var(--sp-xs); }
.price {
  font-family: var(--ff-sans);
  font-size: var(--fs-base); font-weight: var(--fw-regular);
  color: var(--clr-text);
}
.price-meta {
  display: block;
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  color: var(--clr-text-muted); margin-top: var(--sp-2xs);
}
.price-meta a { color: var(--clr-text-muted); text-decoration: underline; }

.stock-note {
  display: block; text-align: center;
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-sold-out); margin-top: var(--sp-2xs);
}
.stock-note--low {
  color: var(--clr-text-soft);
}

.line-teaser { display: none; }

/* ================================================================
   PRODUKTDETAIL
   ================================================================ */
.product-detail { padding-block: var(--sp-lg) var(--sp-3xl); }

.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl); align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--sp-3xl) + var(--sp-lg)); }
.product-gallery-main {
  overflow: hidden;
  background-color: var(--clr-bg-warm); margin-bottom: var(--sp-sm);
  border-radius: 2px;
  border: 1px solid var(--clr-border-light);
}
.product-gallery-main img {
  width: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-gallery-main:hover img { transform: scale(1.08); }

.product-thumbs, .product-gallery-thumbs { display: flex; gap: var(--sp-xs); }
.product-thumbs button, .product-thumb {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid var(--clr-border);
  overflow: hidden; cursor: pointer; background: none; padding: 0;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.product-thumbs button:hover, .product-thumbs button[aria-current="true"],
.product-thumb:hover, .product-thumb.is-active { border-color: var(--clr-text); }
.product-thumbs button img, .product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Buybox */
.buybox .eyebrow {
  display: inline-block;
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-xs);
}
.buybox h1 {
  font-size: var(--fs-2xl); font-weight: var(--fw-regular);
  margin-bottom: var(--sp-xs);
}
.buybox .buybox-subtitle {
  font-family: var(--ff-serif); font-style: italic;
  font-size: var(--fs-base); color: var(--clr-text-soft);
  margin-bottom: var(--sp-lg);
}
.buybox .price-block {
  padding-block: var(--sp-md);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-lg);
}
/* Preis in Buybox: gleiche Schrift wie Name, nicht fett */
.buybox .price {
  font-size: var(--fs-lg); font-weight: var(--fw-regular);
}
.buybox .btn { width: 100%; margin-bottom: var(--sp-sm); }

/* Chips entfernt — stattdessen product-meta */
.product-chips { display: none; }
.chip { display: none; }

.product-meta { margin-top: var(--sp-lg); }
.product-meta dt {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-2xs);
}
.product-meta dd {
  font-size: var(--fs-sm); color: var(--clr-text-soft);
  margin-bottom: var(--sp-sm); padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border-light);
}
.product-meta dd:last-child { border-bottom: none; }

@media (max-width: 48rem) {
  .product-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .product-gallery { position: static; }
}

/* Produkt-Akkordeon (details/summary) */
.product-accordion {
  border-top: 1px solid var(--clr-border);
}
.product-accordion details {
  border-bottom: 1px solid var(--clr-border);
}
.product-accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-md) 0; cursor: pointer;
  font-size: var(--fs-lg); font-weight: var(--fw-medium);
  letter-spacing: var(--ls-tight); color: var(--clr-text);
  list-style: none;
}
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion summary::after {
  content: '+'; font-size: var(--fs-xl); font-weight: var(--fw-light);
  color: var(--clr-text-muted); transition: transform .2s ease;
  flex-shrink: 0; margin-left: var(--sp-md);
}
.product-accordion details[open] > summary::after {
  content: '−';
}
.product-accordion .accordion-body {
  padding-bottom: var(--sp-xl); max-width: 65ch;
}
.product-accordion .accordion-body p {
  color: var(--clr-text-soft); line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-sm);
}
.product-accordion .accordion-body strong { color: var(--clr-text); }
.product-accordion .accordion-body .inci-label {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-2xs);
}
.product-accordion .accordion-body .inci-text {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  line-height: var(--lh-relaxed); word-break: break-word;
}
.product-accordion .accordion-body .ingredients-list {
  font-size: var(--fs-sm); color: var(--clr-text-soft); line-height: var(--lh-relaxed);
}
.product-accordion .accordion-body .ingredients-list strong { color: var(--clr-text); }

/* Rohstoffe im Detail — verschachtelte <details> */
.rohstoff-detail {
  border: 1px solid var(--clr-border-light);
  border-radius: 6px;
  margin-bottom: var(--sp-sm);
  background: var(--clr-bg-warm);
}
.rohstoff-detail > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-sm); font-weight: var(--fw-medium);
  cursor: pointer; list-style: none;
}
.rohstoff-detail > summary::-webkit-details-marker { display: none; }
.rohstoff-detail > summary::after {
  content: '+'; font-size: var(--fs-base); font-weight: var(--fw-light);
  color: var(--clr-text-muted); flex-shrink: 0; margin-left: var(--sp-sm);
}
.rohstoff-detail[open] > summary::after { content: '\2212'; }
.rohstoff-detail[open] > summary {
  border-bottom: 1px solid var(--clr-border-light);
}
.rohstoff-inci {
  font-weight: var(--fw-regular); color: var(--clr-text-muted);
  font-size: var(--fs-xs); margin-left: var(--sp-xs);
}
.rohstoff-body {
  padding: var(--sp-md);
}
.rohstoff-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-2xs) var(--sp-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
}
.rohstoff-dl dt {
  color: var(--clr-text-muted);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}
.rohstoff-dl dd {
  color: var(--clr-text-soft);
  margin: 0;
}
.rohstoff-text {
  font-size: var(--fs-sm); color: var(--clr-text-soft);
  line-height: var(--lh-relaxed); margin-bottom: var(--sp-xs);
}
.rohstoff-quellen {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  margin: 0;
}
@media (max-width: 36rem) {
  .rohstoff-dl {
    grid-template-columns: 1fr;
    gap: var(--sp-2xs);
  }
  .rohstoff-dl dt { margin-top: var(--sp-xs); }
  .rohstoff-body { padding: var(--sp-sm); }
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  padding-block: var(--sp-sm);
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--clr-text-muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--sp-2xs); }
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2xs); color: var(--clr-border); }
.breadcrumb a { color: var(--clr-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--clr-text); }

/* ================================================================
   CONTENT / LEGAL / KONTAKT
   ================================================================ */
.content-page { padding-block: var(--sp-2xl) var(--sp-3xl); }
.content-page h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-md); }
.content-page h2 { font-size: var(--fs-xl); margin-top: var(--sp-2xl); margin-bottom: var(--sp-sm); }
.content-page h3 { font-size: var(--fs-lg); margin-top: var(--sp-xl); margin-bottom: var(--sp-xs); }
.content-page p { color: var(--clr-text-soft); line-height: var(--lh-relaxed); margin-bottom: var(--sp-sm); max-width: 65ch; }
.content-page ul, .content-page ol {
  color: var(--clr-text-soft); line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-sm); padding-left: var(--sp-xl);
}
.content-page ul { list-style-type: disc; }
.content-page ol { list-style-type: decimal; }
.content-page li + li { margin-top: var(--sp-2xs); }
.content-page strong { color: var(--clr-text); }
.content-page a { text-decoration: underline; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1px; background: var(--clr-border);
  margin-block: var(--sp-xl);
}
.process-step {
  padding: var(--sp-lg); background: var(--clr-bg);
}
.process-step-label {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-xs);
}
.process-step h3 { margin-bottom: var(--sp-2xs); }
.process-step p { font-size: var(--fs-sm); max-width: 65ch; }

.legal-page { padding-block: var(--sp-2xl) var(--sp-3xl); }
.legal-page h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-lg); }
.legal-page h2 { font-size: var(--fs-xl); margin-top: var(--sp-xl); margin-bottom: var(--sp-xs); }
.legal-page h3 { font-size: var(--fs-md); margin-top: var(--sp-md); margin-bottom: var(--sp-2xs); }
.legal-page p { color: var(--clr-text-soft); line-height: var(--lh-relaxed); margin-bottom: var(--sp-sm); max-width: 65ch; }
.legal-page ul, .legal-page ol {
  color: var(--clr-text-soft); line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-sm); padding-left: var(--sp-xl);
}
.legal-page ul { list-style-type: disc; }
.legal-page ol { list-style-type: decimal; }
.legal-page li + li { margin-top: var(--sp-2xs); }
.legal-page address { font-style: normal; margin-bottom: var(--sp-sm); }
.legal-page a { text-decoration: underline; }
.legal-page table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-sm); font-size: var(--fs-sm); }
.legal-page th, .legal-page td { text-align: left; padding: var(--sp-xs) var(--sp-sm); border-bottom: 1px solid var(--clr-border); }
.legal-page th { font-weight: var(--fw-semi); color: var(--clr-text); }

.contact-info {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1px; background: var(--clr-border); margin-top: var(--sp-xl);
}
.contact-card {
  padding: var(--sp-lg); background: var(--clr-bg);
}
.contact-card h3 { margin-bottom: var(--sp-xs); }
.contact-card p { font-size: var(--fs-sm); color: var(--clr-text-soft); }
.contact-card a { font-weight: var(--fw-regular); }

/* ================================================================
   FOOTER — Elfenbein, schwarze Schrift, 1px Linie oben
   ================================================================ */
.site-footer {
  background-color: var(--clr-bg-warm);
  color: var(--clr-text);
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-3xl) var(--sp-lg);
  margin-top: var(--sp-3xl);
}
.site-footer a {
  color: var(--clr-text-soft); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-footer a:hover { color: var(--clr-text); }

.footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl); padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--clr-border);
}
.footer-tagline {
  text-align: center; padding-top: var(--sp-sm);
  font-family: var(--ff-serif); font-size: var(--fs-sm);
  color: var(--clr-text-muted); letter-spacing: var(--ls-tight);
}
.footer-brand-name {
  font-family: var(--ff-serif); font-size: var(--fs-lg);
  font-weight: var(--fw-regular); color: var(--clr-text);
  margin-bottom: var(--sp-2xs);
}
.footer-brand-line {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted); margin-bottom: var(--sp-sm);
}
.footer-brand p { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--clr-text-muted); }

.site-footer h2 {
  font-family: var(--ff-sans);
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text); margin-bottom: var(--sp-sm);
}
.site-footer ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.site-footer li a { font-size: var(--fs-sm); }

.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-sm);
  padding-top: var(--sp-lg);
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--clr-text-muted);
}

@media (max-width: 48rem) {
  .footer-cols { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

/* ================================================================
   VERTRAUENSLEISTE — schmal, 11px, Grossbuchstaben
   ================================================================ */
.trust-bar {
  background-color: var(--clr-bg-warm);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--sp-xs);
}
.trust-bar .wrap {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--sp-xs) var(--sp-lg);
}
.trust-bar span {
  font-size: var(--fs-label); font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-soft);
}
.trust-bar .sep { color: var(--clr-border); }

/* ================================================================
   COLLECTION LAYOUT — Sidebar + Grid
   ================================================================ */
/* Mobile first: single column, filters stacked above grid */
.collection-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 56rem) {
  .collection-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: var(--sp-2xl);
    align-items: start;
  }
}

/* ================================================================
   FILTER SIDEBAR
   ================================================================ */
.filter-sidebar {
  padding-block: var(--sp-sm);
}
.search-box { margin-bottom: var(--sp-md); }
.search-input {
  width: 100%; padding: var(--sp-xs) var(--sp-sm);
  font-family: var(--ff-sans); font-size: var(--fs-sm);
  border: 1px solid var(--clr-border); background: var(--clr-bg);
  color: var(--clr-text); outline: none;
}
.search-input:focus { border-color: var(--clr-text); }
.search-input::placeholder { color: var(--clr-text-muted); }
.search-empty {
  font-size: var(--fs-sm); color: var(--clr-text-muted);
  padding: var(--sp-xl) 0; text-align: center;
}
.search-empty a { color: var(--clr-text); }

.filter-count {
  font-size: var(--fs-sm); color: var(--clr-text);
  margin-bottom: var(--sp-2xs);
}
.filter-mwst {
  font-size: 11px; color: var(--clr-text-muted);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border);
}

/* --- Filter group: <details>/<summary> --- */
.filter-group {
  border-bottom: 1px solid var(--clr-border-light);
  padding-block: var(--sp-xs);
}
.filter-group summary {
  font-size: var(--fs-label); font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text); cursor: pointer;
  padding: var(--sp-sm) 0;
  min-height: var(--touch-min);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.filter-group summary::after {
  content: '+'; font-size: var(--fs-sm); color: var(--clr-text-muted);
}
.filter-group[open] summary::after { content: '\2212'; }
.filter-group summary::-webkit-details-marker { display: none; }

.filter-group ul {
  padding: 0 0 var(--sp-xs); display: flex; flex-direction: column; gap: 1px;
}
.filter-group li {
  display: flex; align-items: center; gap: var(--sp-xs);
}
.filter-group a {
  font-size: var(--fs-sm); color: var(--clr-text-soft);
  text-decoration: none; padding: var(--sp-xs) 0;
  min-height: var(--touch-min); display: inline-flex; align-items: center;
  pointer-events: auto; position: relative; z-index: 1;
  transition: color var(--dur-fast) var(--ease-out);
}
.filter-group a:hover { color: var(--clr-text); }

.filter-active {
  font-size: var(--fs-sm); font-weight: var(--fw-medium);
  color: var(--clr-text);
}
.filter-clear {
  font-size: var(--fs-base); color: var(--clr-text-muted);
  text-decoration: none; line-height: 1;
}
.filter-clear:hover { color: var(--clr-text); }

/* --- Desktop (≥56rem): groups always open, no toggle indicator --- */
@media (min-width: 56rem) {
  .filter-sidebar {
    position: sticky; top: calc(var(--sp-3xl) + var(--sp-lg));
  }
  /* Desktop: groups always open, summary is just a heading */
  .filter-group > summary {
    cursor: default;
  }
  .filter-group > summary::marker { display: none; content: ''; }
  .filter-group summary::after { display: none; }
}

/* --- Mobile (<56rem): hidden by default, shown in drawer by JS --- */
@media (max-width: 55.99rem) {
  .filter-sidebar {
    position: static;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: var(--sp-md);
    margin-bottom: var(--sp-lg);
  }
}

/* ── Collection Bar (Sortierung + Anzahl) ── */
.collection-bar {
  display: flex; align-items: center; gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border-light);
}
.collection-count {
  font-size: var(--fs-sm); color: var(--clr-text-muted);
}
.collection-sort {
  margin-left: auto;
  font-family: var(--ff-sans); font-size: var(--fs-sm);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 2px;
  padding: var(--sp-2xs) var(--sp-sm);
  cursor: pointer;
}
.collection-sort:focus { border-color: var(--clr-text); outline: none; }
.filter-toggle {
  padding: var(--sp-xs) var(--sp-md);
  font-size: var(--fs-xs);
  background: transparent; color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
@media (min-width: 56rem) {
  .filter-toggle { display: none; }
}

/* ── Mobile Filter Drawer ── */
.filter-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.3);
  display: flex; justify-content: flex-end;
}
.filter-overlay[hidden] { display: none; }
.filter-drawer {
  background: var(--clr-bg);
  width: min(85vw, 360px); height: 100%;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: -4px 0 16px rgba(0,0,0,0.08);
}
.filter-drawer .filter-sidebar {
  display: block !important; border: none; padding: 0; margin: 0;
}
.filter-drawer .filter-count,
.filter-drawer .filter-mwst,
.filter-drawer .search-box { display: none; }
.filter-drawer-close {
  display: flex; align-items: center; justify-content: center;
  width: var(--touch-min); height: var(--touch-min);
  font-size: var(--fs-lg); background: none; border: none;
  color: var(--clr-text); cursor: pointer;
  margin-left: auto; margin-bottom: var(--sp-md);
}

/* ================================================================
   SCROLL-DRIVEN ANIMATIONS
   ================================================================ */
@supports (animation-timeline: view()) {
  .fade-in-up {
    opacity: 0; transform: translateY(var(--sp-md));
    animation: fadeInUp var(--dur-slow) var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
  }
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
}
@supports not (animation-timeline: view()) {
  .fade-in-up { opacity: 1; transform: none; }
}

/* ================================================================
   WARENKORB — Cart Badge, Cart Page, Cart Buttons
   ================================================================ */

/* Header-Icon-Wrapper (Konto + Warenkorb als Paar) */
.header-icons {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}

/* Header-Icon-Links (Konto + Warenkorb) */
.account-link,
.cart-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  color: var(--clr-text); text-decoration: none;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.account-link:hover,
.cart-link:hover { color: var(--clr-text-soft); }
.account-link svg,
.cart-link svg { width: 22px; height: 22px; flex-shrink: 0; }

.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--clr-accent); color: var(--clr-bg);
  font-size: 10px; font-weight: var(--fw-semi);
  min-width: 16px; height: 16px; line-height: 16px;
  text-align: center; border-radius: 50%;
  padding: 0 3px;
}

/* Card quick-add button */
.card-cart-btn {
  display: block; width: 100%; margin-top: var(--sp-sm);
  font-size: var(--fs-xs); font-weight: var(--fw-semi);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--clr-bg); background: var(--clr-text);
  border: 1px solid var(--clr-text);
  padding: var(--sp-sm) var(--sp-md);
  cursor: pointer; text-align: center;
  transition: opacity var(--dur-fast) var(--ease-out);
  min-height: var(--touch-min);
}
.card-cart-btn:hover { opacity: 0.8; }
.card-cart-btn:focus-visible {
  outline: 2px solid var(--clr-focus); outline-offset: 2px;
}
.card-cart-btn--sold {
  background: transparent; color: var(--clr-text-muted);
  border-color: var(--clr-border); cursor: default;
}
.card-cart-btn--sold:hover { opacity: 1; }
/* Desktop: Button nur bei Hover, mobil immer sichtbar */
@media (hover: hover) and (min-width: 36rem) {
  .card-cart-btn:not(.card-cart-btn--sold) {
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease-out);
  }
  .card:hover .card-cart-btn:not(.card-cart-btn--sold),
  .card-cart-btn:focus-visible {
    opacity: 1;
  }
}

/* Buybox cart button */
.btn--cart {
  background: transparent; color: var(--clr-accent);
  border-color: var(--clr-accent);
}
.btn--cart:hover {
  background: var(--clr-accent); color: var(--clr-bg);
}
.buybox .btn--cart { width: 100%; }
.buybox .btn--stripe { width: 100%; margin-bottom: var(--sp-xs); }

/* Cart page */
.cart-page { padding-block: var(--sp-3xl); }
.cart-page h1 { margin-bottom: var(--sp-xl); }

.cart-empty {
  font-size: var(--fs-md); color: var(--clr-text-muted);
  margin-bottom: var(--sp-lg);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: var(--sp-sm);
  align-items: center;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
@media (max-width: 36rem) {
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: var(--sp-xs);
  }
  .cart-item-total { grid-column: 2 / 3; }
  .cart-remove { grid-column: 3; grid-row: 1; }
}
.cart-item-img img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--clr-border-light);
}
.cart-item-info strong {
  display: block; font-family: var(--ff-serif);
  font-size: var(--fs-base); font-weight: var(--fw-regular);
}
.cart-item-price {
  display: block; font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.cart-item-qty {
  display: inline-flex; align-items: center; gap: var(--sp-2xs);
}
.cart-qty-btn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--clr-border);
  background: transparent; cursor: pointer;
  font-size: var(--fs-base); color: var(--clr-text);
  transition: background var(--dur-fast);
}
.cart-qty-btn:hover { background: var(--clr-bg-warm); }
.cart-item-total { font-size: var(--fs-base); }
.cart-remove {
  background: none; border: none; cursor: pointer;
  font-size: var(--fs-lg); color: var(--clr-text-muted);
  padding: var(--sp-2xs);
  transition: color var(--dur-fast);
}
.cart-remove:hover { color: var(--clr-text); }

/* Cart summary */
.cart-summary {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 2px solid var(--clr-text);
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: var(--fs-md); margin-bottom: var(--sp-xs);
}
.cart-shipping {
  font-size: var(--fs-sm); color: var(--clr-text-soft);
  margin-bottom: var(--sp-sm);
}
.cart-ship-free {
  color: #2d6a2e; font-weight: var(--fw-semi);
}
.cart-tax {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  margin-bottom: var(--sp-2xs);
}
.cart-legal {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-lg);
}
.cart-legal a { color: var(--clr-text-soft); }
.cart-checkout {
  width: 100%;
}
.cart-coupon-hint {
  font-size: var(--fs-xs); color: var(--clr-text-muted);
  text-align: center; margin-top: var(--sp-sm);
}

/* ================================================================
   KUNDENKONTO — Login, Registrierung, Dashboard
   ================================================================ */

.konto-form {
  max-width: 28rem; margin: 0 auto;
}
.konto-form label {
  display: block; margin-bottom: var(--sp-md);
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--clr-text);
}
.konto-form input[type="text"],
.konto-form input[type="email"],
.konto-form input[type="password"] {
  display: block; width: 100%; margin-top: var(--sp-2xs);
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-sans);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 4px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.konto-form input:focus {
  border-color: var(--clr-accent); outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.konto-form textarea {
  display: block; width: 100%; min-height: 160px; margin-top: var(--sp-2xs);
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-sans);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 4px;
  resize: vertical;
}
.konto-form textarea:focus {
  border-color: var(--clr-accent); outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.konto-form .btn {
  width: 100%; margin-top: var(--sp-sm);
}
.konto-form .form-row {
  display: grid; grid-template-columns: 1fr 2fr; gap: var(--sp-md);
}
.form-msg {
  font-size: var(--fs-sm); color: #b91c1c;
  min-height: 1.4em; margin: var(--sp-xs) 0 0;
}
.form-msg--ok { color: #2d6a2e; }

/* Konto-Dashboard */
.konto-section {
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--clr-border-light);
}
.konto-section:last-child { border-bottom: none; }
.konto-section h2 {
  font-size: var(--fs-md); margin-bottom: var(--sp-md);
}
.konto-section form label {
  display: block; margin-bottom: var(--sp-md);
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
}
.konto-section form input[type="text"] {
  display: block; width: 100%; margin-top: var(--sp-2xs);
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-sans);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 4px;
}
.konto-section form input:focus {
  border-color: var(--clr-accent); outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.konto-actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; }
.btn--danger {
  background: #b91c1c; border-color: #b91c1c; color: #fff;
}
.btn--danger:hover { background: #991b1b; border-color: #991b1b; }

/* Honeypot (für Bots, für Menschen unsichtbar) */
.hp-field { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; opacity:0 !important; }

/* ================================================================
   KONTAKTSEITE — Zweispaltig Desktop, Einspaltig Mobil
   ================================================================ */
.kontakt-grid {
  display: grid;
  gap: var(--sp-3xl);
}
@media (min-width: 56rem) {
  .kontakt-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}
/* Mobil: Formular zuerst */
@media (max-width: 55.99rem) {
  .kontakt-grid > #kontakt-form-wrap { order: -1; }
}

.kontakt-info h2 {
  font-family: var(--ff-serif); font-size: var(--fs-md);
  margin-bottom: var(--sp-md);
}
.kontakt-info h3 {
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: var(--sp-xl) 0 var(--sp-sm);
}
.kontakt-info ul {
  list-style: none; padding: 0; margin: 0;
}
.kontakt-info li {
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.kontakt-info li:last-child { border-bottom: none; }
.kontakt-info a { color: var(--clr-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.kontakt-antwortzeit {
  font-size: var(--fs-sm); color: var(--clr-text-muted);
  margin-top: var(--sp-sm);
}

/* Kontaktformular-Felder */
.kontakt-form .form-field { margin-bottom: var(--sp-md); }
.kontakt-form label {
  display: block;
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-bottom: var(--sp-2xs);
}
.kontakt-form input[type="text"],
.kontakt-form input[type="email"] {
  display: block; width: 100%;
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-sans);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.kontakt-form textarea {
  display: block; width: 100%; min-height: 160px;
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--fs-base); font-family: var(--ff-sans);
  color: var(--clr-text); background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: 2px;
  resize: vertical;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: var(--clr-text); outline: none;
}
.kontakt-form .form-optional {
  font-weight: var(--fw-regular); color: var(--clr-text-muted);
}
.kontakt-form .form-checkbox {
  display: flex; align-items: flex-start; gap: var(--sp-sm);
  font-weight: var(--fw-regular); font-size: var(--fs-sm);
  line-height: var(--lh-relaxed); cursor: pointer;
}
.kontakt-form .form-checkbox input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0;
}
.kontakt-submit { width: 100%; margin-top: var(--sp-sm); }
.field-error {
  font-size: var(--fs-xs); color: #b91c1c;
  min-height: 0; margin: var(--sp-2xs) 0 0;
}
.field-error:empty { display: none; }

/* Hinweis Hygieneversiegelung */
.hinweis-versiegelung {
  font-size: var(--fs-xs); line-height: var(--lh-relaxed);
  color: var(--clr-text-muted);
  border-left: 3px solid var(--clr-border);
  padding: var(--sp-sm) var(--sp-md);
  margin: var(--sp-md) 0;
}

/* Marken-Übersicht */
.marken-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2xl);
  align-items: center;
  margin-bottom: var(--sp-3xl);
}
.marken-card-img { overflow: hidden; border-radius: var(--radius-sm, 4px); }
.marken-card-img img { width: 100%; height: auto; display: block; }
.marken-card-body h2 {
  font-family: var(--ff-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-regular); margin-bottom: var(--sp-sm);
}
.marken-card-body p {
  font-size: var(--fs-base); line-height: var(--lh-relaxed);
  color: var(--clr-text-soft); margin-bottom: var(--sp-xs);
}
@media (max-width: 48rem) {
  .marken-card { grid-template-columns: 1fr; gap: var(--sp-lg); }
}

/* ================================================================
   LEXIKON — Rohstoff-Nachschlagebereich
   ================================================================ */

/* ── Gemeinsame Breite ── */
.lex-wrap {
  max-width: 46rem; margin-inline: auto;
  padding-inline: var(--wrap-px);
}

/* ── Übersichtsseite ── */
.lex-hero {
  padding: var(--sp-4xl) 0 var(--sp-2xl);
  text-align: center;
}
.lex-hero h1 {
  font-family: var(--ff-serif); font-size: var(--fs-display);
  font-weight: var(--fw-regular); margin: var(--sp-sm) 0 var(--sp-xs);
}
.lex-overview {
  padding-bottom: var(--sp-4xl);
}
.lex-overview h2 {
  font-family: var(--ff-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  margin: var(--sp-3xl) 0 var(--sp-sm); padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--clr-border);
}
.lex-overview h2:first-of-type { margin-top: 0; }
.lex-index-list {
  list-style: none; padding: 0; margin: 0;
}
.lex-index-list li {
  display: flex; align-items: baseline;
  flex-wrap: wrap; gap: 0 var(--sp-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border-light);
  line-height: var(--lh-snug);
}
.lex-index-list li:last-child { border-bottom: none; }
.lex-index-list .lex-entry-name {
  font-size: var(--fs-base); font-weight: var(--fw-medium);
}
.lex-index-list .lex-entry-name a {
  color: var(--clr-text); text-decoration: none;
}
.lex-index-list .lex-entry-name a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
}
.lex-index-list .lex-entry-latin {
  font-size: var(--fs-sm); color: var(--clr-text-muted);
  font-style: italic;
}
.lex-index-list .lex-entry-bl {
  margin-left: auto;
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--clr-text-muted);
  white-space: nowrap; text-align: right;
  flex-shrink: 0;
}

/* ── Beleglage-Kennzeichen (Detailseite) ── */
.lex-beleglage {
  display: inline-block;
  font-size: var(--fs-label); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  padding: var(--sp-2xs) var(--sp-sm);
  margin-top: var(--sp-sm);
}

/* ── Detailseite ── */
.lex-article {
  padding: var(--sp-lg) 0 var(--sp-4xl);
}
.lex-header {
  margin-bottom: var(--sp-3xl);
}
.lex-header h1 {
  font-family: var(--ff-serif); font-size: var(--fs-2xl);
  font-weight: var(--fw-regular); margin: 0;
}

/* Abschnitte */
.lex-section {
  margin-bottom: var(--sp-3xl);
}
.lex-section + .lex-section {
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--clr-border-light);
}
.lex-section h2 {
  font-family: var(--ff-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  margin: 0 0 var(--sp-lg);
}
.lex-section h3 {
  font-family: var(--ff-serif); font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  margin: var(--sp-xl) 0 var(--sp-sm);
  color: var(--clr-text);
}
.lex-section h3:first-child { margin-top: 0; }

/* Definitionsliste (Identität) */
.lex-dl {
  display: grid; grid-template-columns: 11rem 1fr;
  gap: 0; font-size: var(--fs-base); line-height: var(--lh-normal);
}
.lex-dl dt {
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--clr-text-muted); letter-spacing: 0.02em;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.lex-dl dd {
  margin: 0; padding: var(--sp-sm) 0 var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--clr-border-light);
}
.lex-dl dt:last-of-type,
.lex-dl dd:last-of-type { border-bottom: none; }

/* Inhaltsstoff-Tabelle */
.lex-table {
  width: 100%; border-collapse: collapse;
  font-size: var(--fs-sm); line-height: var(--lh-normal);
  margin-bottom: var(--sp-md);
}
.lex-table th {
  text-align: left; font-weight: var(--fw-semi);
  font-size: var(--fs-label); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--clr-text-muted);
  padding: var(--sp-sm) var(--sp-md) var(--sp-sm) 0;
  border-bottom: 2px solid var(--clr-border);
}
.lex-table td {
  padding: var(--sp-sm) var(--sp-md) var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border-light);
  vertical-align: top;
}
.lex-table tr:last-child td { border-bottom: none; }
.lex-table td:first-child { font-weight: var(--fw-medium); }

/* Studien-Blöcke */
.lex-study {
  border-left: 3px solid var(--clr-border);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-lg);
  background: var(--clr-bg-warm);
}
.lex-study p {
  margin: 0 0 var(--sp-xs);
  font-size: var(--fs-sm); line-height: var(--lh-relaxed);
}
.lex-study p:last-child { margin-bottom: 0; }
.lex-hautstatus {
  display: block;
  font-size: var(--fs-label); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}
.lex-study .lex-source {
  margin-top: var(--sp-md); padding-top: var(--sp-sm);
  border-top: 1px solid var(--clr-border-light);
}
.lex-caveat {
  color: var(--clr-text-muted); font-style: italic;
}
.lex-empty {
  color: var(--clr-text-muted); font-size: var(--fs-sm);
  font-style: italic; margin: 0;
}
/* Kompakte leere Studienlage */
.lex-studies-empty {
  color: var(--clr-text-muted); font-size: var(--fs-sm);
  font-style: italic;
  padding: var(--sp-md) 0;
}
.lex-studies-empty ul {
  list-style: none; padding: 0; margin: var(--sp-sm) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-2xs) var(--sp-md);
  font-style: normal;
}
.lex-studies-empty li::before {
  content: "—"; margin-right: var(--sp-xs);
  color: var(--clr-border);
}
.lex-studies-intro {
  font-size: var(--fs-sm); line-height: var(--lh-relaxed);
  color: var(--clr-text-muted); margin-bottom: var(--sp-lg);
}

/* Quellen & Notizen */
.lex-source {
  font-size: var(--fs-xs); line-height: var(--lh-relaxed);
  color: var(--clr-text-muted);
}
.lex-sources { margin-top: var(--sp-lg); }
.lex-sources p { font-size: var(--fs-sm); margin-bottom: var(--sp-xs); }
.lex-sources ul { list-style: none; padding: 0; margin: 0; }
.lex-sources li {
  font-size: var(--fs-xs); line-height: var(--lh-relaxed);
  color: var(--clr-text-muted);
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.lex-sources li:last-child { border-bottom: none; }
.lex-quelle-pruefung {
  font-style: italic; color: var(--clr-text-muted);
}
.lex-note {
  font-size: var(--fs-sm); line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  margin-top: var(--sp-md);
}
.lex-list {
  padding-left: var(--sp-lg); margin: var(--sp-xs) 0;
}
.lex-list li {
  font-size: var(--fs-sm); line-height: var(--lh-relaxed);
  padding: var(--sp-2xs) 0;
}

/* Rechtlicher Hinweis (am Seitenende) */
.lex-hinweis {
  font-size: var(--fs-xs); line-height: var(--lh-relaxed);
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--sp-lg);
  margin-top: var(--sp-3xl);
}

/* Produktliste im Lexikon */
.lex-product-list {
  list-style: none; padding: 0; margin: 0;
}
.lex-product-list li {
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--clr-border-light);
  font-size: var(--fs-sm);
}
.lex-product-list li:last-child { border-bottom: none; }
.lex-product-list a {
  color: var(--clr-text); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
}
.lex-product-list a:hover { color: var(--clr-accent-hover); }

/* INCI-Links in Produktseiten */
.inci-text a {
  color: var(--clr-text-soft); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
  text-decoration-color: var(--clr-border);
}
.inci-text a:hover {
  color: var(--clr-text); text-decoration-color: var(--clr-text);
}

/* ── Responsive Lexikon ── */
@media (max-width: 36rem) {
  .lex-dl { grid-template-columns: 1fr; }
  .lex-dl dt { padding-bottom: 0; border-bottom: none; }
  .lex-dl dd { padding-left: 0; padding-top: var(--sp-2xs); }
  .lex-study { padding: var(--sp-sm) var(--sp-md); }
  .lex-index-list li { flex-direction: column; gap: var(--sp-2xs); }
  .lex-index-list .lex-entry-bl { margin-left: 0; }
  .lex-studies-empty ul { flex-direction: column; }
}
