/* ============================================================
   BUXE — Tights are clothes.
   Design-System nach Screendesigns (Home page.png / product page.png)
   & Store Mockup Konzept.md
   ============================================================ */

:root {
  --bg: #F5F1EB;
  --fg: #111111;
  --muted: #77736E;
  --border: #D8D3CC;
  --surface: #FFFFFF;
  --panel: #EDE7DF;
  --dark: #111111;
  --burgundy: #6E1F2A;
  --red: #A61B1B;
  --navy: #2B3245;
  --charcoal: #4A4A4F;
  --cream: #E8E0D4;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --font-head: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1400px;
  --pad: clamp(16px, 3vw, 40px);
  --header-h: 64px;
}

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

/* hidden-Attribut gewinnt immer gegen display-Regeln (z. B. .size-result) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-light { background: var(--surface); color: var(--fg); }
.btn-light:hover { background: var(--fg); color: var(--surface); }

.btn-dark { background: var(--fg); color: var(--surface); }
.btn-dark:hover { background: #2e2b28; }

.btn-outline-light { border: 1px solid rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--fg); }

.btn-outline { border: 1px solid var(--fg); color: var(--fg); background: transparent; }
.btn-outline:hover { background: var(--fg); color: var(--surface); }

.btn-lg { padding: 17px 28px; font-size: 15px; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 235, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  justify-self: start;
}

.main-nav { display: flex; gap: 34px; }

.main-nav a {
  font-size: 14px;
  color: var(--fg);
  opacity: .85;
  transition: opacity .2s ease;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { opacity: 1; }
.main-nav a[aria-current="page"] { box-shadow: 0 1px 0 var(--fg); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s ease;
}
.icon-btn:hover { background: rgba(17,17,17,.07); }

.lang-switch { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.lang-switch b { color: var(--fg); font-weight: 500; }

.cart-btn { font-size: 14px; }
.cart-btn:hover { opacity: .7; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-self: start;
  padding: 6px 2px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: var(--fg);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */

.hero { padding: 8px var(--pad) 0; max-width: calc(var(--container) + 2 * var(--pad)); margin-inline: auto; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: min(86vh, 860px);
  display: flex;
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video { display: none; }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,0) 60%, rgba(0,0,0,.30) 100%),
    linear-gradient(100deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 38%, rgba(0,0,0,0) 60%);
}

.hero-copy h1,
.hero-copy p { text-shadow: 0 1px 24px rgba(0,0,0,.22); }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(24px, 4vw, 56px);
  color: #fff;
}

.hero-copy { max-width: 520px; }

.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 74px);
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 15px;
  max-width: 340px;
  margin-bottom: 26px;
  opacity: .92;
}

.hero-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  font-size: 13px;
  opacity: .95;
}

/* ============================================================
   Principles
   ============================================================ */

.principles { padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.principle svg { margin-inline: auto; margin-bottom: 14px; display: block; }

.principle h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.principle p { font-size: 13px; color: var(--muted); max-width: 220px; margin-inline: auto; }

/* ============================================================
   Editorial Tiles
   ============================================================ */

.tiles { padding: clamp(20px, 3vw, 40px) 0; }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  display: block;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}

.tile:hover img { transform: scale(1.04); }

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,0) 70%, rgba(0,0,0,.30) 100%);
}

.tile-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(20px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.tile-content h3 { font-size: clamp(22px, 2.4vw, 32px); max-width: 320px; }

.tile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.tile .tile-cta .arrow { transition: transform .25s ease; }
.tile:hover .tile-cta .arrow { transform: translateX(5px); }

/* ============================================================
   Audience Cards (Men / Women / Unisex)
   ============================================================ */

.audience { padding: clamp(20px, 3vw, 40px) 0; }

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

.a-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.9;
  display: block;
}

.a-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.a-card:hover img { transform: scale(1.04); }

.a-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
}

.a-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.a-content h3 { font-size: 26px; margin-bottom: 4px; }
.a-content p { font-size: 14px; opacity: .9; margin-bottom: 18px; max-width: 260px; }

