/* ==========================================================================
   Lavalis – Design-Grundlage (v2)
   Editorial, viel Weißraum, warme Naturtöne + ein Hauch "Domstein"-Grau als
   Nick zur Herkunftsgeschichte. Referenzen: kerzenmanufaktur.com (sanfte
   Pastelltöne, alternierende Story-Blöcke, Pill-Buttons mit Pfeil) und
   beske-manufaktur.de (großes Lifestyle-Foto im Hero, ruhige Typografie).
   Hauptthema der gesamten Seite: das Wachs stammt aus den Opferkerzen des
   Kölner Doms und wird in Köln zu neuen Flammschalen verarbeitet.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #faf6f0;
  --color-bg-alt: #f1e9de;
  --color-surface: #ffffff;
  --color-text: #292521;
  --color-text-muted: #6b6055;
  --color-terracotta: #c1663e;
  --color-terracotta-dark: #a34f2c;
  --color-olive: #6b7a4f;
  --color-border: #e5dcce;
  --color-amazon: #232f3e;
  --color-amazon-orange: #ff9900;

  /* "Domstein" – kühles Steingrau, Anspielung auf den Kölner Dom-Trachyt */
  --color-stone: #f0efe9;
  --color-stone-dark: #4c5058;
  --color-stone-line: #dcdad2;
  --color-gold: #b8863b;
  --color-gold-light: #e3c07a;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(43, 36, 32, 0.06);
  --shadow-lg: 0 20px 50px rgba(41, 37, 33, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 220, 206, 0.6);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--color-text);
}

.logo img {
  height: 38px;
  width: auto;
}

.logo-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-terracotta-dark);
}

.site-nav .btn {
  padding: 10px 20px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.15s ease;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

.btn-amazon {
  background: var(--color-amazon-orange);
  color: var(--color-amazon);
}

.btn-primary {
  background: var(--color-text);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-terracotta-dark);
  color: var(--color-terracotta-dark);
}

.btn-light {
  background: #fff;
  color: var(--color-text);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-block {
  width: 100%;
}

.link-arrow {
  color: var(--color-terracotta-dark);
  font-weight: 600;
  text-decoration: none;
}

.link-arrow::after {
  content: " →";
}

/* ---------- Eyebrow ---------- */

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.hero-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Vollbild-Hero ---------- */

.hero-full {
  position: relative;
  min-height: min(84vh, 780px);
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--color-stone-dark) url("../assets/mood/hero-tisch.jpg") center / cover no-repeat;
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(41, 37, 33, 0.82) 0%,
    rgba(41, 37, 33, 0.6) 42%,
    rgba(41, 37, 33, 0.18) 100%
  );
}

.hero-full-inner {
  position: relative;
  max-width: 640px;
  padding: 110px 0 96px;
}

.hero-full .hero-eyebrow {
  color: var(--color-gold-light);
}

.hero-full h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  margin: 0 0 22px;
  color: #fff;
}

.hero-full .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 32px;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* ---------- Stimmungs-Galerie ---------- */

.mood-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.35fr 1fr;
  gap: 10px;
  padding: 10px;
}

.mood-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------- Klassischer Hero (Unterseiten) ---------- */

.hero {
  padding: 40px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  max-width: 48ch;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.hero-image .placeholder,
.hero-image img {
  height: 100%;
  object-fit: cover;
}

/* ---------- Placeholder image blocks ---------- */

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(
    45deg,
    var(--color-bg-alt),
    var(--color-bg-alt) 12px,
    #e9ddca 12px,
    #e9ddca 24px
  );
  color: var(--color-text-muted);
  font-size: 0.8rem;
  padding: 16px;
  border-radius: var(--radius-sm);
  min-height: 160px;
}

/* ---------- Section headings ---------- */

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-stone {
  background: var(--color-stone);
}

.section-dark {
  background: var(--color-stone-dark);
  color: #f4f2ee;
}

.section-dark .eyebrow {
  color: var(--color-gold-light);
}

.section-dark .section-head p {
  color: #c9c7c2;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.section-head.align-left {
  text-align: left;
  margin: 0 0 44px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-head p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* ---------- Story / process blocks (Vom Dom zur Flammschale) ---------- */

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-block + .story-block {
  margin-top: 88px;
}

.story-block.reverse .story-image {
  order: 2;
}

.story-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h3 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 16px;
  line-height: 1.15;
}

