/* Bronco Sport – Stylesheet
   Systemschrift (SF Pro auf Apple-Geräten), keine Webfonts, keine Frameworks. */

:root {
  --bg: #f5f1ea;
  --bg-alt: #ede6da;
  --surface: #fbf9f5;
  --photo: #ebe6de; /* Hintergrund der Produktbilder */
  --ink: #1d1d1f;
  --ink-2: #6b665e;
  --ink-3: #8e877c;
  --line: rgba(29, 29, 31, 0.1);
  --accent: #7a6044;
  --gold: #c9a96a;
  --gold-ink: #8a6a2e;
  --night: #141211;
  --night-ink: #ede6da;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 22px;
  --radius-img: 6px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1240px;
  --nav-h: 52px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-duration: 6s;
  color-scheme: light;
}

/* ---------- Reset ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; letter-spacing: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
}
.skip-link:focus { top: 10px; }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(720px + var(--gutter) * 2); }

.section { padding-block: clamp(72px, 10vw, 128px); }
.section--tight { padding-top: 0; }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold-ink); }

.section__title {
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
}
.section__title--sm { font-size: clamp(26px, 3.4vw, 38px); }

.lead {
  max-width: 36em;
  margin-top: 20px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

/* ---------- Buttons & Links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.btn:hover { background: #3a3632; }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn--lg { min-height: 52px; padding: 14px 28px; font-size: 17px; }
.btn--full { width: 100%; }
.btn--light { background: var(--night-ink); color: var(--night); }
.btn--light:hover { background: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 17px;
}
.link-arrow::after {
  content: "›";
  font-size: 1.25em;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }
.link-arrow:hover::after { transform: translateX(3px); }

.icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  transition: background-color 0.2s var(--ease);
}
.icon-btn:hover { background: rgba(29, 29, 31, 0.06); }

/* ---------- Ankündigung & Navigation ---------- */

.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  letter-spacing: 0;
  text-align: center;
}
.announce a { display: block; padding: 8px var(--gutter); }
.announce a:hover { text-decoration: underline; text-underline-offset: 2px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.94);
  border-bottom: 1px solid var(--line);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav {
    background: rgba(245, 241, 234, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.logo span { margin-left: 0.35em; font-weight: 400; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  color: var(--ink-2);
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 2px; margin-right: -10px; }
.nav__toggle { display: none; }

.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0;
}
.cart-count[hidden] { display: none; }

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger { position: relative; }
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { top: -5px; }
.burger::after { top: 5px; }
.nav__toggle[aria-expanded="true"] .burger { background: transparent; }
.nav__toggle[aria-expanded="true"] .burger::before { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .burger::after { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 759px) {
  .nav__toggle { display: inline-grid; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  }
  .nav__links.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
}

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

.hero { padding-block: clamp(32px, 6vw, 80px) clamp(56px, 8vw, 96px); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}

.hero__title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__title .line > span { display: inline-block; }
.hero__title .line + .line > span { color: var(--ink-3); }

.hero__lead {
  max-width: 30em;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.42;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 36px;
}

.hero__stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--photo);
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(60, 45, 30, 0.35);
  transform: translate3d(0, var(--parallax, 0px), 0);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 0s linear 1.2s;
}
.hero__slide.is-active img {
  transform: scale(1);
  transition: transform calc(var(--hero-duration) + 1.5s) cubic-bezier(0.2, 0.6, 0.2, 1);
}

.hero__meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.hero__caption {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(251, 249, 245, 0.8);
  font-size: 14px;
  line-height: 1.3;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero__caption {
    background: rgba(251, 249, 245, 0.62);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    backdrop-filter: saturate(160%) blur(16px);
  }
}
.hero__caption.is-changing { opacity: 0; transform: translateY(6px); }
.hero__name { font-weight: 600; }
.hero__price { color: var(--ink-2); }

.hero__progress { display: flex; gap: 6px; padding-bottom: 12px; }
.hero__dot {
  display: block;
  width: 28px;
  height: 16px;
  padding: 6px 0;
}
.hero__dot span {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(29, 29, 31, 0.16);
}
.hero__dot span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot.is-active span::after { animation: hero-progress var(--hero-duration) linear forwards; }
.hero__stage.is-paused .hero__dot.is-active span::after { animation-play-state: paused; }
@keyframes hero-progress { to { transform: scaleX(1); } }

