/* ============================================================================
   Pholtec Solarzaun-Shop — Stylesheet
   Aesthetik: architektonisch-editorial. Clash Display + General Sans + IBM Plex Mono.
   Warmes Papier, Anthrazit-Ink, Gold als schmaler Akzent (keine Flächen).
   Design-Tokens in :root anpassen.
   ========================================================================== */

:root {
  /* Marke / Farben */
  --ink: #17130c;            /* warmes Fast-Schwarz */
  --ink-800: #221d14;
  --ink-700: #2f281c;
  --graphite: #4a4437;       /* Fließtext auf hell */
  --muted: #8c8574;          /* warmes Grau */
  --paper: #f4efe4;          /* Papier-Hintergrund */
  --paper-2: #ece5d6;
  --card: #fbf8f1;           /* warmes Weiß (Karten) */
  --line: #ddd5c4;           /* warme Haarlinie */
  --gold: #f4b324;           /* Marken-Gold (v1) – Flächen, Buttons, Akzente */
  --gold-soft: #f4b324;      /* Gold auf dunklen Flächen */
  --gold-ink: #e5a30f;       /* Gold-Text auf hell (lesbar) */
  --gold-tint: #efe4c6;      /* zarter Gold-Wash */
  --green: #2f7d4f;

  /* Radien / Schatten / Layout */
  --r-sm: 3px;
  --r: 5px;
  --r-lg: 8px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(23, 19, 12, .04);
  --shadow: 0 18px 44px -24px rgba(23, 19, 12, .30);
  --shadow-lg: 0 40px 80px -40px rgba(23, 19, 12, .45);
  --maxw: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-head: 'Poppins', 'General Sans', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
/* Subtile Korn-Textur über allem */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
::selection { background: var(--gold-soft); color: var(--ink); }

.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(60px, 8.5vw, 120px) 0; }
.section--soft { background: var(--paper-2); }
.section--tint { background: var(--gold-tint); }
.section--dark { background: var(--ink); color: #efe9dc; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-mono); font-weight: 500; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-ink);
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

.h-xl { font-size: clamp(2.4rem, 6.4vw, 4.6rem); letter-spacing: -.025em; }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -.02em; }
.h-md { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--graphite); max-width: 60ch; line-height: 1.6; }
.center .lead { margin-inline: auto; }
.muted { color: var(--muted); }
.gold-text { color: var(--gold-ink); }
.section--dark .gold-text { color: var(--gold-soft); }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-mono); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 1.05em 1.7em; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--ink); color: var(--gold-soft); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--light { background: var(--card); color: var(--ink); border-color: var(--card); }
.btn--light:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--ghost, .cfg__summary .btn--ghost, .cfg-teaser .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover, .cfg__summary .btn--ghost:hover, .cfg-teaser .btn--ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--lg { padding: 1.2em 2.1em; font-size: .86rem; }
.btn--block { width: 100%; }
.btn--sm { padding: .7em 1.1em; font-size: .72rem; }

/* ------------------------------- Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fbf8f1;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px rgba(23,19,12,.35); }
.nav { display: flex; align-items: center; gap: 1.6rem; height: 78px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 32px; width: auto; display: block; }
.footer-brand .brand-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; list-style: none; }
.nav-links a { position: relative; color: var(--graphite); font-family: var(--font-mono); font-weight: 400; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem 0; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--gold); transition: right .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--gold-ink); }
.nav-cta { display: flex; align-items: center; gap: .7rem; margin-left: .6rem; }

/* Cart button + badge */
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r-sm); background: transparent; border: 1px solid var(--line); color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.cart-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--gold); color: var(--ink); font-size: .68rem; font-weight: 600;
  border-radius: var(--r-pill); display: none; align-items: center; justify-content: center;
  font-family: var(--font-mono); border: 2px solid var(--paper);
}
.cart-badge.show { display: flex; }
.burger { display: none; background: none; border: 0; color: var(--ink); width: 44px; height: 44px; cursor: pointer; }
.burger svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 78px 0 auto 0; background: var(--card); z-index: 55; transform: translateY(-120%); transition: transform .35s var(--ease); border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px -30px rgba(23,19,12,.4); }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; padding: 1rem 22px 1.8rem; display: grid; gap: .1rem; }
.mobile-nav a { display: block; color: var(--graphite); font-family: var(--font-mono); font-weight: 400; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; padding: .95rem .3rem; border-bottom: 1px solid var(--line); }
.mobile-nav a.active { color: var(--gold-ink); }