/* ============================================================
   Feature Banner (dunkel / Stoff)
   ============================================================ */

.feature-banner { padding: clamp(20px, 3vw, 40px) 0; }

.fb-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  min-height: 440px;
}

.fb-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.12) 100%);
  pointer-events: none;
}

.fb-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 520px;
}

.fb-content h2 { font-size: clamp(28px, 3vw, 40px); }
.fb-content p { font-size: 14px; color: rgba(255,255,255,.78); max-width: 380px; }
.fb-content .btn { align-self: flex-start; }

.fb-list {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(320px, 100%);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fb-item {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 16px 0;
}
.fb-item:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }

.fb-item .num { font-size: 12px; opacity: .7; display: block; margin-bottom: 2px; }
.fb-item .label { font-size: 14px; font-weight: 500; }

/* ============================================================
   Freedom Banner
   ============================================================ */

.freedom { padding: clamp(20px, 3vw, 40px) 0; }

.freedom-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(420px, 58vw, 640px);
  display: flex;
  color: #fff;
}

.freedom-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.freedom-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
}

.freedom-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
}

.freedom-content h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  max-width: 420px;
}

.freedom-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.freedom-foot .wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
}

/* ============================================================
   Produkt-Teaser (Home)
   ============================================================ */

.product-teaser { padding: clamp(48px, 7vw, 96px) 0 clamp(20px, 3vw, 40px); }

.pt-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.pt-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
}

.pt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: opacity .25s ease;
}

.pt-color-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(245, 241, 235, .92);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
}

.pt-copy .eyebrow { margin-bottom: 14px; display: block; }
.pt-copy h2 { font-size: clamp(30px, 3.4vw, 46px); margin-bottom: 10px; }
.pt-copy .price { font-size: 18px; margin-bottom: 14px; }
.pt-copy > p { color: var(--muted); max-width: 420px; margin-bottom: 22px; }

.pt-swatches { display: flex; gap: 10px; margin-bottom: 26px; }
.pt-swatches .swatch { cursor: pointer; }

.pt-meta { display: flex; align-items: center; gap: 18px; }

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter { padding: clamp(56px, 8vw, 110px) 0; text-align: center; }

.newsletter h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 10px; }
.newsletter p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-inline: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color .2s ease;
}
.newsletter-form input:focus { border-color: var(--fg); }
.newsletter-form input::placeholder { color: var(--muted); }

.newsletter-success { color: var(--fg); font-weight: 500; margin-top: 14px; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.footer-brand .logo { font-size: 40px; display: inline-block; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 260px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--fg); }

/* ---------- KI-Transparenz (EU AI Act Art. 50) ---------- */

.ai-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.ai-note a {
  color: var(--fg);
  opacity: .7;
  margin-left: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.ai-note a:hover { opacity: 1; }

.ai-note--inline { margin: 10px 0 0; }

.ai-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .38);
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: help;
}

.ai-glyph { display: inline-flex; line-height: 1; }

/* Text nur bei Hover direkt auf der Pill (Touch: immer sichtbar) */
.ai-chip-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .25s ease, opacity .25s ease, padding-left .25s ease;
}

.ai-chip:hover .ai-chip-text {
  max-width: 140px;
  opacity: 1;
  padding-left: 5px;
}

/* Tastaturnavigation: Container-Fokus zeigt den Text ebenfalls
   (Accessibility gem. Art. 50(5); für Maus-Nutzer unsichtbar) */
[data-ai-labeled]:focus-within .ai-chip-text,
.hero-media:focus-within .ai-chip-text,
.pdp-stage:focus-within .ai-chip-text {
  max-width: 140px;
  opacity: 1;
  padding-left: 5px;
}

@media (hover: none) {
  .ai-chip-text { max-width: 140px; opacity: 1; padding-left: 5px; }
}

.ugc-handle .ki-inline {
  margin-left: 4px;
  font-size: 11px;
  font-weight: 400;
  opacity: .55;
}

/* Kleinere Variante für Medienkarten (via main.js Sweep gesetzt) */
.ai-chip--mini {
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  font-size: 10px;
}

