/* ─────────────────────────────────────────────────────────────────────────── *
 * Vior Privé v3 — Foto-getriebene Landing Page                              *
 * Lädt NACH style.css (Token-Basis + Cart-Drawer + interactions.css).        *
 * Scope: body.v3 — alle Selektoren .v3-* oder body.v3 um v2 nicht zu        *
 * überschreiben. Kein main.js, kein SITE_VERSION='v2'.                       *
 * ─────────────────────────────────────────────────────────────────────────── */

/* ── Reset / Base ───────────────────────────────────────────────────────────── */
body.v3 {
  background: var(--bg, #E9E4D9);
  color: var(--tx, #2E2A24);
  font-family: var(--ff-b);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.v3-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition:
    background 480ms ease,
    padding 480ms ease,
    border-color 480ms ease,
    backdrop-filter 480ms ease;
  border-bottom: 1px solid transparent;
}
.v3-nav.is-scrolled {
  background: rgba(233,228,217,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 56px;
  height: 72px;
  border-color: var(--bd, rgba(51,61,71,0.14));
}

.v3-nav-logo {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(242,236,224,1);
  text-decoration: none;
  transition: color 320ms, text-shadow 320ms;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.v3-nav.is-scrolled .v3-nav-logo { color: var(--tx); text-shadow: none; }

.v3-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.v3-nav-links a {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242,236,224,1);
  transition: color 200ms, text-shadow 320ms;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.v3-nav-links a:hover              { color: #fff; }
.v3-nav.is-scrolled .v3-nav-links a       { color: var(--tx); text-shadow: none; }
.v3-nav.is-scrolled .v3-nav-links a:hover { color: var(--ac, #3A4A35); }

.v3-cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,236,224,1);
  background: rgba(20,15,10,0.30);
  border: 1px solid rgba(242,236,224,0.65);
  border-radius: 40px;
  cursor: pointer;
  padding: 8px 18px;
  min-height: 44px;
  transition: color 300ms var(--ease-pdp), background 300ms var(--ease-pdp), border-color 300ms var(--ease-pdp);
}
.v3-cart-btn:hover {
  color: #fff;
  border-color: rgba(242,236,224,0.90);
  background: rgba(20,15,10,0.48);
}
.v3-nav.is-scrolled .v3-cart-btn {
  color: var(--bg, #E9E4D9);
  background: var(--ac, #3A4A35);
  border-color: var(--ac, #3A4A35);
}
.v3-nav.is-scrolled .v3-cart-btn:hover {
  background: #2d3c2a;
  border-color: #2d3c2a;
  color: var(--bg, #E9E4D9);
}

/* cart-count — Kreis-Badge */
.v3-cart-btn .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  font-family: system-ui, -apple-system, Arial, sans-serif; /* Flaviotte hat bei 10px schlechte Metriken */
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  background: rgba(242,236,224,0.28);
  color: rgba(242,236,224,1);
}
.v3-nav.is-scrolled .v3-cart-btn .cart-count {
  background: var(--bg, #E9E4D9);
  color: var(--ac, #3A4A35);
}

/* ── Cart-Button — Icon (Mobile) / Text (Desktop) ───────────────────────────── */

/* MOBILE BASE: SVG-Icon sichtbar, Text versteckt */
.v3-cart-btn-text { display: none; }
.v3-cart-btn-icon { display: block; width: 20px; height: 20px; flex-shrink: 0; }

/* DESKTOP ENHANCEMENT ≥900px */
@media (min-width: 900px) {
  .v3-cart-btn-text { display: inline; }
  .v3-cart-btn-icon { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.v3-hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #9E9288; /* warm fallback wenn Bild fehlt */
}

.v3-hero-img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

/* Desktop: Video sichtbar / Mobile: Havana-Bild sichtbar */
.v3-hero-img--mobile  { display: none; }
@media (max-width: 768px) {
  .v3-hero-img--desktop { display: none; }
  .v3-hero-img--mobile  { display: block; }
}

/* Scrim — oben für Nav-Lesbarkeit, unten für Hero-Text */
.v3-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,24,20,0.52) 0%, transparent 28%),
    linear-gradient(to top, rgba(28,24,20,0.72) 0%, rgba(28,24,20,0.28) 40%, rgba(28,24,20,0.04) 65%, transparent 80%);
  z-index: 1;
}

/* Diagonaler Schatten — von oben-links nach unten-rechts, liegt unter .v3-hero-content */
.v3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,16,12,0.60) 0%, transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.v3-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 72px 88px; /* top = nav-Höhe (80px) + 16px Luft */
}

.v3-hero-eyebrow {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.88);
  margin-bottom: 22px;
}

.v3-hero-brand {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, min(8vw, 16vh), 140px);
  line-height: 0.92;
  color: #F2ECE0;
  margin-bottom: 30px;
  /* clip-path statt overflow:hidden: oben+unten für GSAP .ln-Reveal, links+rechts frei */
  clip-path: inset(0 -200% 0 -200%);
  /* Vertikal 0.18em: Glyphen-Überstand (line-height 0.92 < reale Glyphenhöhe)
     abfangen — clip-path schneidet sonst direkt in Umlaut-Punkte (oben) & Serife (unten).
     Links 6px: Overhang verhindert N-Clip links. */
  padding: 0.18em 0 0.18em 6px;
}
.v3-hero-brand .ln {
  display: block;
  /* GSAP setzt initial yPercent:110, animiert auf 0 */
}

.v3-hero-sub {
  font-family: var(--ff-b);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(242,236,224,0.88);
  max-width: 460px;
  margin-bottom: 36px;
}

.v3-hero-cta {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,236,224,0.35);
  padding-bottom: 5px;
  transition: color 200ms, border-color 200ms;
}
.v3-hero-cta:hover {
  color: #F2ECE0;
  border-color: rgba(242,236,224,0.75);
}

/* Scrollen-Cue rechts unten */
.v3-hero-scroll {
  position: absolute;
  right: 52px;
  bottom: 52px;
  z-index: 2;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.35);
}
.v3-hero-scroll::after {
  content: '';
  width: 1px;
  height: 52px;
  background: rgba(242,236,224,0.25);
  display: block;
}

/* ── Manifesto ──────────────────────────────────────────────────────────────── */
.v3-manifesto {
  background: var(--bg, #E9E4D9);
  padding: 160px 72px;
}

.v3-manifesto-inner {
  max-width: 820px;
}

.v3-manifesto-label {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ac, #3A4A35);
  margin-bottom: 36px;
}

.v3-manifesto-statement {
  font-family: var(--ff-d);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.13;
  color: var(--tx, #2E2A24);
  margin-bottom: 44px;
}

.v3-manifesto-body {
  font-family: var(--ff-b);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.90;
  color: var(--sub, #6E6A60);
  max-width: 560px;
}

.v3-manifesto-rule {
  width: 52px;
  height: 1px;
  background: var(--gold, #D1A96F);
  margin-top: 64px;
}

/* ── Plate — Fullbleed Foto ─────────────────────────────────────────────────── */
.v3-plate {
  position: relative;
  height: 82svh;
  min-height: 520px;
  overflow: hidden;
  background: #9E9288; /* warm fallback */
}

.v3-plate-img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

/* Standard-Caption: rechts unten, minimal */
.v3-plate-caption {
  position: absolute;
  bottom: 48px;
  right: 56px;
  z-index: 2;
  text-align: right;
}

.v3-plate-label {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.60);
}

.v3-plate-note {
  font-family: var(--ff-b);
  font-style: italic;
  font-size: 15px;
  color: rgba(242,236,224,0.82);
  margin-top: 7px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.60);
}

/* Overlay-Link — gesamtes Plate klickbar */
.v3-plate-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}

/* Malibu-Plate — Desktop: oberen Bildbereich (Arm + Flakon) zeigen */
@media (min-width: 801px) {
  .v3-plate--malibu .v3-plate-img {
    object-position: center 15%;
  }
}

/* Variante: Pull-Quote links unten */
.v3-plate--quote .v3-plate-caption {
  left: 72px;
  right: auto;
  bottom: 72px;
  text-align: left;
  max-width: 520px;
  z-index: 2;
}

/* Scrim hinter dem Quote-Text — links dunkler, rechts transparent */
.v3-plate--quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,15,10,0.62) 0%, rgba(20,15,10,0.25) 55%, transparent 85%);
  z-index: 1;
  pointer-events: none;
}

