/* =========================================================
   CAR ESSENCE – Premium Car Fragrance
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* Logo-Farben: Schwarz & Weiß */
  --ink-950: #000000;
  --ink-900: #0a0a0a;
  --ink-800: #2a2a2a;
  --ink-700: #111111;
  --ink-600: #3d3d3d;
  --ink-100: #e4e4e4;
  --ink-50: #f4f4f4;

  --gray-950: #050505;
  --gray-900: #111111;
  --gray-700: #3a3a3a;
  --gray-600: #555555;
  --gray-500: #737373;
  --gray-400: #9a9a9a;
  --gray-300: #cfcfcf;
  --gray-200: #e6e6e6;
  --gray-100: #f2f2f2;
  --gray-50: #fafafa;
  --white: #fff;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Montserrat", "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "Montserrat", "Inter", ui-sans-serif, system-ui, sans-serif;

  --container: 1216px;
  --gutter: 24px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 28px -14px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
body.no-scroll { overflow: hidden; }
svg.i { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: var(--mono); }

/* ---------- Eyebrow / Kicker ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
.lead { color: var(--gray-600); font-size: 17px; max-width: 620px; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn svg.i { transition: transform 0.25s var(--ease); }
.btn:hover svg.i { transform: translateX(3px); }
.btn--sm { height: 36px; padding: 0 16px; font-size: 15px; }
.btn--primary { background: var(--ink-700); color: var(--white); }
.btn--primary:hover { background: var(--ink-800); }
.btn--white { background: var(--white); color: var(--gray-900); }
.btn--white:hover { background: var(--gray-100); }
.btn--glass { border-color: rgba(255, 255, 255, 0.35); color: var(--white); background: rgba(255, 255, 255, 0.04); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.12); }
.btn--outline { border-color: var(--gray-300); color: var(--gray-900); background: var(--white); }
.btn--outline:hover { border-color: var(--gray-900); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-700); font-weight: 500; font-size: 15px; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--green { border-color: var(--ink-100); background: var(--ink-50); color: var(--ink-700); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink-950); color: rgba(255, 255, 255, 0.92); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 32px; gap: 20px; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__right a { display: inline-flex; align-items: center; gap: 6px; }
.topbar__right a:hover { color: var(--white); text-decoration: underline; }
.topbar svg.i { width: 14px; height: 14px; }
.topbar__lang b { font-weight: 600; }
.topbar__lang span { opacity: 0.55; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.header.is-scrolled { box-shadow: 0 6px 20px -12px rgba(0, 0, 0, 0.25); }
.header .container { display: flex; align-items: center; height: 72px; gap: 40px; }

.brand { display: flex; flex-direction: column; align-items: center; flex: none; color: var(--gray-900); line-height: 1; }
.brand__mark { display: block; width: 92px; height: 30px; background: url("../img/mark-black.png") center / contain no-repeat; margin-bottom: 4px; }
.brand__name { font-family: var(--display); font-size: 17px; font-weight: 400; letter-spacing: 0.34em; margin-right: -0.34em; text-transform: uppercase; }
.brand__tag { display: flex; align-items: center; gap: 6px; white-space: nowrap; font-family: var(--display); font-size: 6.5px; font-weight: 500; letter-spacing: 0.26em; color: var(--gray-700); text-transform: uppercase; margin-top: 5px; }
.brand__tag::before, .brand__tag::after { content: ""; width: 16px; height: 1px; background: currentColor; opacity: 0.7; }

.nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: var(--gray-700); }
.nav a { transition: color 0.2s; }
.nav a { position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transition: transform 0.3s var(--ease); }
.nav a:hover, .nav a.is-active { color: var(--ink-950); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__tools { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  width: 190px;
  padding: 0 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-400);
  transition: border-color 0.2s, width 0.3s var(--ease);
}
.search:focus-within { border-color: var(--ink-600); width: 230px; }
.search svg.i { width: 15px; height: 15px; }
.search input { border: 0; outline: 0; background: transparent; width: 100%; font-size: 14px; color: var(--gray-900); }

.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  color: var(--gray-900);
}
.cart-btn:hover { background: var(--gray-100); }
.cart-btn svg.i { width: 21px; height: 21px; }
.cart-btn__count {
  position: absolute;
  top: 2px; right: 1px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--ink-700);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cart-btn__count.is-visible { transform: scale(1); }
.cart-btn__count.bump { animation: bump 0.45s var(--ease); }
@keyframes bump { 50% { transform: scale(1.4); } }

.burger { display: none; width: 40px; height: 40px; place-items: center; border-radius: var(--radius-sm); }
.burger svg.i { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  padding: 12px var(--gutter) 20px;
  background: var(--white);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.mobile-nav .search { width: 100%; margin: 8px 0 12px; height: 42px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { border-bottom: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-900); }
.breadcrumb .container { height: 44px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--ink-700); }
.breadcrumb span { color: var(--gray-400); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(55% 70% at 15% 15%, rgba(255, 255, 255, 0.10), transparent 70%),
    radial-gradient(45% 60% at 85% 90%, rgba(255, 255, 255, 0.05), transparent 70%),
    linear-gradient(135deg, #1a1a1a 0%, #0b0b0b 55%, #000 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 80% at 30% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 80% at 30% 40%, #000, transparent);
}
.hero__watermark {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 760px;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 60px;
  padding-top: 84px;
  padding-bottom: 80px;
  align-items: start;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); margin: 22px 0 22px; font-weight: 600; }
.hero__text { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.88); max-width: 600px; }
.hero__text strong { color: var(--white); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; }
.hero__actions .text-link { color: var(--white); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: rgba(255, 255, 255, 0.5); font-size: 15px; }
.hero__actions .text-link:hover { text-decoration-color: #fff; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.16); padding-left: 24px; }
.stat__num { font-size: 30px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.2; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

.hero__aside .label { color: rgba(255, 255, 255, 0.72); margin-bottom: 16px; display: block; }
.glass-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.glass-card + .glass-card { margin-top: 12px; }
a.glass-card:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.28); }
.glass-card__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: grid; place-items: center;
  flex: none;
}
.glass-card .label { color: rgba(255, 255, 255, 0.72); margin: 0 0 2px; }
.glass-card strong { display: block; font-weight: 600; font-size: 15px; }
.glass-card small { display: block; color: rgba(255, 255, 255, 0.62); font-size: 12.5px; margin-top: 2px; }
.glass-card__arrow { position: absolute; top: 18px; right: 18px; opacity: 0.7; }
.glass-card__arrow svg.i { width: 16px; height: 16px; }

/* ---------- Trust-Leiste ---------- */
.trust { border-bottom: 1px solid var(--gray-200); }
.trust .container { display: flex; align-items: center; gap: 32px; padding-top: 28px; padding-bottom: 28px; flex-wrap: wrap; }
.trust__intro { font-size: 14px; color: var(--gray-600); max-width: 300px; }
.trust__list { display: flex; flex-wrap: wrap; gap: 10px; margin-left: auto; }
.trust__item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  background: var(--white);
}