/* --------------------------------- Hero --------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(900px 500px at 85% -5%, rgba(244,179,36,.14), transparent 62%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); }

/* Full-bleed Hero (Hintergrundbild) */
.hero--bg { }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% 50%; z-index: 0; }
.hero--bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(20,16,10,.95) 0%, rgba(20,16,10,.82) 34%, rgba(20,16,10,.4) 62%, rgba(20,16,10,.18) 100%),
    linear-gradient(0deg, rgba(20,16,10,.55) 0%, transparent 42%);
}
.hero--bg .hero__inner { position: relative; z-index: 2; grid-template-columns: 1fr; min-height: min(80vh, 780px); align-items: center; }
.hero--bg .hero__copy { max-width: 40rem; }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5rem); font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.hero h1 .gold-text { color: var(--gold-soft); }
.hero__lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: #c8c2b4; max-width: 44ch; margin: 1.6rem 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust div { display: flex; flex-direction: column; padding: 1.1rem 1.6rem 0 0; margin-right: 1.6rem; border-right: 1px solid rgba(255,255,255,.12); }
.hero__trust div:last-child { border-right: 0; margin-right: 0; }
.hero__trust b { font-family: var(--font-mono); font-weight: 500; font-size: 1.35rem; color: var(--gold-soft); letter-spacing: -.02em; }
.hero__trust span { font-size: .78rem; color: #9c9686; margin-top: .2rem; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.5; object-fit: cover; width: 100%; }
.hero__media::before { content: ''; position: absolute; inset: -1px; border: 1px solid rgba(244,179,36,.35); border-radius: var(--r-lg); pointer-events: none; z-index: 2; mix-blend-mode: screen; }
.hero__chip {
  position: absolute; left: -16px; bottom: 30px; background: var(--card); color: var(--ink);
  padding: .9rem 1.2rem; border-radius: var(--r); box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem; z-index: 3;
}
.hero__chip .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-ink); display: grid; place-items: center; }
.hero__chip .ic svg { width: 20px; height: 20px; }
.hero__chip b { font-family: var(--font-head); display: block; font-size: 1rem; line-height: 1.1; }
.hero__chip span { font-size: .78rem; color: var(--muted); }

/* ------------------------------ USP strip ------------------------------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); }
.usp__item { padding: 1.7rem 1.5rem; display: flex; gap: .9rem; align-items: flex-start; border-right: 1px solid var(--line); }
.usp__item:last-child { border-right: 0; }
.usp__item .ic { flex: 0 0 auto; width: 30px; height: 30px; color: var(--gold-ink); display: grid; place-items: start; }
.usp__item .ic svg { width: 24px; height: 24px; }
.usp__item b { font-family: var(--font-head); font-weight: 600; display: block; font-size: 1.02rem; margin-bottom: .2rem; }
.usp__item span { font-size: .86rem; color: var(--muted); line-height: 1.45; }

/* --------------------------- Content splits ----------------------------- */
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.split3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* --------------------------- Section headings --------------------------- */
.sec-head { max-width: 760px; margin: 0 0 clamp(2.4rem, 4vw, 3.4rem); }
.center .sec-head, .sec-head.center { margin-inline: auto; }
.sec-head--left { margin-left: 0; text-align: left; }