.v3-plate--quote .v3-plate-quote {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.38;
  color: rgba(242,236,224,1);
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.v3-plate--quote .v3-plate-source {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.78);
  margin-top: 18px;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

/* ── Collection — Editorialiste Produktliste ─────────────────────────────────── */
.v3-collection {
  background: var(--bg, #E9E4D9);
  padding: 120px 72px;
  border-top: 1px solid var(--bd, rgba(51,61,71,0.14));
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
  position: relative;
  overflow: hidden;
}
.v3-collection::before {
  content: '';
  position: absolute;
  inset: -5%;
  background-image: url('https://images.pexels.com/photos/12464283/pexels-photo-12464283.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(0.5);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
.v3-collection > * { position: relative; z-index: 1; }

.v3-collection-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
}

.v3-col-eyebrow {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
}

.v3-col-title {
  font-family: var(--ff-d);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--tx, #2E2A24);
}

.v3-col-list {
  list-style: none;
  max-width: 1200px;
}

.v3-col-item {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.10));
  transition: background 300ms var(--ease-pdp);
}
.v3-col-item:first-child {
  border-top: none;
}
.v3-col-item:hover {
  background: rgba(209,169,111,0.05);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.v3-col-num {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--sub, #6E6A60);
  opacity: 0.50;
}

.v3-col-body { min-width: 0; }

.v3-col-name {
  font-family: var(--ff-d);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--tx, #2E2A24);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v3-col-meta {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
  opacity: 0.75;
}

.v3-col-price {
  font-family: var(--ff-b);
  font-size: 19px;
  font-weight: 400;
  color: var(--tx, #2E2A24);
  white-space: nowrap;
  letter-spacing: .01em;
}

.v3-col-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.v3-col-link {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
  text-decoration: none;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 300ms var(--ease-pdp), border-color 300ms var(--ease-pdp);
}
.v3-col-link:hover {
  color: var(--tx);
  border-color: var(--tx);
}

.v3-col-add {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--ac, #3A4A35);
  color: var(--bg, #E9E4D9);
  border: none;
  padding: 11px 20px;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(46,42,36,0.10);
  transition: background 300ms var(--ease-pdp), box-shadow 300ms var(--ease-pdp);
}
.v3-col-add:hover  { background: var(--gold, #D1A96F); box-shadow: 0 4px 32px rgba(46,42,36,0.16); }
.v3-col-add:active { transform: scale(0.97); }

/* ── Feature — PDP Produkt-Bild + Copy (Mobile-First) ───────────────────────── */

/* MOBILE BASE */
.v3-feature {
  display: block;
}

.v3-feature-img {
  position: relative;
  height: 82svh;
  overflow: hidden;
  background: #F2EDE4;
}

/* ── PDP Zurück-Pfeil ────────────────────────────────────────────────────── */
.v3-pdp-back {
  position: absolute;
  top: 76px;
  left: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #F2ECE0;
  background: rgba(20, 16, 12, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 236, 224, 0.22);
  transition: background var(--t-hover), color var(--t-hover);
  text-decoration: none;
}
.v3-pdp-back:hover {
  background: rgba(20, 16, 12, 0.62);
}
@media (min-width: 769px) {
  .v3-pdp-back {
    display: flex;
    top: 80px;
    color: var(--tx);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--bd);
  }
  .v3-pdp-back:hover {
    background: rgba(255, 255, 255, 0.95);
  }
}
.v3-feature-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── PDP Gallery ─────────────────────────────────────────────────────────── */
.v3-pdp-gallery {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.v3-pdp-gallery-main {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #F2EDE4;
}
.v3-pdp-gallery-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Dots (Mobile default) */
.v3-pdp-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}
.v3-pdp-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: background 180ms, transform 180ms;
}
.v3-pdp-gallery-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

/* Pfeile (Desktop only) */
.v3-pdp-gallery-prev,
.v3-pdp-gallery-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--tx, #2E2A24);
  cursor: pointer;
  transition: background 180ms;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.v3-pdp-gallery-prev { left: 16px; }
.v3-pdp-gallery-next { right: 16px; }
.v3-pdp-gallery-prev:hover,
.v3-pdp-gallery-next:hover { background: rgba(255,255,255,0.98); }

@media (min-width: 1024px) {
  .v3-pdp-gallery-dots { display: none; }
  .v3-pdp-gallery-prev,
  .v3-pdp-gallery-next { display: flex; }
}
.v3-pdp-gallery-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--tx, #2E2A24);
  transition: background 180ms;
}
.v3-pdp-gallery-zoom:hover { background: rgba(255,255,255,1); }

/* Gallery: overlay verstecken, copy-Felder zeigen */
#v3-pdp.has-gallery .v3-feature-img-overlay { display: none; }
@media (max-width: 1023px) {
  #v3-pdp.has-gallery .v3-feature-eyebrow,
  #v3-pdp.has-gallery .v3-feature-name,
  #v3-pdp.has-gallery .v3-feature-compare { display: block; }
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.v3-pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.v3-pdp-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.v3-pdp-lightbox-img {
  max-width: min(90vw, 560px);
  max-height: 90svh;
  object-fit: contain;
  border-radius: 4px;
}
.v3-pdp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms;
}
.v3-pdp-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.v3-pdp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms;
}
.v3-pdp-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.v3-pdp-lightbox-prev { left: 20px; }
.v3-pdp-lightbox-next { right: 20px; }

/* PDP-Katalog-Shot: Hochformat */
.v3-pdp-hero-img {
  object-position: center 15%;
}

/* Text-Overlay auf Bild — gespiegelt von .v3-cat-card-overlay */
.v3-feature-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.30) 58%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3-feature-img-overlay-code {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,236,224,.72);
}
.v3-feature-img-overlay-name {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.06;
  color: #fff;
}
.v3-feature-img-overlay-compare {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.80);
  line-height: 1.45;
}