/* ---------- Sektionen ---------- */
.section { padding: 96px 0; }
.section--muted { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.section__head--split { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
.section__head--split .lead { margin-top: 44px; font-size: 16px; }

/* ---------- Filter-Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 14px;
  color: var(--gray-700);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--gray-400); }
.chip.is-active { background: var(--ink-950); border-color: var(--ink-950); color: var(--white); }
.chips--filters { margin-bottom: 28px; }

/* ---------- Produktkarten ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover { box-shadow: var(--shadow); border-color: var(--gray-300); transform: translateY(-2px); }
.card.is-hidden { display: none; }
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--tint, var(--gray-100));
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.card__media img, .card__media svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card__media svg, .card:hover .card__media img { transform: scale(1.05); }
.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink-700);
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
}
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card__meta { font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500); }
.card__name { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; margin: 6px 0 4px; cursor: pointer; }
.card__name:hover { color: var(--ink-700); }
.card__notes { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }
.card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; }
.price { font-weight: 600; font-size: 16px; white-space: nowrap; }
.price s { color: var(--gray-400); font-weight: 400; margin-right: 6px; }
.price small { display: block; font-size: 11px; font-weight: 400; color: var(--gray-500); }
.card__add {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-700);
  padding: 6px 10px;
  margin-right: -10px;
  border-radius: var(--radius-sm);
}
.card__add:hover { background: var(--ink-50); text-decoration: underline; text-underline-offset: 4px; }
.card__add svg.i { width: 16px; height: 16px; }
.empty-hint { display: none; text-align: center; padding: 60px 0; color: var(--gray-500); }
.empty-hint.is-visible { display: block; }

/* ---------- Feature (Discovery Set) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.feature__visual { background: radial-gradient(70% 70% at 50% 50%, #2b2b2b, var(--gray-950)); min-height: 440px; position: relative; }
.feature__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.feature__body h3 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 18px 0 6px; }
.feature__body .label { margin-bottom: 16px; }
.feature__body p { color: var(--gray-600); }
.checklist { list-style: none; padding: 0; margin: 22px 0 28px; width: 100%; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--gray-100); font-size: 15px; color: var(--gray-700); }
.checklist li svg.i { color: var(--ink-700); margin-top: 3px; width: 16px; height: 16px; }
.feature__buy { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.feature__buy .price { font-size: 22px; }

/* ---------- Schritte ---------- */
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--gray-200); }
.step { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.step__num { font-family: var(--mono); font-size: 13px; color: var(--ink-700); line-height: 1.5; }
.step h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 20px; }
.step p { color: var(--gray-600); max-width: 560px; font-size: 15px; }