/* Positionierter Wrapper für freistehende Bilder (z. B. Modellstudios) */
.ai-media { position: relative; display: block; }
.model-studies-grid .ai-media img { display: block; }

.journal-card-media { position: relative; }

/* ============================================================
   Produktseite (PDP)
   ============================================================ */

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 22px;
}
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--fg); }

.pdp-layout {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 72px);
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-thumb {
  position: relative;
  width: 76px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid transparent;
  background: var(--panel);
  padding: 0;
  transition: border-color .2s ease, opacity .2s ease;
  opacity: .85;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { border-color: var(--fg); opacity: 1; }

.pdp-scroll {
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  margin-top: 6px;
  transition: background .2s ease;
}
.pdp-scroll:hover { background: var(--panel); }

.pdp-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
}

.pdp-stage img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  transition: opacity .25s ease;
}

.pdp-model-switch {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 7px 6px 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  background: rgba(17,17,17,.78);
  color: #fff;
  box-shadow: 0 8px 24px rgba(17,17,17,.18);
  backdrop-filter: blur(10px);
}

.pdp-model-switch > span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.model-segments { display: flex; gap: 3px; }

.model-segments button {
  min-width: 48px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}

.model-segments button:hover,
.model-segments button.active {
  background: #fff;
  color: var(--fg);
}

.pdp-info { position: sticky; top: calc(var(--header-h) + 20px); }

.pdp-info .eyebrow { margin-bottom: 10px; display: block; }
.pdp-info h1 { font-size: clamp(28px, 2.6vw, 36px); margin-bottom: 8px; }

.pdp-price { font-size: 19px; margin-bottom: 8px; }

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
}
.rating .stars { display: inline-flex; gap: 1.5px; }
.rating .count { color: var(--muted); }

.pdp-lede { color: var(--fg); max-width: 400px; margin-bottom: 26px; }

.option { margin-bottom: 22px; }

.option-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 14px;
}
.option-head .value { font-weight: 600; }
.option-head a { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.option-head a:hover { color: var(--fg); }

.swatches { display: flex; gap: 12px; }

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.15);
  position: relative;
  transition: transform .2s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1.6px solid var(--fg);
  border-radius: 50%;
}

.sizes { display: flex; gap: 10px; flex-wrap: wrap; }

.size-btn {
  min-width: 52px;
  height: 48px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.size-btn:hover { border-color: var(--fg); }
.size-btn.active { background: var(--fg); border-color: var(--fg); color: var(--surface); }

.buy-row { display: flex; gap: 12px; margin: 26px 0 10px; }
.buy-row .btn { flex: 1; justify-content: center; }

.wish-btn {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease;
}
.wish-btn:hover { border-color: var(--fg); }
.wish-btn.active svg path { fill: var(--fg); }

.size-hint {
  font-size: 13px;
  color: var(--red);
  margin-bottom: 8px;
  min-height: 18px;
}

.size-confidence {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: -12px;
  margin-bottom: 18px;
}

.pdp-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: -8px;
}
.pdp-pay svg { flex: 0 0 auto; }

.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(245, 241, 235, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.pdp-sticky-bar.show { display: grid; }
.psb-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.psb-info b { font-size: 14px; }
.psb-info span {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 921px) {
  .pdp-sticky-bar { display: none !important; }
}

@media (max-width: 920px) {
  .toast { bottom: 86px; }
}

.pdp-usp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}
.pdp-usp span { display: flex; align-items: center; gap: 8px; }

.pdp-benefits {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.benefit svg { margin-bottom: 10px; }
.benefit h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.benefit p { font-size: 13px; color: var(--muted); }

/* ---------- PDP Banners ---------- */

.pdp-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: clamp(20px, 3vw, 40px);
}

.pb-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  color: #fff;
}
.pb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.45) 55%, rgba(8,8,8,.08) 100%);
}

.pb-card.pb-light { color: var(--fg); }
.pb-card.pb-light::after { background: linear-gradient(90deg, rgba(245,241,235,0) 40%, rgba(245,241,235,.92) 62%, rgba(245,241,235,.98) 100%); }