/* Copy-Bereich auf Mobile */
.v3-feature-copy {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 56px 28px 64px;
}

/* Info-Felder die im Overlay stehen: auf Mobile ausblenden (SEO: bleiben im DOM) */
.v3-pdp-breadcrumb,
.v3-feature-eyebrow,
.v3-feature-name,
.v3-feature-compare {
  display: none;
}

/* DESKTOP ENHANCEMENT ≥1024px — Breakpoint nach Dior-Analyse angehoben (war 900px).
   Tablets bis 1023px bleiben im ruhigen Single-Column-Mobile-Layout. */
@media (min-width: 1024px) {
  .v3-feature {
    display: grid;
    grid-template-columns: minmax(0, 59fr) minmax(22rem, 41fr);
    min-height: 100svh;
  }
  .v3-feature-img {
    height: auto;
  }
  .v3-feature-img > img {
    object-fit: cover;
  }
  .v3-feature-img-overlay {
    display: none;
  }
  .v3-feature-copy {
    padding: 96px 48px 80px;
    border-left: 1px solid var(--bd, rgba(51,61,71,0.14));
  }
  /* Lese-Breite — nach Dior: content-max-width min(100%, 345px).
     Engere Lese-Breite für editorial-ruhigeres Panel. */
  .v3-feature-copy > * {
    max-width: min(100%, 345px);
  }
  .v3-pdp-breadcrumb,
  .v3-feature-name,
  .v3-feature-compare {
    display: block;
  }
  .v3-feature-eyebrow {
    display: block; /* Inline im flex-column — ::after als block korrekt */
  }
}