/* ----------------------------- Category tiles --------------------------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.cat-tile { position: relative; border-radius: var(--r); overflow: hidden; background: var(--ink); min-height: 340px; display: flex; align-items: flex-end; transition: transform .4s var(--ease); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: transform .7s var(--ease), opacity .4s; filter: saturate(1.05); }
.cat-tile:hover img { transform: scale(1.05); opacity: .58; }
.cat-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,10,.94) 6%, rgba(20,16,10,.2) 55%, transparent); }
.cat-tile__body { position: relative; z-index: 2; padding: 1.6rem; color: #fff; width: 100%; }
.cat-tile__body h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: .3rem; }
.cat-tile__body p { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: #c9c3b6; margin: 0 0 1rem; }
.cat-tile__link { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-weight: 500; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.cat-tile__link svg { width: 1.1em; height: 1.1em; transition: transform .25s; }
.cat-tile:hover .cat-tile__link svg { transform: translateX(5px); }

/* ----------------------------- Product grid ----------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.prod-grid--3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.pcard { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .3s var(--ease); }
.pcard:hover { border-color: var(--ink); transform: translateY(-3px); }
.pcard__media { position: relative; aspect-ratio: 1/1; background: var(--paper-2); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink); font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; padding: .45em .75em; border-radius: 2px; z-index: 2; }
.pcard__pow { position: absolute; top: 14px; right: 14px; background: rgba(23,19,12,.82); color: #fff; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; padding: .45em .7em; border-radius: 2px; display: inline-flex; align-items: center; gap: .35em; backdrop-filter: blur(4px); }
.pcard__pow svg { width: .9em; height: .9em; color: var(--gold-soft); }
.pcard__body { padding: 1.3rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pcard__mat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .5rem; }
.pcard__name { font-family: var(--font-head); font-weight: 600; font-size: 1.28rem; margin-bottom: .4rem; letter-spacing: -.01em; }
.pcard__desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; flex: 1; line-height: 1.5; }
.pcard__swatches { display: flex; gap: .4rem; margin-bottom: 1.1rem; }
.pcard__swatches span { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--card); box-shadow: 0 0 0 1px var(--line); }
.pcard__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.pcard__price { font-family: var(--font-mono); font-weight: 500; font-size: 1.2rem; letter-spacing: -.01em; }
.pcard__price small { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: .15rem; }
.pcard__price sup { font-size: .62rem; color: var(--muted); }
.pcard__foot .btn { align-self: center; }

/* --------------------------- Product detail ----------------------------- */
.pdp { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: start; }
.pdp__gallery { position: sticky; top: 100px; }
.pdp__stage { border-radius: var(--r); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); aspect-ratio: 1/1; }
.pdp__stage img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.pdp__thumbs button { width: 76px; height: 62px; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); cursor: pointer; padding: 0; transition: border-color .2s; }
.pdp__thumbs button.active { border-color: var(--gold); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: .35rem; letter-spacing: -.02em; }
.pdp__tagline { color: var(--gold-ink); font-family: var(--font-mono); font-weight: 400; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.pdp__price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .3rem; }
.pdp__price b { font-family: var(--font-mono); font-weight: 500; font-size: 2rem; letter-spacing: -.02em; }
.pdp__price span { color: var(--muted); font-size: .9rem; }
.pdp__vat { font-family: var(--font-mono); font-size: .74rem; color: var(--muted); margin-bottom: 1.6rem; letter-spacing: .01em; }
.pdp__avail { display: inline-flex; align-items: center; gap: .5rem; margin: -.9rem 0 1.6rem; padding: .4rem .8rem; border: 1px solid var(--gold); border-radius: 999px; background: var(--gold-tint); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: var(--gold-ink); }
.pdp__avail svg { width: 15px; height: 15px; flex: 0 0 auto; }
.pdp__note { border-left: 2px solid var(--gold); padding: .1rem 0 .1rem 1rem; margin: -.9rem 0 1.8rem; font-size: .92rem; color: var(--graphite); }
.pdp__desc { color: var(--graphite); margin-bottom: 1.8rem; font-size: 1.02rem; }
.pdp__brand { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-bottom: 1.2rem; letter-spacing: .1em; text-transform: uppercase; }
.pdp__brand strong { color: var(--gold-ink); font-weight: 500; }
.sigen-note { display: flex; gap: .9rem; align-items: flex-start; background: var(--gold-tint); border: 1px solid var(--gold); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; }
.sigen-note svg { width: 22px; height: 22px; color: var(--gold-ink); flex: 0 0 auto; margin-top: 2px; }
.sigen-note b { font-family: var(--font-head); font-weight: 600; display: block; font-size: 1rem; margin-bottom: .2rem; }
.sigen-note span { font-size: .88rem; color: var(--graphite); }