.pb-content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  max-width: 60%;
}

.pb-card.pb-light .pb-content { margin-left: auto; max-width: 52%; align-items: flex-start; }

.pb-content h3 { font-size: clamp(22px, 2.2vw, 30px); }
.pb-content p { font-size: 14px; opacity: .85; }

.pb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
}
.pb-link .arrow { transition: transform .25s ease; }
.pb-link:hover .arrow { transform: translateX(5px); }

/* ---------- USP Row ---------- */

.usp-row { border-top: 1px solid var(--border); padding: clamp(28px, 4vw, 44px) 0; }

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

.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp svg { flex: 0 0 auto; margin-top: 2px; }
.usp h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.usp p { font-size: 13px; color: var(--muted); }

/* ---------- Reviews ---------- */

.reviews { padding: clamp(40px, 6vw, 80px) 0; }

.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; }
.section-head p { color: var(--muted); max-width: 520px; }

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card .stars { display: inline-flex; gap: 2px; }
.review-card blockquote { font-size: 14px; line-height: 1.6; }
.review-card cite { font-style: normal; font-size: 13px; font-weight: 600; }

.review-context { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }

.chip {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
}

.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip.clickable { cursor: pointer; transition: all .2s ease; background: var(--surface); }
.chip.clickable:hover { border-color: var(--fg); color: var(--fg); }
.chip.clickable.active { background: var(--fg); border-color: var(--fg); color: var(--surface); }

/* ============================================================
   Shop-Seite
   ============================================================ */

.page-head { padding: clamp(36px, 5vw, 64px) 0 clamp(20px, 3vw, 32px); }
.page-head h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 10px; }
.page-head p { color: var(--muted); max-width: 520px; }

.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

.result-count { font-size: 13px; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.product-card { display: block; }

.pc-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.9;
  background: var(--panel);
  margin-bottom: 14px;
}

.pc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1), opacity .3s ease;
}

.pc-media .pc-hover { opacity: 0; }
.product-card:hover .pc-media img.pc-main { transform: scale(1.03); }
.product-card:hover .pc-hover { opacity: 1; }

.pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(245,241,235,.9);
  padding: 6px 12px;
  border-radius: 999px;
}

.pc-info { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 0 4px; }
.pc-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.pc-info .pc-color { font-size: 13px; color: var(--muted); }
.pc-info .pc-price { font-size: 15px; white-space: nowrap; }

.pc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  padding: 0 4px;
  margin-top: 6px;
}
.pc-rating .stars { display: inline-flex; gap: 1.5px; color: var(--fg); }

/* ============================================================
   Lookbook
   ============================================================ */

.look-grid {
  columns: 3;
  column-gap: 16px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.look {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.look img { width: 100%; transition: transform 1.2s cubic-bezier(.2,.6,.2,1); }
.look:hover img { transform: scale(1.03); }

.look::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.45) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.look:hover::after { opacity: 1; }

.look-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.look:hover .look-caption { opacity: 1; transform: translateY(0); }
.look-caption .look-title { font-size: 14px; font-weight: 600; }
.look-caption .look-cat { font-size: 12px; opacity: .8; display: block; }
.look-caption .pb-link { margin: 0; }

.look-hero-img { position: relative; }

/* ============================================================
   About / Journal
   ============================================================ */

.about-hero { padding-bottom: clamp(40px, 5vw, 72px); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.about-copy h1 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 22px; }
.about-copy .lede { font-size: 17px; margin-bottom: 22px; max-width: 460px; }
.about-copy p { color: var(--muted); max-width: 460px; margin-bottom: 14px; }

.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }

.values { padding: clamp(40px, 6vw, 80px) 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.value-card .num { font-size: 12px; color: var(--muted); display: block; margin-bottom: 18px; }
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); }