.v3-feature-eyebrow {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold, #D1A96F);
  margin-bottom: 20px;
}

/* Goldener Trenner unter Eyebrow — editorial Hierarchie */
.v3-feature-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold, #D1A96F);
  margin-top: 16px;
  opacity: 0.65;
}

.v3-feature-name {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px); /* Dior-Analyse: kleiner = Bild dominiert */
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tx, #2E2A24);
  margin-bottom: 24px;
}

/* Line-Reveal H1 — Mask-Container + Descender-/Italic-Fix (Playfair y, g, p) */
.v3-feature-name .lm {
  display: block;
  overflow: hidden;
  padding-bottom: .18em; /* Clip-Box nach unten erweitern */
}
.v3-feature-name .ln {
  display: block;
  padding-bottom: .18em;  /* Italic-Overhang: Unterlängen bleiben sichtbar */
  margin-bottom: -.18em;  /* Layout-Shift durch padding-bottom canceln */
}

.v3-feature-compare {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--sub, #6E6A60);
  font-style: italic;
  margin-bottom: 28px;
}

.v3-feature-notes {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--bd, rgba(51,61,71,0.14));
}
.v3-feature-notes li {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--sub, #6E6A60);
}
.v3-feature-notes .note-tier {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold, #D1A96F);
  width: 48px;
  flex-shrink: 0;
  padding-top: 3px;
}

.v3-feature-price {
  font-family: var(--ff-d);
  font-size: 36px; /* Prominenter — wichtigstes Datenpunkt */
  font-weight: 400;
  color: var(--tx, #2E2A24);
  margin-bottom: 24px;
}
.v3-feature-price small {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  margin-left: 6px;
}

.v3-feature-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

/* ── PDP — Sticky Add-to-Cart Bar (Mobile only) ─────────────────────────── */
.v3-pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(233,228,217,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--bd, rgba(46,42,36,0.13));
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(105%);
  transition: transform 0.85s ease-in-out;
  box-shadow: 0 -4px 20px rgba(46, 42, 36, 0.08);
  pointer-events: none;
}
.v3-pdp-sticky-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.v3-pdp-sticky-bar-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.v3-pdp-sticky-bar-name {
  font-family: var(--ff-d);
  font-size: 15px;
  font-weight: 400;
  color: var(--tx, #2E2A24);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.v3-pdp-sticky-bar-price {
  font-family: var(--ff-d);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sub, #6E6A60);
  display: block;
  margin-top: 2px;
}
.v3-pdp-sticky-bar-btn {
  flex-shrink: 0;
  background: var(--tx, #2E2A24);
  color: var(--bg, #E9E4D9);
  border: none;
  padding: 11px 20px;
  font-family: var(--ff-d);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.v3-pdp-sticky-bar-btn:hover { opacity: 0.82; }
.v3-pdp-sticky-bar-btn:active { opacity: 0.68; }
@media (min-width: 1024px) {
  .v3-pdp-sticky-bar {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: auto;
    min-width: 320px;
    max-width: 480px;
    border-radius: 12px;
    border-top: none;
    transform: translateX(-50%) translateY(140%);
    box-shadow: 0 8px 40px rgba(46, 42, 36, 0.16);
  }
  .v3-pdp-sticky-bar.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

.v3-feature-link {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
  text-decoration: none;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
  padding-bottom: 3px;
  transition: color 480ms var(--ease-pdp), border-color 480ms var(--ease-pdp);
}
.v3-feature-link:hover {
  color: var(--tx);
  border-color: var(--tx);
}

.v3-feature-add {
  font-family: var(--ff-m);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ac, #3A4A35);
  color: var(--bg, #E9E4D9);
  border: none;
  padding: 0 14px;
  width: 100%;
  max-width: 22.5rem;
  height: 54px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 1px 8px rgba(46,42,36,0.08);
  transition: background 300ms cubic-bezier(0.31,0,0.13,1), box-shadow 300ms cubic-bezier(0.31,0,0.13,1);
}
.v3-feature-add:hover  { background: var(--gold, #D1A96F); box-shadow: 0 4px 28px rgba(46,42,36,0.16); }
.v3-feature-add:active { transform: scale(0.97); }

/* ── CTA Band ─────────────────────────────────────────────────────────────────── */
.v3-cta {
  position: relative;
  height: 65svh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9E9288;
}

.v3-cta-img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

/* Leichter Scrim — kein schweres 0.72-Overlay wie in v2 */
.v3-cta-scrim {
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,0.36);
  z-index: 1;
}

.v3-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 56px;
}

.v3-cta-label {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.50);
  margin-bottom: 20px;
}

.v3-cta-title {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 92px);
  line-height: 1.05;
  color: #F2ECE0;
  margin-bottom: 44px;
}

.v3-cta-link {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.85);
  background: transparent;
  border: 1px solid rgba(242,236,224,0.45);
  padding: 17px 44px;
  text-decoration: none;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.v3-cta-link:hover {
  background: rgba(242,236,224,0.12);
  border-color: rgba(242,236,224,0.80);
  color: #F2ECE0;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.v3-footer {
  background: var(--bg, #E9E4D9);
  border-top: 1px solid var(--bd, rgba(51,61,71,0.14));
  padding: 48px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.v3-footer-brand {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tx, #2E2A24);
  text-decoration: none;
}

.v3-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.v3-footer-links a {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  text-decoration: none;
  transition: color 200ms;
}
.v3-footer-links a:hover { color: var(--tx); }

.v3-footer-copy {
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  opacity: 0.55;
}

/* ── Shop — Katalog-Header ───────────────────────────────────────────────────── */
.v3-shop-header {
  text-align: center;
  padding: 156px 56px 24px; /* 80px nav + 68px toggle-bar + 8px Luft */
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
}

.v3-shop-eyebrow {
  display: block;
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold, #D1A96F);
  margin-bottom: 24px;
}

.v3-shop-title {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tx, #2E2A24);
  margin-bottom: 20px;
}

.v3-shop-sub {
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}


/* ── PDP — Stadt-Hintergrundbild + Flakon-Cutout ─────────────────────────────── */
.v3-pdp-img-bg {
  background-size: cover;
  background-position: center;
}
.v3-pdp-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.42); /* Stärker — Flakon liest besser, atmosphärischer */
  z-index: 1;
  pointer-events: none;
}
.v3-pdp-img-bg .v3-pdp-flakon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 32px 20px 60px; /* war 56px all — weniger = Flakon größer, mehr Präsenz */
  box-sizing: border-box;
  z-index: 2;
}

/* ── PDP — Erweiterungen für v3-feature-Layout ───────────────────────────────── */
.v3-pdp-breadcrumb {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  margin-bottom: 32px;
}
.v3-pdp-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,0.14));
  padding-bottom: 1px;
  transition: color 200ms, border-color 200ms;
}
.v3-pdp-breadcrumb a:hover {
  color: var(--tx);
  border-color: var(--tx);
}