.opt { margin-bottom: 1.7rem; }
.opt__label { font-family: var(--font-mono); font-weight: 400; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; display: flex; gap: .5rem; align-items: center; }
.opt__label .val { color: var(--ink); font-weight: 500; }
.swatches { display: flex; gap: .8rem; flex-wrap: wrap; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: .45rem; cursor: pointer; }
.swatch .dot { width: 46px; height: 46px; border-radius: 4px; border: 2px solid var(--card); box-shadow: 0 0 0 1px var(--line); transition: box-shadow .2s, transform .2s; }
.swatch input { position: absolute; opacity: 0; }
.swatch:hover .dot { transform: translateY(-2px); }
.swatch input:checked + .dot { box-shadow: 0 0 0 2px var(--gold); }
.swatch small { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.swatch input:checked ~ small { color: var(--ink); }

.chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.chip { padding: .7em 1.1em; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--card); font-family: var(--font-mono); font-weight: 400; font-size: .8rem; letter-spacing: .02em; cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--ink); }
.chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.qty button { width: 42px; height: 46px; border: 0; background: var(--card); font-size: 1.3rem; cursor: pointer; color: var(--ink); transition: background .2s; }
.qty button:hover { background: var(--paper-2); }
.qty input { width: 46px; text-align: center; border: 0; background: var(--card); font-family: var(--font-mono); font-weight: 500; font-size: 1.02rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp__buy { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.pdp__ship { display: flex; flex-direction: column; gap: .6rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.pdp__ship li { list-style: none; display: flex; gap: .65rem; align-items: center; font-size: .9rem; color: var(--graphite); }
.pdp__ship svg { width: 17px; height: 17px; color: var(--gold-ink); flex: 0 0 auto; }

/* Spec table + highlights */
.specs { width: 100%; border-collapse: collapse; }
.specs tr { border-bottom: 1px solid var(--line); }
.specs th { text-align: left; padding: .9rem 0; font-family: var(--font-mono); font-weight: 400; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); width: 44%; vertical-align: top; }
.specs td { padding: .9rem 0; color: var(--ink); font-weight: 500; }
.hl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); }
.hl { padding: 1.5rem; display: flex; gap: .9rem; align-items: flex-start; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hl .ic { flex: 0 0 auto; width: 26px; height: 26px; color: var(--gold-ink); display: grid; place-items: start; }
.hl .ic svg { width: 22px; height: 22px; }
.hl b { font-family: var(--font-head); font-weight: 600; font-size: 1rem; }

/* --------------------------- How it works ------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: s; border-top: 1px solid rgba(255,255,255,.14); }
.step { position: relative; padding: 3.2rem 1.8rem 1.8rem; border-right: 1px solid rgba(255,255,255,.14); }
.step:last-child { border-right: 0; }
.section:not(.section--dark) .steps { border-top-color: var(--line); }
.section:not(.section--dark) .step { border-right-color: var(--line); }
.step::before { counter-increment: s; content: '0' counter(s); position: absolute; top: 1.6rem; left: 1.8rem; font-family: var(--font-head); font-weight: 600; font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold-soft); }
.section:not(.section--dark) .step::before { -webkit-text-stroke-color: var(--gold); }
.step h3 { font-size: 1.25rem; font-weight: 600; margin: .5rem 0 .5rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.55; }
.section--dark .step p { color: #b3ad9e; }

/* ------------------------------ Stat band ------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: left; padding: 0 1.6rem; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { font-family: var(--font-mono); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--gold-soft); display: block; line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .82rem; color: #b3ad9e; margin-top: .5rem; display: block; }

/* -------------------------- Configurator teaser ------------------------- */
.cfg-teaser { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.8rem; align-items: center; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(2.2rem, 4vw, 3.6rem); overflow: hidden; position: relative; }
.cfg-teaser::before { content: ''; position: absolute; right: -100px; top: -100px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(244,179,36,.2), transparent 70%); }