/* ---------- Werte-Grid ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; background: var(--white); }
.value__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--ink-50); color: var(--ink-700); display: grid; place-items: center; margin-bottom: 20px; }
.value__icon svg.i { width: 22px; height: 22px; }
.value .label { color: var(--ink-700); }
.value h3 { font-size: 19px; letter-spacing: -0.02em; margin: 8px 0 8px; }
.value p { color: var(--gray-600); font-size: 15px; }

/* ---------- Bewertungen ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { margin: 0; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; background: var(--white); display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--ink-700); letter-spacing: 3px; font-size: 14px; }
.review blockquote { margin: 0; font-size: 16px; color: var(--gray-700); flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.review figcaption span { display: block; font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.08em; color: var(--gray-500); text-transform: uppercase; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink-50); color: var(--ink-700); display: grid; place-items: center; font-size: 14px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; }
.faq-stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.faq-stats .stat__num { font-size: 26px; }
.faq-stats .stat__label { color: var(--gray-500); }
.faq { border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); }
.faq__item + .faq__item { border-top: 1px solid var(--gray-200); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
}
.faq__q svg.i { width: 16px; height: 16px; color: var(--gray-400); transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__q svg.i { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 20px; color: var(--gray-600); font-size: 14.5px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq--sm .faq__q { padding: 14px 18px; font-size: 14px; }
.faq--sm .faq__a p { padding: 0 18px 16px; font-size: 13.5px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, #1a1a1a, #000); color: var(--white); position: relative; overflow: hidden; }
.cta .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-top: 72px; padding-bottom: 72px; flex-wrap: wrap; }
.cta .kicker { color: rgba(255, 255, 255, 0.75); }
.cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); max-width: 560px; }
.cta p { color: rgba(255, 255, 255, 0.82); margin-top: 12px; max-width: 520px; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: 8px; width: min(440px, 100%); }
.newsletter-form input { flex: 1; min-width: 0; height: 48px; padding: 0 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter-form input:focus { border-color: #fff; }
.cta small { display: block; margin-top: 10px; color: rgba(255, 255, 255, 0.6); font-size: 12px; }
.cta small a { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-950); color: var(--gray-300); font-size: 14.5px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr; gap: 40px; padding-top: 64px; padding-bottom: 56px; }
.footer .brand { color: var(--white); align-items: flex-start; }
.footer .brand__name { font-size: 22px; }
.footer .brand__tag { color: var(--gray-400); font-size: 8px; }
.footer .brand__mark { background-image: url("../img/mark-white.png"); width: 120px; height: 40px; background-position: left center; margin-left: 40px; }
.footer__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gray-400); text-transform: uppercase; margin: 16px 0 12px; }
.footer__about { color: var(--gray-400); line-height: 1.7; max-width: 340px; }
.footer__contact { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.footer__contact a, .footer__contact li { display: flex; align-items: center; gap: 10px; color: var(--gray-400); }
.footer__contact a:hover { color: var(--white); }
.footer__contact svg.i { width: 15px; height: 15px; }
.socials { display: flex; gap: 14px; margin-top: 20px; }
.socials a { color: var(--gray-400); }
.socials a:hover { color: var(--white); }
.footer__col h4 { color: var(--white); font-size: 14.5px; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--gray-400); padding: 4px 0; }
.footer__col a:hover { color: var(--white); }
.footer__col a.btn { display: inline-flex; padding: 0 16px; background: var(--white); color: var(--ink-950); }
.footer__col a.btn:hover { background: var(--gray-200); }
.footer__col p { color: var(--gray-400); margin-bottom: 18px; line-height: 1.7; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; font-size: 12.5px; color: var(--gray-400); }
.footer__bottom nav { display: flex; gap: 20px; }
.footer__bottom a:hover { color: var(--white); }

/* ---------- Warenkorb ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(420px, 100vw);
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s;
}
.drawer.is-open { transform: none; visibility: visible; box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.5); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--gray-200); }
.drawer__head h3 { font-size: 19px; letter-spacing: -0.02em; }
.icon-btn { width: 36px; height: 36px; display: grid; place-items: center; border-radius: var(--radius-sm); color: var(--gray-600); }
.icon-btn:hover { background: var(--gray-100); color: var(--gray-900); }
.shipping-bar { padding: 14px 24px; background: var(--ink-50); font-size: 13.5px; color: var(--gray-700); border-bottom: 1px solid var(--ink-100); }
.shipping-bar strong { color: var(--ink-700); }
.shipping-bar__track { height: 4px; border-radius: 4px; background: var(--ink-100); margin-top: 8px; overflow: hidden; }
.shipping-bar__fill { height: 100%; width: 0; background: var(--ink-700); border-radius: 4px; transition: width 0.6s var(--ease); }
.drawer__items { flex: 1; overflow-y: auto; padding: 4px 24px; }
.drawer__empty { text-align: center; padding: 64px 0; color: var(--gray-500); font-size: 15px; }
.drawer__empty strong { display: block; color: var(--gray-900); font-size: 17px; margin-bottom: 4px; }
.drawer__empty .btn { margin-top: 20px; }
.line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--gray-100); align-items: start; }
.line__img { width: 72px; height: 72px; border-radius: 8px; border: 1px solid var(--gray-200); background: var(--tint, var(--gray-100)); position: relative; overflow: hidden; }
.line__img svg, .line__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.line__name { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.line__meta { font-family: var(--mono); font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-top: 8px; overflow: hidden; }
.qty button { width: 30px; height: 30px; color: var(--gray-600); }
.qty button:hover { background: var(--gray-100); color: var(--gray-900); }
.qty span { min-width: 26px; text-align: center; font-size: 14px; }
.line__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; align-self: stretch; }
.line__remove { font-size: 12.5px; color: var(--gray-500); }
.line__remove:hover { color: #b91c1c; text-decoration: underline; }
.drawer__foot { padding: 18px 24px 24px; border-top: 1px solid var(--gray-200); background: var(--gray-50); }
.drawer__row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 6px; color: var(--gray-600); }
.drawer__row--total { color: var(--gray-900); font-weight: 600; font-size: 17px; margin: 12px 0 16px; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.drawer__row small { font-size: 12px; color: var(--gray-500); font-weight: 400; margin-left: 4px; }
.drawer__secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--gray-500); margin-top: 10px; }
.drawer__secure svg.i { width: 13px; height: 13px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 95;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(16px);
  transition: transform 0.4s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.modal__visual { position: relative; background: var(--tint, var(--gray-100)); min-height: 520px; }
.modal__visual svg, .modal__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__content { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.modal__title { font-size: clamp(2rem, 3.4vw, 2.6rem); margin: 8px 0 12px; }
.modal__price { font-size: 22px; font-weight: 600; }
.modal__price small { display: block; font-size: 12.5px; font-weight: 400; color: var(--gray-500); }
.modal__desc { color: var(--gray-600); margin: 18px 0 22px; }
.pyramid { margin: 0 0 26px; border: 1px solid var(--gray-200); border-radius: 10px; }
.pyramid div { display: grid; grid-template-columns: 110px 1fr; padding: 11px 16px; font-size: 14.5px; }
.pyramid div + div { border-top: 1px solid var(--gray-200); }
.pyramid dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); padding-top: 3px; }
.pyramid dd { margin: 0; }
.modal__buy { display: flex; gap: 10px; }
.modal__buy .qty { margin: 0; height: 48px; }
.modal__buy .qty button { height: 100%; width: 40px; }
.modal__buy .btn { flex: 1; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  transform: translate(-50%, 20px);
  opacity: 0; visibility: hidden;
  background: var(--gray-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s var(--ease), opacity 0.3s, visibility 0.35s;
}
.toast::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; flex: none; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* ---------- Kontaktseite ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.form-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; margin-top: 36px; background: var(--white); }
.form-card .label { color: var(--ink-700); display: block; margin-bottom: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 15px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-600); box-shadow: 0 0 0 3px var(--ink-50); }
.field small { font-size: 12.5px; color: var(--gray-500); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-600); margin-top: 20px; }
.consent input { margin-top: 4px; accent-color: var(--ink-700); }
.consent a { text-decoration: underline; }
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); font-size: 13px; color: var(--gray-500); flex-wrap: wrap; }
.side-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; background: var(--white); }
.side-card + .side-card { margin-top: 20px; }
.side-card > .label { color: var(--ink-700); display: block; margin-bottom: 6px; }
.side-card > p { color: var(--gray-600); font-size: 15px; }
.hours { margin-top: 16px; border-top: 1px solid var(--gray-200); padding-top: 12px; }
.hours div { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; color: var(--gray-600); }
.hours b { font-family: var(--mono); font-weight: 500; color: var(--gray-900); font-size: 13.5px; }
.side-card .faq { border: 0; margin: 4px -18px -14px; }

/* ---------- Rechtliche Seiten ---------- */
.legal { max-width: 780px; padding-top: 64px; padding-bottom: 96px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 28px; }
.legal h2 { font-size: 20px; letter-spacing: -0.02em; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--gray-600); margin-bottom: 10px; }
.legal .todo { background: var(--gray-50); border: 1px dashed var(--gray-300); border-radius: 8px; padding: 14px 16px; color: var(--gray-700); font-size: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .header .container { gap: 24px; }
  .nav { gap: 20px; }
  .search { width: 150px; }
  .header__cta { display: none; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer__top .footer__col--cta { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .topbar__left { display: none; }
  .topbar .container { justify-content: center; }
  .nav, .header__tools .search { display: none; }
  .burger { display: grid; }
  .hero .container, .section__head--split, .faq-layout, .contact-layout, .feature { grid-template-columns: 1fr; }
  .hero .container { gap: 40px; padding-top: 56px; padding-bottom: 56px; }
  .section__head--split .lead { margin-top: 0; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .values, .reviews { grid-template-columns: 1fr; }
  .feature__visual { min-height: 320px; }
  .feature__body { padding: 32px 24px; }
  .modal__box { grid-template-columns: 1fr; }
  .modal__visual { min-height: 300px; }
  .modal__content { padding: 28px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > :first-child { grid-column: 1 / -1; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  :root { --gutter: 16px; }
  .topbar__right .topbar__phone, .topbar__lang { display: none; }
  .brand__mark { width: 72px; height: 24px; }
  .brand__name { font-size: 14px; }
  .hero h1 { font-size: 2.4rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat + .stat { padding-left: 12px; }
  .stat__num { font-size: 22px; }
  .stat__label { font-size: 9.5px; letter-spacing: 0.08em; }
  .grid { gap: 10px; }
  .card__body { padding: 12px 12px 14px; }
  .card__name { font-size: 15.5px; }
  .card__notes { display: none; }
  .card__meta { font-size: 9.5px; letter-spacing: 0.06em; }
  .card__foot { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 10px; }
  .card__add { justify-content: center; margin: 0; border: 1px solid var(--ink-100); background: var(--ink-50); font-size: 13px; white-space: nowrap; padding: 8px 4px; }
  .card__add svg.i { display: none; }
  .trust__list { margin-left: 0; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .form-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .modal { padding: 0; align-items: end; }
  .modal__box { border-radius: var(--radius) var(--radius) 0 0; max-height: 92vh; }
  .newsletter-form { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