.v3-pdp-desc {
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--sub, #6E6A60);
  margin-bottom: 28px;
}

.v3-pdp-tax {
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  opacity: 0.65;
  margin: -22px 0 28px;
}

.v3-pdp-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bd, rgba(51,61,71,0.14));
}
.v3-pdp-trust span {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v3-trust-icon { flex-shrink: 0; }

.v3-pdp-missing {
  padding: 140px 56px;
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 300;
  color: var(--sub, #6E6A60);
}
.v3-pdp-missing a {
  color: var(--tx);
  border-bottom: 1px solid var(--bd);
  text-decoration: none;
}

/* ── PDP — Editoriale Katalog-Bild-Section ───────────────────────────────────── */
.v3-pdp-editorial {
  position: relative;
  height: 58svh;
  min-height: 360px;
  overflow: hidden;
  background: #1E1810; /* Dunkel-Fallback für Ladezeit */
}
.v3-pdp-editorial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.70; /* Bild leicht gedämpft — Kontrast für Text */
}
/* Gradient-Scrim von unten — Text liest auf jedem Bild */
.v3-pdp-editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,14,10,0.80) 0%,
    rgba(18,14,10,0.20) 48%,
    rgba(18,14,10,0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.v3-pdp-editorial-caption {
  position: absolute;
  bottom: 52px;
  left: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.v3-pdp-editorial-tagline {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.25;
  color: rgba(242,236,224,0.90);
  max-width: 560px;
}
.v3-pdp-editorial-code {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(242,236,224,0.38);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Preloader (minimal — wird von interactions.js nicht benötigt) ──────────── */
/* Falls interactions.js nach #preloader sucht: sofort versteckt */
body.v3 #preloader { display: none !important; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .v3-nav       { padding: 22px 28px; }
  .v3-nav.is-scrolled { padding: 14px 28px; }
  .v3-nav-links { display: none; }

  .v3-hero-content  { padding: 80px 28px 64px; } /* top = mobile-nav (22px×2+~16px) + 20px */
  .v3-hero-scroll   { display: none; }

  .v3-manifesto       { padding: 80px 28px; }
  .v3-manifesto-body  { font-size: 16px; }

  .v3-plate           { height: 60svh; }
  .v3-plate-caption   { right: 28px; bottom: 32px; }
  .v3-plate--quote .v3-plate-caption { left: 28px; bottom: 48px; }

  .v3-collection      { padding: 80px 28px; }
  .v3-col-item {
    grid-template-columns: 40px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 16px;
  }
  .v3-col-price  { display: none; }
  .v3-col-actions {
    grid-column: 2 / -1;
    margin-top: 12px;
  }

  .v3-pdp-editorial         { height: 46svh; min-height: 260px; }
  .v3-pdp-editorial-caption { left: 28px; right: 28px; bottom: 32px; }

  .v3-cta        { height: 70svh; }
  .v3-cta-content { padding: 0 28px; }

  .v3-footer     { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .v3-footer-links { gap: 16px; }

  /* PDP */
  .v3-pdp-missing { padding: 80px 28px; }

  /* Toggle-Bar: mobile Nav ist niedriger */
  .v3-shop-toggle-bar { top: 76px; }
  .v3-shop-header { padding-top: 148px; } /* 72px nav + 68px toggle + 8px */

  /* Touch-Targets (passt zu Nav-Collapse-Breakpoint 900px) */
  .v3-col-add,
  .v3-col-link,
  .v3-feature-add,
  .v3-feature-link,
  .v3-hero-cta { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 768px) {
  .v3-pdp-editorial { height: 40svh; min-height: 220px; }
}

@media (max-width: 480px) {
  /* Collection-Aktionen untereinander stapeln */
  .v3-col-actions { flex-direction: column; gap: 10px; }
  .v3-col-add,
  .v3-col-link { width: 100%; justify-content: center; text-align: center; }

  /* Hero-Content enger */
  .v3-hero-content { padding: 80px 20px 52px; }

  /* Manifesto weniger Padding */
  .v3-manifesto { padding: 60px 20px; }

  /* Footer kompakter */
  .v3-footer { padding: 32px 20px; gap: 20px; }
}

/* ── Typografie — clamp() für fluid Lesbarkeit ─────────────────────────────── */
.v3-manifesto-body  { font-size: clamp(15px, 2vw, 18px); }
.v3-feature-notes li { font-size: clamp(14px, 1.6vw, 15px); }

/* ── Mobile-Nav: Hamburger + Slide-in-Drawer ─────────────────────────────────
   Abhängig von: nav.js (JS-Injection), html.nav-open (State-Klasse)
   ─────────────────────────────────────────────────────────────────────────── */

/* Burger — Desktop unsichtbar, ≤900px sichtbar */
.v3-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}
.v3-nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.32s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
}
.v3-nav.is-scrolled .v3-nav-burger span {
  filter: none;
}
/* Burger → X wenn nav-open */
html.nav-open .v3-nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
html.nav-open .v3-nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
html.nav-open .v3-nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Scrollsperre wenn Drawer offen */
html.nav-open { overflow: hidden; }

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
html.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

/* Drawer Panel */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
  overscroll-behavior: contain;
}
html.nav-open .nav-drawer { transform: translateX(0); }

/* Drawer — Kopfzeile */
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bd);
  flex-shrink: 0;
}
.nav-drawer-brand {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx);
}
.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sub);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: color var(--t-hover);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-drawer-close:hover { color: var(--tx); }