.faq { padding: clamp(40px, 6vw, 80px) 0; max-width: 820px; }
.faq h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 26px; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}
.faq-q .faq-icon { transition: transform .3s ease; flex: 0 0 auto; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 0 22px; color: var(--muted); max-width: 640px; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.journal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.journal-card-media { margin: -28px -26px 8px; overflow: hidden; background: var(--panel); aspect-ratio: 16 / 9; }
.journal-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.journal-card:hover .journal-card-media img { transform: scale(1.025); }
.journal-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(17,17,17,.06); }
.journal-card .cat { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.journal-card h3 { font-size: 19px; line-height: 1.25; }
.journal-card p { font-size: 14px; color: var(--muted); }
.journal-card .pb-link { margin-top: auto; padding-top: 8px; }

/* ============================================================
   Cart Drawer
   ============================================================ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17,17,17,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(420px, 92vw);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.3,.7,.3,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-size: 17px; }

.cart-close { font-size: 22px; line-height: 1; width: 36px; height: 36px; border-radius: 50%; }
.cart-close:hover { background: rgba(17,17,17,.07); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
}

.cart-item { display: flex; gap: 14px; }

.ci-media {
  position: relative;
  width: 76px;
  height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
  flex: 0 0 auto;
}
.ci-media img { width: 100%; height: 100%; object-fit: cover; }

.ci-body { flex: 1; display: flex; flex-direction: column; }
.ci-body h4 { font-size: 14px; font-weight: 600; }
.ci-body .ci-variant { font-size: 12.5px; color: var(--muted); margin: 2px 0 10px; }

.ci-row { display: flex; justify-content: space-between; align-items: center; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); }
.qty button { width: 28px; height: 28px; font-size: 15px; line-height: 1; }
.qty span { min-width: 24px; text-align: center; font-size: 13px; }

.ci-price { font-size: 14px; font-weight: 500; }

.ci-remove { font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; align-self: flex-start; }
.ci-remove:hover { color: var(--fg); }

.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px 24px; }

.shipping-note { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.shipping-note b { color: var(--fg); font-weight: 500; }

.shipping-bar { height: 3px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: 18px; }
.shipping-bar span { display: block; height: 100%; background: var(--fg); width: 0; transition: width .4s ease; }

.cart-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.cart-foot .btn { width: 100%; justify-content: center; }

.cart-pay { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 120;
  background: var(--fg);
  color: var(--surface);
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   Vorbestellung
   ============================================================ */

.announce-bar {
  background: var(--fg);
  color: var(--surface);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .02em;
  padding: 9px 16px;
}

.preorder-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.preorder-note svg { flex: 0 0 auto; margin-top: 1px; }
.preorder-note strong { display: block; font-size: 13.5px; margin-bottom: 2px; }
.preorder-note .tx { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

.ci-tag { align-self: flex-start; margin: 8px 0 2px; }

.preorder-footnote {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ---------- Checkout (Vorbestellung abschließen) ---------- */

.checkout-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  width: min(460px, 94vw);
  background: var(--bg);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.3,.7,.3,1);
  display: flex;
  flex-direction: column;
}
.checkout-modal.open { transform: translateX(0); }

.checkout-modal .drawer-overlay-level { z-index: 100; }

.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.checkout-head h3 { font-size: 17px; }

.checkout-body { flex: 1; overflow-y: auto; padding: 22px 24px 28px; }

.checkout-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

.checkout-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 16px 18px;
  margin-bottom: 22px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 4px 0;
  color: var(--muted);
}
.cs-row.cs-items { flex-direction: column; gap: 2px; padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--border); }
.cs-row.cs-items b { color: var(--fg); font-weight: 500; }
.cs-row .cs-val { color: var(--fg); }
.cs-row.cs-total { font-size: 15px; font-weight: 600; color: var(--fg); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--border); }

.checkout-form { display: flex; flex-direction: column; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; }
.field input {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color .2s ease;
}
.field input:focus { border-color: var(--fg); }
.field input::placeholder { color: var(--muted); }

.form-hint { font-size: 13px; color: var(--red); min-height: 17px; margin: -4px 0 0; }
.form-fineprint { font-size: 12px; color: var(--muted); text-align: center; }
.co-pay { font-size: 12.5px; color: var(--fg); text-align: center; }

/* ============================================================
   UGC Creator
   ============================================================ */