/* Intro beim Laden */
.js .intro { opacity: 0; transform: translate3d(0, 18px, 0); }
.js .hero__title .intro { opacity: 1; transform: translate3d(0, 105%, 0); }
.js .hero__stage { clip-path: inset(6% 6% 6% 6% round 24px); opacity: 0; }
.is-loaded .intro {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-out);
}
.is-loaded .hero__title .intro { transform: none; }
.is-loaded .intro--2 { transition-delay: 0.08s; }
.is-loaded .intro--3 { transition-delay: 0.16s; }
.is-loaded .intro--4 { transition-delay: 0.32s; }
.is-loaded .intro--5 { transition-delay: 0.42s; }
.is-loaded .hero__stage {
  clip-path: inset(0 0 0 0 round 24px);
  opacity: 1;
  transition: clip-path 1.4s var(--ease-out) 0.1s, opacity 0.8s var(--ease) 0.1s;
}

/* Absicherung: falls das Skript nicht lädt, erscheint der Hero trotzdem */
.js .intro { animation: intro-failsafe 0.01s linear 2.5s forwards; }
.js .hero__stage { animation: stage-failsafe 0.01s linear 2.5s forwards; }
@keyframes intro-failsafe { to { opacity: 1; transform: none; } }
@keyframes stage-failsafe { to { opacity: 1; clip-path: inset(0 0 0 0 round 24px); } }