/* Drawer — Hauptlinks */
.nav-drawer-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}
.nav-drawer-links li { border-bottom: 1px solid var(--bd); }

.nav-drawer-links a,
.nav-drawer-cart {
  display: flex;
  align-items: center;
  padding: 0 24px;
  min-height: 56px;
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tx);
  text-decoration: none;
  transition: color var(--t-hover), background var(--t-hover);
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.nav-drawer-links a:hover,
.nav-drawer-cart:hover {
  color: var(--ac);
  background: rgba(58, 74, 53, 0.05);
}
.nav-drawer-count {
  margin-left: 6px;
  font-size: 11px;
  color: var(--sub);
}

/* Drawer — Legal-Links */
.nav-drawer-legal {
  list-style: none;
  padding: 12px 0 20px;
  margin: 0;
  border-top: 1px solid var(--bd);
  flex-shrink: 0;
}
.nav-drawer-legal a {
  display: block;
  padding: 8px 24px;
  font-family: var(--ff-m);
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sub);
  text-decoration: none;
  transition: color var(--t-hover);
}
.nav-drawer-legal a:hover { color: var(--tx); }

/* Burger zeigen ≤900px, Logo mittig */
@media (max-width: 900px) {
  .v3-nav-burger { display: flex; order: -1; }
  .v3-nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* Cart: SVG-Icon auf Mobile via .v3-cart-btn-icon/.v3-cart-btn-text (mobile-first) */
}