.story-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.story-text .todo-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  background: #fff4e5;
  border: 1px dashed #d99a3f;
  color: #6b4f1c;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* ---------- Numbered step timeline ---------- */

.step-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-timeline.three {
  grid-template-columns: repeat(3, 1fr);
}

.step-item {
  position: relative;
  padding-top: 12px;
}

.step-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 14px;
}

.step-item h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step-item p {
  margin: 0;
  font-size: 0.95rem;
  color: inherit;
  opacity: 0.85;
}

.steps-light .step-item p {
  color: var(--color-text-muted);
  opacity: 1;
}

.safety-note {
  margin: 40px auto 0;
  max-width: 820px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.safety-note strong {
  color: var(--color-text);
}

/* ---------- Zitat-Band ---------- */

.quote-band {
  position: relative;
  background: var(--color-stone-dark) url("../assets/mood/lavendelfeld.jpg") center / cover no-repeat;
  padding: 130px 0;
  text-align: center;
  color: #fff;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 37, 33, 0.58);
}

.quote-band blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 860px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.22;
  font-style: italic;
  font-weight: 400;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-base);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

/* ---------- Hauptprodukt (Featured) ---------- */

.featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.featured-image {
  min-height: 420px;
  background: var(--color-bg-alt);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-body {
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-body h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.12;
}

.featured-body > p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.featured-body .spec-list {
  font-size: 0.95rem;
}

.featured-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.featured-actions .price-note {
  font-style: normal;
}

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card .product-image {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-grid.two .product-card {
  flex-direction: row;
}

.product-grid.two .product-card .product-image {
  flex: 0 0 44%;
  aspect-ratio: auto;
}

.product-card .product-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.product-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-bg-alt);
  color: var(--color-terracotta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.spec-list li::before {
  content: "•";
  color: var(--color-terracotta);
  margin-right: 8px;
}

.product-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.price-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ---------- Bundle / cart CTA ---------- */

.bundle-cta {
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.bundle-cta h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.bundle-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- USP icon row ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-item {
  text-align: center;
  padding: 20px 12px;
}

.usp-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.usp-item.lead .usp-icon {
  background: var(--color-gold);
}

.usp-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-base);
}

.usp-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq details:first-of-type {
  border-top: 1px solid var(--color-border);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-terracotta);
  flex: none;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  max-width: 68ch;
}

/* ---------- Handel teaser (D2C page) ---------- */

.handel-teaser {
  text-align: center;
  padding: 32px 0 8px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.handel-teaser a {
  color: var(--color-terracotta-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* ---------- B2B page ---------- */

.b2b-hero {
  background: var(--color-stone);
  padding: 56px 0;
}

.b2b-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.b2b-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0 0 16px;
  max-width: 34ch;
}

.b2b-hero p {
  max-width: 58ch;
  color: var(--color-text-muted);
  font-size: 1.08rem;
  margin: 0 0 24px;
}

.b2b-hero-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.b2b-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.b2b-product-card .product-image {
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.b2b-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.b2b-product-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 500;
}

.b2b-product-card .price-note {
  display: block;
  margin-top: 10px;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.form-card > p {
  color: var(--color-text-muted);
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-field .optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-style: italic;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-bg);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 1px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Honeypot-Feld: für Menschen unsichtbar, Bots füllen es aus */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #3f7a4a;
}

.form-status.is-error {
  color: #b23a2a;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ---------- Flyer landing (short) ---------- */

.flyer-hero {
  text-align: center;
  padding: 64px 0 40px;
}

.flyer-hero .eyebrow {
  justify-content: center;
  display: flex;
}

.flyer-hero h1 {
  max-width: 32ch;
  margin: 0 auto 16px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.flyer-hero p {
  max-width: 50ch;
  margin: 0 auto 28px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ---------- Legal pages ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.2rem;
  font-family: var(--font-base);
  font-weight: 700;
}

.legal-content .todo {
  background: #fff4e5;
  border: 1px dashed #d99a3f;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  margin: 10px 0 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  margin-top: 40px;
}

.site-footer.rich {
  background: var(--color-surface);
  padding: 64px 0 28px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 22px;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 44ch;
}

.footer-col h5 {
  margin: 0 0 14px;
  font-family: var(--font-base);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  margin-bottom: 9px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-terracotta-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-terracotta-dark);
}

/* ---------- Einblend-Animationen ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Galerie & Lightbox ---------- */

.product-image {
  position: relative;
  cursor: zoom-in;
}

.gallery-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(41, 37, 33, 0.72);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.featured-gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}

.featured-main {
  position: relative;
  flex: 1;
  min-height: 380px;
  cursor: zoom-in;
  background: var(--color-bg-alt);
}

.featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-main:hover img {
  transform: scale(1.02);
}

.thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--color-border);
  overflow-x: auto;
}