@media (max-width: 859px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(44px, 12vw, 88px); }
  .hero__stage { max-width: 560px; width: 100%; margin-inline: auto; }
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  padding-block: 18px;
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 56s linear infinite;
}
.ticker span {
  padding-inline: 28px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.ticker span::after {
  content: "•";
  margin-left: 56px;
  color: var(--ink-3);
}
@keyframes ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Filter ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip:hover { border-color: rgba(29, 29, 31, 0.3); color: var(--ink); }
.chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.chip--gold { border-color: rgba(138, 106, 46, 0.35); color: var(--gold-ink); }
.chip--gold[aria-pressed="true"] { border-color: var(--night); background: var(--night); color: var(--gold); }

/* ---------- Produktkarten ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 18px;
}
.grid--related { margin-top: 32px; }
@media (max-width: 999px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 699px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; } }

.card { position: relative; min-width: 0; }
.card[hidden] { display: none; }

.card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--photo);
  aspect-ratio: 4 / 5;
}
.card__img { position: absolute; inset: 0; }
.card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease), transform 0.9s var(--ease-out);
}
.card__back { opacity: 0; }

.card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(251, 249, 245, 0.9);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.card__badge--gold { background: var(--night); color: var(--gold); }

.card__quick {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(251, 249, 245, 0.92);
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .card__quick {
    background: rgba(251, 249, 245, 0.74);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
  }
}
.card__quick p { margin-bottom: 8px; color: var(--ink-2); font-size: 12px; }
.card__sizes { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.card__sizes button {
  min-width: 38px;
  height: 32px;
  padding-inline: 10px;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card__sizes button:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }

@media (hover: hover) and (pointer: fine) {
  .card__media:hover .card__back { opacity: 1; }
  .card__media:hover .card__img img { transform: scale(1.025); }
  .card__media:hover .card__quick,
  .card__quick:focus-within { opacity: 1; transform: none; }
}
@media (hover: none), (pointer: coarse) {
  .card__quick { display: none; }
}

.card__body { padding-top: 12px; }
.card__title { font-size: 15px; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.card__title a:hover { text-decoration: underline; text-underline-offset: 2px; }
.card__price { margin-top: 4px; font-size: 14px; }
.card__price span { color: var(--ink-3); font-size: 12px; }
.card__color { display: flex; align-items: center; gap: 7px; margin-top: 6px; color: var(--ink-2); font-size: 12.5px; }
.dot { width: 11px; height: 11px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18); }

@media (max-width: 699px) {
  .card__title { font-size: 13.5px; }
  .card__price { font-size: 13px; }
  .card__badge { top: 8px; left: 8px; font-size: 10px; }
}

/* ---------- Gold-Kapsel ---------- */

.gold {
  padding-block: clamp(80px, 12vw, 150px);
  background: var(--night);
  color: var(--night-ink);
  overflow: hidden;
}
.gold__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}
.gold .eyebrow--gold { color: var(--gold); }
.gold__title {
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.silver,
.goldtext {
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s var(--ease) infinite alternate;
}
.silver { background-image: linear-gradient(100deg, #8f8c88 0%, #e9e6e1 30%, #a7a39d 50%, #f4f1ec 70%, #8f8c88 100%); }
.goldtext { background-image: linear-gradient(100deg, #9a7638 0%, #f0d9a4 30%, #b8914e 50%, #f6e3b6 70%, #9a7638 100%); }
@keyframes shimmer { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

.gold__lead { max-width: 30em; margin: 24px 0 36px; color: #a9a196; font-size: clamp(17px, 1.5vw, 20px); }
.gold__images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gold__shot:last-child { margin-top: 56px; }
.gold__shot img { width: 100%; border-radius: 8px; background: var(--photo); }
.gold__shot figcaption {
  margin-top: 12px;
  color: #a9a196;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ---------- Manifest & Details ---------- */

.manifest__intro { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.feature__media {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--photo);
  aspect-ratio: 4 / 5;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__num {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.feature h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.feature p { margin-top: 6px; color: var(--ink-2); font-size: 16px; }

@media (max-width: 859px) {
  .features { grid-template-columns: 1fr; max-width: 520px; }
}

/* ---------- Newsletter ---------- */

.newsletter {
  padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 64px);
  border-radius: 32px;
  background: var(--bg-alt);
  text-align: center;
}
.newsletter .lead { margin-inline: auto; }
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 32px auto 0;
}
.newsletter__form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(29, 29, 31, 0.15);
  border-radius: 999px;
  background: var(--surface);
  font-size: 16px; /* verhindert Zoom unter iOS */
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(122, 96, 68, 0.15);
}
.newsletter__form .btn { min-height: 48px; }
.newsletter__note { margin-top: 16px; color: var(--ink-2); font-size: 13px; }
.newsletter__note a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 479px) {
  .newsletter__form { flex-direction: column; }
}

/* ---------- Produktseite ---------- */

.breadcrumb { padding-block: 20px; font-size: 13px; color: var(--ink-2); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current] { color: var(--ink); }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: 24px;
}

.pdp__track { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp__shot {
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--photo);
  aspect-ratio: 4 / 5;
}
.pdp__shot--main { grid-column: 1 / -1; }
.pdp__shot img { width: 100%; height: 100%; object-fit: cover; }
.pdp__dots { display: none; }

.pdp__info { position: sticky; top: calc(var(--nav-h) + 24px); padding-top: 4px; }
.pdp__title { font-size: clamp(26px, 2.8vw, 34px); font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; }
.pdp__price { margin-top: 14px; font-size: 20px; font-weight: 500; }
.pdp__tax { margin-top: 2px; color: var(--ink-2); font-size: 13px; }
.pdp__block { margin-top: 28px; }
.pdp__label { margin-bottom: 10px; color: var(--ink-2); font-size: 14px; }
.pdp__label span { color: var(--ink); }
.pdp__variants { display: flex; gap: 8px; }
.variant {
  display: block;
  overflow: hidden;
  width: 56px;
  border-radius: 6px;
  background: var(--photo);
  box-shadow: 0 0 0 1.5px var(--ink);
}
.variant img { width: 56px; height: 70px; object-fit: cover; }
.pdp__form { margin-top: 26px; }
.sizes__legend { display: flex; justify-content: space-between; gap: 12px; width: 100%; padding: 0; }
.pdp__chart-link {
  color: var(--ink-2);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp__chart-link:hover { color: var(--ink); }
.sizes__list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.size input { position: absolute; opacity: 0; pointer-events: none; }
.size span {
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 44px;
  padding-inline: 16px;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.size span:hover { border-color: rgba(29, 29, 31, 0.45); }
.size input:checked + span { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); font-weight: 600; }
.size input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 3px; }

.pdp__usp { display: grid; gap: 6px; margin-top: 20px; color: var(--ink-2); font-size: 13px; }
.pdp__usp li { display: flex; align-items: center; gap: 8px; }
.pdp__usp li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  background: no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a6044' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}
.pdp__desc { margin-top: 24px; color: var(--ink-2); }

.accordion { margin-top: 28px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  color: var(--ink-2);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details > p { padding-bottom: 18px; color: var(--ink-2); font-size: 15px; }

.size-table { width: 100%; font-size: 14px; font-variant-numeric: tabular-nums; }
.size-table th, .size-table td { padding: 9px 0; border-bottom: 1px solid var(--line); text-align: left; }
.size-table thead th { color: var(--ink-2); font-weight: 500; }
.size-table tbody th { font-weight: 600; }
.size-note { padding: 10px 0 18px; color: var(--ink-3); font-size: 12.5px; }

@media (max-width: 859px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .pdp__track {
    display: flex;
    gap: 10px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pdp__track::-webkit-scrollbar { display: none; }
  .pdp__shot { flex: 0 0 88%; scroll-snap-align: center; }
  .pdp__dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
  .pdp__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(29, 29, 31, 0.2); transition: background-color 0.2s var(--ease), width 0.3s var(--ease); }
  .pdp__dots span.is-active { width: 18px; border-radius: 3px; background: var(--ink); }
}

/* ---------- Warenkorb ---------- */

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(33, 28, 24, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  background: var(--bg);
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.25);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
}
.cart:focus { outline: none; }
.cart-open .cart { transform: none; visibility: visible; transition-delay: 0s; }
.cart-open .cart-backdrop { opacity: 1; visibility: visible; transition-delay: 0s; }
.cart-open { overflow: hidden; }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 24px;
  border-bottom: 1px solid var(--line);
}
.cart__head h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.025em; }
.cart__empty { padding: 32px 24px; color: var(--ink-2); }
.cart__empty[hidden] { display: none; }
.cart__items { flex: 1; overflow-y: auto; padding: 8px 24px; -webkit-overflow-scrolling: touch; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 72px; height: 90px; border-radius: 6px; object-fit: cover; background: var(--photo); }
.cart-item__name { font-size: 14px; font-weight: 600; line-height: 1.3; }
.cart-item__meta { margin-top: 2px; color: var(--ink-2); font-size: 13px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }
.cart-item__qty button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
}
.cart-item__qty button:hover { background: rgba(29, 29, 31, 0.06); }
.cart-item__qty output { min-width: 22px; font-size: 14px; text-align: center; font-variant-numeric: tabular-nums; }
.cart-item__price { align-self: start; font-size: 14px; font-weight: 500; }
.cart__foot {
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.cart__row { display: flex; justify-content: space-between; font-size: 17px; }
.cart__note { margin-block: 8px 16px; color: var(--ink-2); font-size: 13px; }

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

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 95;
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 12px, 0);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.toast.is-visible { opacity: 1; transform: translate3d(-50%, 0, 0); }

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

.footer {
  padding-top: 56px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 13px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand p { margin-top: 12px; color: var(--ink-2); }
.footer h2 { margin-bottom: 12px; font-size: 13px; font-weight: 600; }
.footer li + li { margin-top: 8px; }
.footer nav a { color: var(--ink-2); }
.footer nav a:hover { color: var(--ink); text-decoration: underline; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-block: 20px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--ink-3);
}

@media (max-width: 719px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---------- Rechtliches & 404 ---------- */

.legal { padding-block: 56px 104px; }
.legal h2 { margin: 36px 0 8px; font-size: 19px; font-weight: 600; }
.legal p { color: var(--ink-2); }
.legal__notice {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--bg-alt);
  font-size: 14px;
}

.notfound { padding-block: clamp(96px, 18vw, 200px); text-align: center; }
.notfound .hero__title { font-size: clamp(48px, 8vw, 96px); }
.notfound .lead { margin: 20px auto 36px; }

/* ---------- Einblenden beim Scrollen ---------- */

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal, .js .intro, .js .hero__title .intro { opacity: 1; transform: none; }
  .js .hero__stage { clip-path: none; opacity: 1; }
  .hero__stage { transform: none; }
  .hero__slide img, .hero__slide.is-active img { transform: none; }
}