.creator-hero { padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px); }
.creator-hero .about-media img { aspect-ratio: 4 / 5; }

.creator-hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.creator-hero-note { font-size: 13px; color: var(--muted); max-width: 300px; }

.creator-intro { padding: clamp(20px, 3vw, 40px) 0 clamp(56px, 7vw, 96px); }

.creator-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: clamp(56px, 7vw, 96px); }
.creator-gallery figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.creator-gallery img { width: 100%; height: auto; transition: transform 1.2s cubic-bezier(.2,.6,.2,1); }
.creator-gallery figure:hover img { transform: scale(1.04); }

.model-studies { padding: 0 0 clamp(56px, 7vw, 96px); }
.model-studies .section-head { margin-bottom: 32px; }
.model-studies-grid { display: grid; grid-template-columns: 4fr 3fr; gap: 16px; align-items: end; }
.model-studies-grid img { width: 100%; height: auto; border-radius: var(--radius-lg); background: var(--panel); }
.model-studies-grid .model-studies-wide { grid-column: 1 / -1; }

.creator-application { padding: 0 0 clamp(72px, 9vw, 128px); }
.creator-application-grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(480px, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.creator-application-copy { position: sticky; top: calc(var(--header-h) + 28px); }
.creator-application-copy h2 { margin: 14px 0 18px; font-size: clamp(28px, 3.2vw, 42px); }
.creator-application-copy > p { color: var(--muted); max-width: 460px; }
.creator-facts { margin-top: 40px; border-top: 1px solid var(--border); }
.creator-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.creator-facts dt { color: var(--muted); }

.creator-form { display: flex; flex-direction: column; gap: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 44px); }
.form-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select:focus, .field textarea:focus { border-color: var(--fg); }

.creator-styles { border: 0; }
.creator-styles legend { margin-bottom: 9px; font-size: 13px; font-weight: 500; }
.creator-styles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.creator-styles legend { grid-column: 1 / -1; }
.creator-styles label { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; }
.creator-styles input, .creator-consent input { accent-color: var(--fg); }
.creator-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.creator-consent input { margin-top: 3px; flex: 0 0 auto; }
.creator-consent a { color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }
.creator-form > .btn { align-self: flex-start; }
.creator-form button:disabled { opacity: .55; cursor: wait; }
.creator-success { min-height: 420px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.creator-success h3 { margin: 14px 0 12px; font-size: clamp(34px, 4vw, 54px); }
.creator-success p { max-width: 470px; margin-bottom: 28px; color: var(--muted); }

.checkout-success {
  text-align: center;
  padding: 36px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.checkout-success h4 { font-size: 22px; }
.checkout-success p { font-size: 14px; color: var(--muted); max-width: 300px; }
.checkout-success .ref {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
}
.checkout-success .btn { margin-top: 10px; }

/* ============================================================
   Admin
   ============================================================ */

.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 40px);
  border-bottom: 1px solid var(--border);
  background: rgba(245, 241, 235, .95);
  backdrop-filter: blur(10px);
}

.admin-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
}

.admin-nav { display: flex; gap: 8px; margin-left: 20px; }

.admin-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.admin-tab:hover { background: rgba(17,17,17,.07); }
.admin-tab.active { background: var(--fg); color: var(--surface); }

.admin-store-link { margin-left: auto; font-size: 14px; font-weight: 500; }
.admin-store-link .arrow { transition: transform .25s ease; display: inline-block; }
.admin-store-link:hover .arrow { transform: translateX(4px); }

.admin-logout {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s ease;
}
.admin-logout:hover { color: var(--fg); }

/* ---------- Login ---------- */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: min(400px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  text-align: center;
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.login-brand .logo { font-size: 30px; }

.login-card h1 { font-size: 24px; margin-bottom: 6px; }
.login-card > p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }

.login-card form { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.login-card .form-hint { min-height: 18px; margin: 4px 0 8px; }
.login-card .btn { width: 100%; justify-content: center; }

.login-back {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.login-back:hover { color: var(--fg); }

.admin-main { padding-block: 32px 72px; }

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

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card .stat-label {
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-card .stat-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 860px;
}
.admin-table th {
  text-align: left;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }

.order-ref {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.oi { white-space: nowrap; }

.status-select {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  font-size: 13px;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 20px;
}
.admin-card h2 { font-size: 21px; margin-bottom: 4px; }

.admin-hint { font-size: 13.5px; color: var(--muted); }
.smoke-panel { margin-top: 0; }
.smoke-panel .admin-table-wrap { margin-top: 18px; }
.smoke-table { min-width: 720px; }
.creator-admin-table { min-width: 1180px; }
.creator-motivation { min-width: 260px; max-width: 380px; white-space: normal; }
.creator-status-select { padding: 7px 10px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); font: inherit; }
.admin-inline-link { text-decoration: underline; text-underline-offset: 2px; }
.admin-muted { color: var(--muted); font-size: 12px; }

.admin-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.check { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; white-space: nowrap; padding-bottom: 12px; }
.check-lg { align-self: center; }

.admin-var-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.admin-var-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px;
  border-bottom: 1px solid var(--border);
}
.admin-var-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.admin-var-table input[type="text"] {
  width: 100%;
  min-width: 140px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  background: var(--bg);
}
.admin-var-table input[type="color"] {
  width: 46px;
  height: 36px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
}
.row-actions { display: flex; gap: 8px; }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-delete { color: #8A2B2B; border: 1px solid transparent; }
.btn-delete:hover { border-color: #8A2B2B; background: transparent; color: #8A2B2B; }

.admin-empty {
  color: var(--muted);
  text-align: center;
  padding: 36px 16px;
  font-size: 14px;
}

.admin-add-variant { border-top: 1px solid var(--border); padding-top: 18px; margin-top: 18px; }

.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-nav { margin-left: 0; }
  .admin-store-link { display: none; }
}

/* ============================================================
   Opacity Proof / Fit / Community
   ============================================================ */

.op-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(440px, 52vw, 620px);
  display: flex;
  color: #fff;
  background: #0d0d0d;
}

.op-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.op-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.85) 0%, rgba(8,8,8,.45) 55%, rgba(8,8,8,.15) 100%);
}

.op-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 560px;
}

.op-content h2 { font-size: clamp(40px, 5vw, 72px); }
.op-content .op-line { font-size: 16px; opacity: .92; }

.op-stats { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 14px; }
.op-stat { display: flex; flex-direction: column; gap: 4px; }
.op-stat .op-num { font-family: var(--font-head); font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; white-space: nowrap; }
.op-stat .op-label { font-size: 12.5px; opacity: .75; max-width: 140px; }

.fit-section { padding: clamp(48px, 7vw, 96px) 0 clamp(20px, 3vw, 40px); }

.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.fit-copy h2 { font-size: clamp(30px, 3.4vw, 46px); }
.fit-copy > p { color: var(--muted); max-width: 460px; }

.fit-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.fit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.fit-list svg { flex: 0 0 auto; margin-top: 3px; }

.fit-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); }
.fit-media img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; display: block; }

.community { padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 40px); }

.community-grid { columns: 4; column-gap: 16px; }

.ugc-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.ugc-card img { width: 100%; display: block; transition: transform 1.2s cubic-bezier(.2,.6,.2,1); }
.ugc-card:hover img { transform: scale(1.04); }

.ugc-card video {
  width: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.ugc-card:hover video { transform: scale(1.04); }

.ugc-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(245, 241, 235, .92);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ugc-handle {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(245, 241, 235, .92);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
}

/* ============================================================
   Suche
   ============================================================ */

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.3,.7,.3,1);
}
.search-panel.open { transform: translateY(0); }

.search-inner { padding-block: 26px 8px; }

.search-row { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--fg); }
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--fg);
}
.search-input::placeholder { color: var(--muted); }

.search-results { max-height: 46vh; overflow-y: auto; padding-bottom: 14px; }

.search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  transition: background .15s ease, padding-left .15s ease;
}
.search-result:hover { background: rgba(17,17,17,.04); padding-left: 10px; }
.search-result .sr-type { font-size: 12px; color: var(--muted); white-space: nowrap; }
.search-no { color: var(--muted); padding: 18px 4px; font-size: 14px; }