/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG v4 — Luxury Portrait Grid (Mobile First)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Mobile: 1 Spalte */
#v3-shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 0;
  list-style: none;
  margin: 0;
  background: var(--bd, rgba(51,61,71,0.14));
}
/* Tablet+: 2 Spalten */
@media (min-width: 600px) {
  #v3-shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Portrait Card */
.v3-cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sf, #F1ECE2);
  cursor: pointer;
}
.v3-cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-pdp);
  will-change: transform;
}
.v3-cat-card:hover .v3-cat-card-bg {
  transform: scale(1.04);
}
.v3-cat-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.32) 60%, transparent 100%);
  z-index: 3;
}
.v3-cat-card-code {
  font-family: var(--ff-m);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
}
.v3-cat-card-name {
  font-family: var(--ff-d);
  font-size: clamp(22px, 5vw, 42px);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.v3-cat-card-compare {
  font-family: var(--ff-b);
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  margin: 0 0 18px;
  line-height: 1.45;
}
.v3-cat-card-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.v3-cat-card-price {
  font-family: var(--ff-m);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  flex-shrink: 0;
}
.v3-cat-card-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.v3-cat-card-link,
.v3-cat-card-add {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: background 300ms var(--ease-pdp), border-color 300ms var(--ease-pdp);
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.v3-cat-card-link:hover,
.v3-cat-card-add:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.75);
}
.v3-cat-card-add {
  background: rgba(255,255,255,0.10);
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — Brand Statement
   ═══════════════════════════════════════════════════════════════════════════ */

.v3-footer-statement {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
  text-align: center;
  margin: 0 0 20px;
  padding: 0 var(--side, 24px);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOP — Ansicht-Umschalter (Toggle Grande ↔ Compact)
   ═══════════════════════════════════════════════════════════════════════════ */

.v3-shop-toggle-bar {
  display: flex;
  gap: 2px;
  padding: 3px;
  position: fixed;
  top: 92px;
  right: var(--side, 24px);
  z-index: 800;
  background: rgba(233,228,217,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(51,61,71,0.14);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(51,61,71,0.08);
}
.v3-shop-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--sub, #6E6A60);
  transition: color 300ms var(--ease-pdp), border-color 300ms var(--ease-pdp);
  border-radius: 6px;
}
.v3-shop-toggle-btn:hover {
  color: var(--tx, #2E2A24);
}
.v3-shop-toggle-btn[aria-pressed="true"] {
  color: var(--tx, #2E2A24);
  border-color: var(--bd, rgba(51,61,71,0.20));
}

/* Compact Grid */
#v3-shop-grid.is-compact {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  #v3-shop-grid.is-compact { grid-template-columns: repeat(4, 1fr); }
}
.is-compact .v3-cat-card {
  aspect-ratio: 2/3;
}
.is-compact .v3-cat-card-overlay {
  padding: 24px 12px 12px;
}
.is-compact .v3-cat-card-name {
  font-size: clamp(14px, 2.5vw, 20px);
  margin-bottom: 2px;
}
.is-compact .v3-cat-card-compare {
  display: none;
}
.is-compact .v3-cat-card-footer {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.is-compact .v3-cat-card-price {
  font-size: 11px;
}
.is-compact .v3-cat-card-actions {
  gap: 4px;
}
.is-compact .v3-cat-card-link {
  display: none;
}
.is-compact .v3-cat-card-add {
  font-size: 12px;
  padding: 8px 10px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS — PDP Kundenstimmen + Über-uns Testimonials (gemeinsame Klassen)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Sterne SVG */
.v3-star          { fill: rgba(46,42,36,0.18); display: inline-block; vertical-align: middle; }
.v3-star.is-on    { fill: var(--gold); }

/* ── PDP — Reviews (horizontal scroll mobile / grid desktop) ──────────────── */
.v3-pdp-reviews {
  background: var(--surface, #F1ECE2);
  padding: 64px 0;
  overflow: hidden;
}
.v3-pdp-reviews-head {
  padding: 0 var(--side, 24px);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.v3-pdp-reviews-eyebrow {
  font-family: var(--ff-d);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub, #6E6A60);
  display: block;
  margin-bottom: 8px;
}
.v3-pdp-reviews-title {
  font-family: var(--ff-d);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 400;
  color: var(--tx, #2E2A24);
  margin: 0;
  line-height: 1.2;
}
.v3-pdp-reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.v3-pdp-reviews-bignum {
  font-family: var(--ff-d);
  font-size: clamp(44px, 10vw, 64px);
  font-weight: 400;
  color: var(--tx, #2E2A24);
  line-height: 1;
}
.v3-pdp-reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3-pdp-reviews-stars { display: flex; gap: 3px; }
.v3-pdp-reviews-score {
  font-family: var(--ff-d);
  font-size: 12px;
  color: var(--sub, #6E6A60);
  letter-spacing: 0.04em;
}
.v3-pdp-reviews-list {
  list-style: none;
  padding: 0 var(--side, 24px);
  margin: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.v3-pdp-reviews-list::-webkit-scrollbar { display: none; }
.v3-review-card {
  flex: 0 0 calc(min(100vw - 48px, 340px));
  scroll-snap-align: start;
  background: var(--bg, #E9E4D9);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v3-review-quote-mark {
  font-family: var(--ff-d);
  font-size: 64px;
  line-height: 0.7;
  color: var(--ak, #3A4A35);
  opacity: 0.18;
  display: block;
  user-select: none;
  margin-bottom: 4px;
}
.v3-review-stars { display: flex; gap: 3px; }
.v3-review-text {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--tx, #2E2A24);
  margin: 0;
  flex: 1;
}
.v3-review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--bd, rgba(46,42,36,0.13));
  margin-top: auto;
}
.v3-review-name {
  font-family: var(--ff-d);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx, #2E2A24);
}
.v3-review-loc {
  font-family: var(--ff-d);
  font-size: 12px;
  color: var(--sub, #6E6A60);
}
@media (min-width: 640px) {
  .v3-pdp-reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    gap: 20px;
  }
  .v3-review-card {
    flex: none;
  }
}
@media (min-width: 960px) {
  .v3-pdp-reviews { padding: 80px 0; }
  .v3-pdp-reviews-head { padding: 0 56px; margin-bottom: 48px; }
  .v3-pdp-reviews-list { grid-template-columns: repeat(3, 1fr); padding: 0 56px; }
}

/* ── Über-uns Testimonials Section ── */
.v3-testimonials {
  background: var(--bg);
  padding: 80px var(--side, 60px);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.v3-testimonials-head {
  text-align: center;
  margin-bottom: 48px;
}
.v3-testimonials-eyebrow {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub);
  display: block;
  margin-bottom: 12px;
}
.v3-testimonials-title {
  font-family: var(--ff-d);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--tx);
  margin: 0;
  line-height: 1.2;
}
.v3-testimonials-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .v3-testimonials-list { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Anpassungen */
@media (max-width: 900px) {
  .v3-testimonials { padding: 60px 28px; }
}
@media (max-width: 480px) {
  .v3-testimonials { padding: 48px 20px; }
}

/* ── Collage Cutouts — Dekorative Elemente zwischen Sektionen ─────────────── */
.v3-collage-item {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}

.v3-collage-item img {
  position: absolute;
  width: clamp(100px, 16vw, 240px);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(46,42,36,0.18));
  will-change: transform;
}

.v3-collage-item--zitrone img { right: 5%;  top: -80px; }
.v3-collage-item--olive img   { left:  4%;  top: -100px; }
.v3-collage-item--waren img   { right: 7%;  top: -55px; }

@media (max-width: 600px) {
  .v3-collage-item img { width: clamp(70px, 20vw, 120px); }
}

/* ── Ausverkauft-Badge ──────────────────────────────────────────────────────── */
.v3-sold-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--terra, #C06B45);
  color: #fff;
  font-family: var(--ff-m);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  vertical-align: middle;
  line-height: 1.6;
}
.v3-sold-badge--pdp {
  display: block;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 12px;
}

/* Warteliste-Button — gleiche Maße wie cart-add, keine Opacity-Reduktion */
.is-waitlist {
  background: transparent;
  border: 1px solid var(--terra, #C06B45);
  color: var(--terra, #C06B45);
}
.is-waitlist:hover {
  background: var(--terra, #C06B45);
  color: #fff;
}

/* Ausverkaufte Karten leicht gedimmt */
.v3-cat-card.is-sold-out .v3-cat-card-bg,
.v3-col-item.is-sold-out {
  opacity: .75;
}

/* ── Warteliste-Modal ───────────────────────────────────────────────────────── */
.waitlist-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(46,42,36,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.waitlist-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  z-index: 1101;
  width: min(480px, 92vw);
  background: var(--bg, #E9E4D9);
  border: 1px solid var(--bd, rgba(51,61,71,.14));
  box-shadow: 0 24px 64px rgba(46,42,36,.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}
.waitlist-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.waitlist-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--bd, rgba(51,61,71,.14));
}
.waitlist-modal-title {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tx, #2E2A24);
}
.waitlist-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--tx, #2E2A24);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  opacity: .6;
  transition: opacity 200ms;
}
.waitlist-modal-close:hover { opacity: 1; }

.waitlist-modal-body {
  padding: 24px;
}
.waitlist-intro {
  font-family: var(--ff-b);
  font-size: 15px;
  line-height: 1.55;
  color: var(--tx, #2E2A24);
  margin: 0 0 8px;
}
.waitlist-product-name {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra, #C06B45);
  margin: 0 0 20px;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.waitlist-label {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tx, #2E2A24);
  opacity: .7;
}
.waitlist-input {
  border: 1px solid var(--bd, rgba(51,61,71,.22));
  background: transparent;
  padding: 11px 14px;
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--tx, #2E2A24);
  outline: none;
  border-radius: 6px;
  transition: border-color 300ms var(--ease-pdp);
}
.waitlist-input:focus {
  border-color: var(--terra, #C06B45);
}
.waitlist-submit {
  width: 100%;
  padding: 13px 20px;
  background: var(--ink, #2E2A24);
  color: var(--bg, #E9E4D9);
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 300ms var(--ease-pdp), color 300ms var(--ease-pdp);
}
.waitlist-submit:hover:not(:disabled) {
  background: var(--terra, #C06B45);
}
.waitlist-submit:disabled {
  cursor: not-allowed;
}

/* Scroll-Lock wenn Modal offen */
html.waitlist-open { overflow: hidden; }