/* ------------------------------- CTA band ------------------------------- */
.cta { position: relative; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(2.6rem, 5vw, 4rem); text-align: center; overflow: hidden; border: 1px solid var(--ink); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(244,179,36,.16), transparent 65%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.cta .lead { color: #c8c2b4; }
.cta .btn--dark { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cta .btn--dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta .btn--ghost { border-color: rgba(255,255,255,.3); color: #fff; }

/* -------------------------- Configurator page --------------------------- */
.cfg { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: start; }
.cfg__panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.8rem, 3vw, 2.6rem); }
.cfg__preview { display: flex; align-items: center; gap: 1.1rem; padding: .8rem; margin-bottom: 1.7rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.cfg__preview img { width: 104px; height: 92px; flex: 0 0 auto; object-fit: contain; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 7px; }
.cfg__preview-cap b { font-family: var(--font-head); font-weight: 600; display: block; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; }
.cfg__preview-cap span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-ink); }
.cfg__preview-cap::before { content: 'Vorschau'; display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.cfg__addon { display: flex; align-items: flex-start; gap: .6rem; margin-top: .9rem; padding: .8rem .9rem; border: 1px dashed var(--gold-ink); border-radius: var(--r-sm); background: var(--gold-tint); font-size: .84rem; line-height: 1.45; cursor: pointer; }
.cfg__addon input { margin-top: .2rem; flex: 0 0 auto; accent-color: var(--gold-ink); width: 16px; height: 16px; }
.cfg__addon strong { color: var(--ink); }
.cfg__summary { position: sticky; top: 100px; background: var(--ink); color: #fff; border-radius: var(--r); padding: clamp(1.8rem, 3vw, 2.4rem); }
.cfg__summary h3 { color: #fff; }
.cfg__row { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .92rem; }
.cfg__row b { font-family: var(--font-mono); font-weight: 500; }
.cfg__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1.1rem; margin-top: .4rem; }
.cfg__total b { font-family: var(--font-mono); font-weight: 500; font-size: 1.7rem; color: var(--gold-soft); }
.field { margin-bottom: 1.4rem; }
.field > label { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.field input[type=number], .field input[type=text], .field input[type=email], .field input[type=tel], .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm); font: inherit; background: var(--card); color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); }
.range-out { font-family: var(--font-mono); font-weight: 500; color: var(--gold-ink); }

/* ------------------------------- Cart ----------------------------------- */
.cart { display: grid; grid-template-columns: 1.5fr .8fr; gap: 2.2rem; align-items: start; }
.cart__items { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.citem { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.2rem; background: transparent; border-bottom: 1px solid var(--line); padding: 1.4rem 0; align-items: center; }
.citem__img { width: 100px; height: 82px; border-radius: 3px; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__name { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; }
.citem__meta { font-family: var(--font-mono); font-size: .74rem; color: var(--muted); margin-top: .15rem; letter-spacing: .02em; }
.citem__price { font-family: var(--font-mono); font-weight: 500; font-size: 1.08rem; text-align: right; white-space: nowrap; }
.citem__rm { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: .76rem; font-family: var(--font-mono); margin-top: .5rem; text-decoration: underline; text-underline-offset: 2px; }
.citem__rm:hover { color: #b23b2e; }
.citem .qty { transform: scale(.88); transform-origin: left; margin-top: .6rem; }
.summary { position: sticky; top: 100px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; }
.summary__row { display: flex; justify-content: space-between; padding: .6rem 0; color: var(--graphite); font-size: .94rem; }
.summary__row span:last-child { font-family: var(--font-mono); }
/* Lieferland-Wähler im Warenkorb – bestimmt, welchen Tarif Shopify liefert */
.summary__row--country { align-items: center; }
.summary__row--country label { color: var(--graphite); }
.summary__row--country select {
  font: inherit; font-family: var(--font-mono); font-size: .9rem;
  color: var(--ink); background: transparent;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .28rem .5rem; cursor: pointer;
}
.summary__row--country select:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--ink); margin-top: .8rem; padding-top: 1.1rem; }
.summary__total b { font-family: var(--font-mono); font-weight: 500; font-size: 1.5rem; }
.cart-empty { text-align: center; padding: 4.5rem 1rem; }
.cart-empty svg { width: 60px; height: 60px; color: var(--line); margin: 0 auto 1.2rem; }

/* ------------------------------ Checkout -------------------------------- */
.checkout { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.2rem; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.8rem, 3vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--graphite); margin: 1rem 0 1.3rem; }
.consent input { margin-top: .25rem; }
.req { color: #b23b2e; }
.form-status { margin-top: 1rem; padding: 0; font-size: .94rem; }
.form-status.ok { padding: 1rem 1.2rem; background: rgba(47,125,79,.1); border: 1px solid rgba(47,125,79,.3); border-radius: var(--r-sm); color: var(--green); }
.form-status.err { padding: 1rem 1.2rem; background: rgba(178,59,46,.08); border: 1px solid rgba(178,59,46,.3); border-radius: var(--r-sm); color: #b23b2e; }
.order-mini { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.order-mini:last-of-type { border-bottom: 0; }
.order-mini b { font-family: var(--font-mono); font-weight: 500; }

/* ------------------------------ Breadcrumb ------------------------------ */
.crumbs { display: flex; gap: .5rem; align-items: center; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding: 1.6rem 0 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold-ink); }
.crumbs span { color: var(--line); }

/* ------------------------------- Filter bar ----------------------------- */
.filterbar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* -------------------------------- Legal --------------------------------- */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.35rem; font-weight: 600; margin: 2.2rem 0 .7rem; }
.legal-body p, .legal-body li { color: var(--graphite); font-size: .98rem; }
.legal-body ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .3rem; }
.legal-note { background: var(--gold-tint); border: 1px solid var(--gold); border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .9rem; color: #7a5808; margin-bottom: 2rem; }
.legal-body em { color: var(--gold-ink); font-style: italic; }

/* -------------------------------- Footer -------------------------------- */
.site-footer { background: var(--ink); color: #b3ad9e; padding: clamp(3.4rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.8rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: .9rem; max-width: 34ch; line-height: 1.6; }
.site-footer h4 { color: #fff; font-family: var(--font-mono); font-weight: 400; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; display: grid; gap: .6rem; }
.site-footer a { font-size: .9rem; color: #b3ad9e; transition: color .2s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-soft); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .02em; }
.footer-bottom a { color: #b3ad9e; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-disclaimer { font-size: .74rem; color: #7a7566; margin-top: 1rem; max-width: 82ch; line-height: 1.6; }

/* ------------------------------- Reveal --------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }

/* ------------------------------- Toast ---------------------------------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 140%); background: var(--ink); color: #fff; padding: 1rem 1.4rem; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); z-index: 80; display: flex; align-items: center; gap: .7rem; font-size: .92rem; transition: transform .45s var(--ease); border: 1px solid rgba(255,255,255,.12); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 19px; height: 19px; color: var(--gold-soft); }
.toast a { color: var(--gold-soft); font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; border-bottom: 1px solid var(--gold-soft); }

/* --------------------------- WhatsApp Float ----------------------------- */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 70; display: inline-flex; align-items: center; }
.wa-float__ic { position: relative; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.55), 0 4px 12px rgba(23,19,12,.22); transition: transform .25s var(--ease), box-shadow .25s; }
.wa-float__ic svg { width: 32px; height: 32px; }
.wa-float:hover .wa-float__ic { transform: scale(1.07); box-shadow: 0 16px 36px -6px rgba(37,211,102,.7), 0 6px 16px rgba(23,19,12,.26); }
.wa-float__ic::after { content: ''; position: absolute; inset: 0; border-radius: 50%; animation: waPulse 2.8s var(--ease) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-float__label { order: -1; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .01em; color: var(--ink); background: var(--card); border: 1px solid var(--line); padding: .6rem 1.6rem .6rem .9rem; margin-right: -20px; border-radius: var(--r-pill); box-shadow: var(--shadow); white-space: nowrap; opacity: 0; transform: translateX(14px); transition: opacity .28s var(--ease), transform .28s var(--ease); pointer-events: none; }
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float__ic { width: 54px; height: 54px; }
  .wa-float__label { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-float__ic::after { animation: none; } }

/* ----------------------------- Responsive ------------------------------- */
/* 6 Hauptnavigationspunkte: bei knapper Breite enger setzen, statt umbrechen */
@media (max-width: 1240px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: .73rem; letter-spacing: .04em; }
}
@media (max-width: 1040px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .usp { grid-template-columns: repeat(2, 1fr); }
  .usp__item:nth-child(2) { border-right: 0; }
  .usp__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__inner, .pdp, .cfg, .cart, .checkout, .cfg-teaser, .split2, .split3 { grid-template-columns: 1fr; }
  .pdp__gallery, .cfg__summary, .summary { position: static; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .section:not(.section--dark) .step { border-bottom-color: var(--line); }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .burger { display: inline-flex; }
  .hero__media { order: -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cats, .usp, .form-grid { grid-template-columns: 1fr; }
  .usp__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .usp__item:last-child { border-bottom: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .citem { grid-template-columns: 80px 1fr; }
  .citem__price { grid-column: 2; text-align: left; }
  .nav-cta .btn { display: none; }
  .footer-bottom { flex-direction: column; }
  .hero__trust div { padding-right: 1rem; margin-right: 1rem; }
}

/* ============================ PRODUKTSUCHE ============================ */
/* Button sitzt neben dem Warenkorb, Overlay wird per JS in den Body gehängt. */
.search-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.search-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.search-btn svg { width: 20px; height: 20px; }

.srch {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(23, 19, 12, .55);
  backdrop-filter: blur(3px);
  display: none; justify-content: center; align-items: flex-start;
  padding: 10vh 1.2rem 2rem;
}
.srch.open { display: flex; }
.srch__panel {
  width: 100%; max-width: 620px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  animation: srchIn .18s var(--ease);
}
@keyframes srchIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.srch__bar { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.srch__bar > svg { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; }
.srch__input {
  flex: 1 1 auto; border: 0; outline: 0; background: transparent;
  font-family: var(--font-body); font-size: 1.02rem; color: var(--ink);
}
.srch__input::placeholder { color: var(--muted); }
.srch__input::-webkit-search-cancel-button { -webkit-appearance: none; }
.srch__close {
  flex: 0 0 auto; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); color: var(--muted); cursor: pointer;
  font-family: var(--font-body); font-size: .72rem; letter-spacing: .04em;
  padding: .3rem .5rem;
}
.srch__close:hover { color: var(--ink); border-color: var(--muted); }

.srch__results { max-height: min(58vh, 460px); overflow-y: auto; }
.srch__hint { padding: 1.5rem 1.1rem; color: var(--muted); font-size: .92rem; text-align: center; }

.srch__hit {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem 1rem; border-bottom: 1px solid var(--line);
  color: var(--ink); text-decoration: none;
}
.srch__hit:last-child { border-bottom: 0; }
.srch__hit:hover, .srch__hit.is-active { background: var(--gold-tint); }
.srch__hit img {
  width: 52px; height: 52px; flex: 0 0 auto; object-fit: cover;
  border-radius: var(--r-sm); background: var(--paper-2);
}
.srch__hit-txt { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .12rem; }
.srch__hit-txt strong { font-family: var(--font-head); font-size: .95rem; font-weight: 600; line-height: 1.25; }
.srch__hit-txt small { color: var(--muted); font-size: .78rem; }
.srch__hit-price { flex: 0 0 auto; font-family: var(--font-head); font-size: .92rem; font-weight: 600; white-space: nowrap; }

@media (max-width: 720px) {
  .srch { padding: 0; }
  .srch__panel { max-width: none; height: 100%; border: 0; border-radius: 0; }
  .srch__results { max-height: calc(100% - 62px); }
  .srch__hit-price { display: none; }   /* auf schmalen Displays hat der Name Vorrang */
}

/* Ausverkauft / nicht lieferbar (Verfügbarkeit kommt aus Shopify) */
.pcard__badge--out { background: var(--ink); color: var(--paper); letter-spacing: .02em; }