.thumb {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.thumb:hover,
.thumb.active {
  border-color: var(--color-terracotta);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-stone);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 18, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lb-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lb-figure img {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lb-figure figcaption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lb-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lb-btn[hidden] {
  display: none;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-close {
  top: 18px;
  right: 20px;
}

/* ---------- Bewertungen (statisch, von Amazon abgelesen) ---------- */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  align-self: flex-start;
}

.rating:hover .rating-count {
  text-decoration: underline;
}

.stars {
  position: relative;
  display: inline-block;
  color: #e3dccf;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.stars::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--v, 0%);
  overflow: hidden;
  white-space: nowrap;
  color: #e2a53c;
}

.rating-value {
  font-weight: 700;
  color: var(--color-text);
}

.hero-badge-rating {
  border-color: rgba(227, 192, 122, 0.7);
  color: var(--color-gold-light);
}

.hero-badge-rating:empty {
  display: none;
}

.affiliate-note {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ---------- Produktgruppen ---------- */

.product-group + .product-group {
  margin-top: 56px;
}

.product-group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.product-group-head h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.product-group-head p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 58ch;
  font-size: 0.95rem;
}

.product-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid.three .product-card .product-image {
  aspect-ratio: 1 / 1;
}

.b2b-product-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Video-Platzhalter ---------- */

.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-stone-dark);
  box-shadow: var(--shadow-lg);
}

.video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
  background-size: cover;
  background-position: center;
}

.video-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(41, 37, 33, 0.35), rgba(41, 37, 33, 0.7));
}

.video-fallback > * {
  position: relative;
}

.video-slot.is-placeholder .video-fallback {
  display: flex;
}

.play-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
  padding-left: 4px;
}

.video-fallback h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.6rem;
}

.video-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  max-width: 52ch;
}

@media (max-width: 980px) {
  .b2b-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .product-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .product-group-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .product-grid.three,
  .b2b-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Icon-Set (Linien, currentColor) ---------- */

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex: none;
}

.usp-svg {
  width: 26px;
  height: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.safety-icon {
  color: var(--color-gold);
  display: inline-flex;
}

.play-badge svg {
  width: 30px;
  height: 30px;
}

/* ---------- Dev-only placeholder banner ---------- */

.dev-banner {
  background: #232f3e;
  color: #fff;
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
}

.dev-banner strong {
  color: var(--color-amazon-orange);
}

/* ---------- Responsive ---------- */

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

  .featured-image {
    min-height: 320px;
  }

  .featured-body {
    padding: 32px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .hero-grid,
  .b2b-hero-grid,
  .story-block {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .story-block.reverse .story-image {
    order: -1;
  }

  .story-block + .story-block {
    margin-top: 56px;
  }

  .product-grid,
  .b2b-product-grid,
  .product-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid.two .product-card {
    flex-direction: column;
  }

  .product-grid.two .product-card .product-image {
    aspect-ratio: 1 / 1;
    flex: none;
  }

  .usp-grid,
  .step-timeline,
  .step-timeline.three {
    grid-template-columns: 1fr 1fr;
  }

  .mood-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mood-strip img {
    height: 220px;
  }

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

  .site-nav {
    gap: 16px;
    font-size: 0.85rem;
  }

  .hero-full-inner {
    padding: 90px 0 72px;
  }

  .section {
    padding: 60px 0;
  }

  .quote-band {
    padding: 90px 0;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .b2b-product-grid,
  .product-grid.two,
  .usp-grid,
  .step-timeline,
  .step-timeline.three {
    grid-template-columns: 1fr;
  }

  .bundle-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .site-header {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mood-strip img {
    height: 160px;
  }

  .safety-note {
    flex-direction: column;
  }
}