/* ============================================================
   Größenberater & Kontakt
   ============================================================ */

.size-finder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 820px;
}

.size-result {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 820px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.size-result .big {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.size-result b { color: var(--fg); font-weight: 600; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.contact-form textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  resize: vertical;
  transition: border-color .2s ease;
}
.contact-form textarea:focus { border-color: var(--fg); }

/* ============================================================
   Artikel, Rechtliches, 404
   ============================================================ */

.article-page { max-width: 760px; margin-inline: auto; padding-bottom: clamp(32px, 5vw, 56px); }
.article-page h1 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 14px; }
.article-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.article-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.article-body p { margin-bottom: 18px; line-height: 1.75; }
.article-cta { display: flex; gap: 22px; align-items: center; margin-top: 30px; flex-wrap: wrap; }

.legal-page { max-width: 760px; margin-inline: auto; padding-block: clamp(36px, 5vw, 64px) clamp(48px, 6vw, 80px); }
.legal-page h1 { font-size: clamp(30px, 3.6vw, 46px); margin: 14px 0 26px; }
.legal-page h2 { font-size: 19px; margin: 28px 0 10px; }
.legal-page p { margin-bottom: 12px; line-height: 1.7; }
.legal-note { margin-top: 36px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 18px; }

.nf-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
}
.nf-code {
  font-family: var(--font-head);
  font-size: clamp(90px, 14vw, 180px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.nf-inner p { color: var(--muted); margin: 12px 0 28px; max-width: 380px; }

@media (max-width: 920px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-list { grid-template-columns: 1fr; }
  .community-grid { columns: 2; }
  .op-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 560px) {
  .community-grid { columns: 1; }
}

/* Touch-Geräte: Hover-Abhängigkeiten aufheben */
@media (hover: none) {
  .look::after { opacity: 1; }
  .look-caption { opacity: 1; transform: none; }
}

/* ============================================================
   Reveal-Animation
   ============================================================ */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .pdp-layout { grid-template-columns: 64px minmax(0, 1fr) minmax(320px, 1fr); }
  .pdp-thumb { width: 64px; }
}

@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 49;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px var(--pad) 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }
  .logo { justify-self: center; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .lang-switch { display: none; }

  .principles-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .a-card { aspect-ratio: 4 / 3.4; }
  .fb-card { grid-template-columns: 1fr; min-height: 480px; }
  .fb-list { justify-self: start; width: 100%; padding-top: 0; }
  .pt-card { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-banners { grid-template-columns: 1fr; }
  .pb-card.pb-light .pb-content { max-width: 60%; }
  .review-grid, .values-grid, .journal-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .look-grid { columns: 2; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .pdp-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .pdp-thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .pdp-thumb { flex: 0 0 auto; }
  .pdp-scroll { display: none; }
  .pdp-stage { order: 1; }
  .pdp-info { position: static; order: 3; }
  .creator-gallery { grid-template-columns: 1fr 1fr; }
  .model-studies-grid { grid-template-columns: 1fr; align-items: start; }
  .model-studies-grid .model-studies-wide { grid-column: auto; }
  .creator-application-grid { grid-template-columns: 1fr; }
  .creator-application-copy { position: static; }
}

@media (max-width: 560px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 4.4; }
  .product-grid { grid-template-columns: 1fr; }
  .look-grid { columns: 1; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .usp-grid { grid-template-columns: 1fr; }
  .pb-content, .pb-card.pb-light .pb-content { max-width: 100%; }
  .pdp-model-switch { left: 10px; right: 10px; bottom: 10px; justify-content: space-between; }
  .model-segments { flex: 1; }
  .model-segments button { flex: 1; min-width: 0; }
  .creator-hero-actions { flex-direction: column; align-items: flex-start; }
  .creator-gallery { grid-template-columns: 1fr 1fr; }
  .form-grid-two, .creator-styles { grid-template-columns: 1fr; }
  .creator-styles legend { grid-column: auto; }
}
