/* ============================================================
   HOCHGUT MED — Pen-Nadeln Shop · v2 „Professional Studio"
   Nach Haithams Feedback: keine Cartoon-Optik. Realistische
   Render, gerade Linien, Archivo + Manrope, klinische Ruhe.
   ============================================================ */

:root {
  /* Farbwelt nach Marktplatz-Konvention (Amazon/Apotheke): neutrale Schrift,
     Blau = Vertrauen/Marke, Gelb nur für Kauf-CTA, Preis in Dunkelrot */
  --petrol-900: #131921;
  --petrol-700: #0a5c9e;
  --petrol-500: #2178c4;
  --petrol-100: #d6e6f5;
  --petrol-050: #eef4fb;
  --amber-600: #e47911;
  --amber-700: #c45500;
  --amber-050: #fdf1e3;
  --cta-yellow: #ffd814;
  --cta-yellow-hover: #f7ca00;
  --cta-ink: #0f1111;
  --price-red: #b12704;
  --star: #ffa41c;
  --green-600: #067d42;
  --paper: #f7f8f8;
  --card: #ffffff;
  --ink: #0f1111;
  --ink-soft: #565959;
  --line: #e3e6e6;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(12, 47, 54, 0.05), 0 8px 24px -12px rgba(12, 47, 54, 0.12);
  --shadow-lift: 0 2px 4px rgba(12, 47, 54, 0.06), 0 18px 40px -16px rgba(12, 47, 54, 0.2);
  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s6: 48px; --s8: 64px; --s12: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* der geschlossene Drawer (translateX 105 %) darf keinen H-Scroll erzeugen */
}

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

a { color: inherit; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 var(--s3); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--petrol-900);
  color: #c3d9dc;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px var(--s2);
}
.announce strong { color: #fff; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: var(--s3);
  height: 66px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.22rem;
  color: var(--petrol-900);
  text-decoration: none;
  letter-spacing: -0.015em;
  flex-shrink: 0;
}
.logo span { color: var(--petrol-700); }

/* Sichtbare Suche — Snocks-Learning: Sucher konvertieren 3x */
.search {
  flex: 1; max-width: 420px;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  cursor: text;
  transition: border-color 160ms ease-out, background-color 160ms ease-out;
}
.search:hover, .search:focus-within { border-color: var(--petrol-500); background: #fff; }
.search svg { width: 15px; height: 15px; flex-shrink: 0; }
.search input {
  border: 0; outline: 0; background: none; width: 100%;
  font: inherit; color: var(--ink);
}

.nav-links { display: flex; gap: var(--s3); margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color 160ms ease-out;
}
.nav-links a:hover { color: var(--petrol-700); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff; cursor: pointer;
  transition: border-color 160ms ease-out, transform 100ms ease-out;
}
.cart-btn:hover { border-color: var(--petrol-500); }
.cart-btn:active { transform: scale(0.94); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  background: var(--amber-600); color: #fff;
  font-size: 0.66rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero { padding: var(--s8) 0; border-bottom: 1px solid var(--line); background: #fff; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s8);
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--petrol-700);
  border: 1px solid var(--petrol-100);
  background: var(--petrol-050);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  margin-bottom: var(--s3);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--petrol-900);
  margin-bottom: var(--s3);
}
.hero h1 .accent { display: block; color: var(--amber-600); }
.hero p.lede {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: var(--s4);
}
.hero-ctas { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-md); border: 0; cursor: pointer;
  text-decoration: none;
  transition: background-color 160ms ease-out, transform 100ms ease-out, box-shadow 160ms ease-out;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--cta-yellow); color: var(--cta-ink);
  border: 1px solid #f2c200;
  padding: 15px 30px;
  box-shadow: 0 1px 2px rgba(15, 17, 17, 0.15);
}
.btn-primary:hover { background: var(--cta-yellow-hover); }
.btn-ghost {
  background: none; color: var(--petrol-700);
  padding: 15px 8px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--petrol-100);
}
.btn-ghost:hover { text-decoration-color: var(--petrol-500); }

.hero-stats {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: var(--s3);
  font-size: 0.8rem; color: var(--ink-soft);
}
.hero-stats .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.hero-stats strong { color: var(--ink); font-weight: 700; }

.hero-visual { display: grid; gap: 12px; }
.hero-scene {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.spec-bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.spec-bar .name { font-weight: 700; font-size: 0.92rem; }
.spec-bar .sub { font-size: 0.75rem; color: var(--ink-soft); }
.spec-bar .price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--price-red); }

/* ---------- Trust bar ---------- */
.trustbar { border-bottom: 1px solid var(--line); background: #fff; }
.trustbar .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
  padding-block: var(--s3);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; color: var(--ink-soft);
  justify-content: center;
}
.trust-item svg { width: 20px; height: 20px; color: var(--petrol-700); flex-shrink: 0; }
.trust-item strong { display: block; color: var(--ink); font-weight: 700; font-size: 0.84rem; }

/* ---------- Sections ---------- */
section { padding: var(--s8) 0; }
.section-head { max-width: 640px; margin-bottom: var(--s6); }
.section-head .kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber-600);
  margin-bottom: var(--s1);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--petrol-900);
}
.section-head p { color: var(--ink-soft); margin-top: var(--s2); font-size: 0.95rem; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--s3);
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: transparent; }
.product-card .media { position: relative; display: block; background: #f1f4f4; }
.product-card .badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--petrol-900); color: #fff;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm); padding: 5px 10px;
}
.product-card .badge.bestseller { background: var(--amber-600); }
.product-body { padding: var(--s3); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-size: 0.97rem; font-weight: 700; line-height: 1.35; }
.product-body h3 a { text-decoration: none; }
.product-body h3 a:hover { color: var(--petrol-700); }
.product-body .rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.76rem; color: var(--ink-soft);
}
.stars { color: var(--star); letter-spacing: 1px; font-size: 0.78rem; }
.product-body .price-row {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.price {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--price-red);
}
.price .unit { font-family: var(--font-body); font-size: 0.7rem; color: var(--ink-soft); font-weight: 400; display: block; }
.btn-add {
  background: var(--petrol-900); color: #fff;
  border: 0; border-radius: var(--radius-md);
  padding: 11px 18px;
  font: inherit; font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease-out, transform 100ms ease-out;
}
.btn-add:hover { background: var(--petrol-700); }
.btn-add:active { transform: scale(0.96); }

/* ---------- Bundles (Snocks-Learning: AOV) ---------- */
.bundles { background: var(--petrol-900); color: #dcebec; }
.bundles .section-head h2 { color: #fff; }
.bundles .section-head .kicker { color: #f0a26e; }
.bundles .section-head p { color: #8fb3b8; }
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); align-items: stretch; }
.bundle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.bundle-card.featured {
  background: #fff; color: var(--ink);
  border: 2px solid var(--amber-600);
  box-shadow: var(--shadow-lift);
}
.bundle-card.featured .bundle-price { color: var(--price-red); }
.bundle-card .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber-600); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm); padding: 5px 12px;
  white-space: nowrap;
}
.bundle-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.bundle-card .bundle-price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
}
.bundle-card .bundle-price small { font-size: 0.95rem; font-weight: 700; }
.bundle-card .per { font-size: 0.8rem; opacity: 0.75; }
.bundle-card .save { color: #2fbf8f; font-weight: 700; font-size: 0.82rem; }
.bundle-card.featured .save { color: var(--green-600); }
.bundle-card ul { list-style: none; font-size: 0.84rem; display: grid; gap: 8px; margin-block: 6px; }
.bundle-card ul li { padding-left: 22px; position: relative; }
.bundle-card ul li::before {
  content: "✓"; position: absolute; left: 0;
  color: #2fbf8f; font-weight: 700;
}
.bundle-card.featured ul li::before { color: var(--green-600); }
.bundle-card .btn { margin-top: auto; }
.bundle-card:not(.featured) .btn {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 24px;
}
.bundle-card:not(.featured) .btn:hover { background: rgba(255, 255, 255, 0.16); }
.bundle-card.featured .btn { padding: 13px 24px; }

/* ---------- Nadel-Finder ---------- */
.finder-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.4fr;
}
.finder-intro {
  background: var(--petrol-050);
  border-right: 1px solid var(--line);
  padding: var(--s6);
  display: flex; flex-direction: column; gap: var(--s2); justify-content: center;
}
.finder-intro h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; color: var(--petrol-900); }
.finder-intro p { font-size: 0.88rem; color: var(--ink-soft); }
.finder-table { padding: var(--s4) var(--s6); }
.finder-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.finder-table th {
  text-align: left; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft);
  padding: 10px 12px; border-bottom: 2px solid var(--line);
}
.finder-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); }
.finder-table tr:last-child td { border-bottom: 0; }
.finder-table .len { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--petrol-900); }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  background: var(--petrol-050); color: var(--petrol-700);
  border-radius: var(--radius-sm); padding: 4px 10px;
}
.pill.hot { background: var(--amber-050); color: var(--amber-700); }
.finder-note { font-size: 0.76rem; color: var(--ink-soft); margin-top: var(--s2); }

/* ---------- Versprechen ---------- */
.promise .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.promise-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  background: #fff;
}
.promise-card svg { width: 26px; height: 26px; color: var(--amber-600); margin-bottom: var(--s2); }
.promise-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.promise-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.reviews { background: #fff; border-block: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  font-size: 0.88rem;
}
.review-card .stars { margin-bottom: 10px; }
.review-card p { color: var(--ink); }
.review-card footer {
  margin-top: var(--s2);
  font-size: 0.76rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.review-card footer .verified { color: var(--green-600); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: var(--s2) 0;
}
.faq-list summary {
  cursor: pointer; font-weight: 600; font-size: 0.98rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s2);
  padding: 8px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--amber-600); flex-shrink: 0;
  transition: transform 200ms ease-out;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); font-size: 0.9rem; padding: 4px 0 var(--s2); max-width: 62ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol-900); color: #8fb3b8; font-size: 0.84rem; }
.site-footer .wrap { padding-block: var(--s8) var(--s4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s4); margin-bottom: var(--s6); }
.site-footer .logo { color: #fff; margin-bottom: var(--s2); display: inline-block; }
.site-footer h4 { color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--s2); }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--s3);
  font-size: 0.74rem;
  display: flex; justify-content: space-between; gap: var(--s2); flex-wrap: wrap;
}
.medical-note {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--s2) var(--s3);
  font-size: 0.76rem;
  margin-bottom: var(--s4);
}

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(12, 47, 54, 0.4);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 250ms ease-out;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 100vw);
  background: #fff;
  box-shadow: -24px 0 60px rgba(12, 47, 54, 0.25);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s3);
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.drawer-close { background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink-soft); line-height: 1; padding: 6px; }
.drawer-items { flex: 1; overflow-y: auto; padding: var(--s3); display: grid; gap: var(--s2); align-content: start; }
.drawer-empty { text-align: center; color: var(--ink-soft); padding: var(--s6) 0; font-size: 0.88rem; }
.cart-item {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 0.84rem;
}
.cart-item .thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); background: #eef2f2; display: flex; align-items: center; justify-content: center; }
.cart-item .qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-item .qty button {
  width: 24px; height: 24px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 0.9rem; line-height: 1;
}
.cart-item .item-price { font-weight: 700; }
.cart-item .remove { background: none; border: 0; color: var(--ink-soft); font-size: 0.7rem; cursor: pointer; text-decoration: underline; margin-top: 4px; }
.drawer-foot { border-top: 1px solid var(--line); padding: var(--s3); display: grid; gap: 12px; }
.drawer-total { display: flex; justify-content: space-between; font-weight: 700; }
.drawer-total .sum { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--price-red); }
.shipping-hint { font-size: 0.74rem; color: var(--ink-soft); }
.shipping-hint .bar { display: block; height: 4px; border-radius: 999px; background: var(--line); margin-top: 6px; overflow: hidden; }
.shipping-hint .bar i { display: block; height: 100%; background: var(--green-600); border-radius: 999px; transition: width 300ms ease-out; }
.drawer-foot .btn-primary { width: 100%; padding: 15px; }
.drawer-foot .pay-icons { display: flex; justify-content: center; gap: 10px; font-size: 0.7rem; color: var(--ink-soft); }

/* ---------- PDP ---------- */
.pdp { padding: var(--s6) 0 var(--s8); }
.pdp .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s8); align-items: start; }
.crumbs { font-size: 0.76rem; color: var(--ink-soft); padding: var(--s3) 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.gallery { position: sticky; top: 90px; }
.gallery-main {
  background: #f1f4f4;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs button {
  width: 70px; height: 70px;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: #f1f4f4;
  cursor: pointer; overflow: hidden; padding: 0;
  transition: border-color 160ms ease-out;
}
.gallery-thumbs button.active { border-color: var(--petrol-700); }
.gallery-thumbs button svg { width: 100%; height: 100%; }

/* Echte Produktfotos in Galerie, Karten & Hero */
.gallery-main img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-thumbs { flex-wrap: wrap; }
.gallery-thumbs button { padding: 0; overflow: hidden; }
.gallery-thumbs button img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-card .media img { display: block; width: 100%; height: auto; aspect-ratio: 300 / 220; object-fit: cover; }
.hero-photo {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}

.pdp-info h1 {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--petrol-900);
  margin-bottom: 10px;
}
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: var(--s3); }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.pdp-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: var(--price-red); }
.pdp-price-note { font-size: 0.74rem; color: var(--ink-soft); margin-bottom: var(--s3); }

.opt-label { font-size: 0.8rem; font-weight: 700; margin: var(--s3) 0 10px; display: flex; justify-content: space-between; }
.opt-label .hint { color: var(--petrol-700); font-weight: 500; text-decoration: none; }
.opt-label a.hint:hover { text-decoration: underline; }

/* Varianten als Produktbilder (Snocks-Learning) */
.variant-row { display: flex; gap: 10px; flex-wrap: wrap; }
.variant {
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  padding: 8px 6px 6px;
  width: 74px;
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink-soft);
  transition: border-color 160ms ease-out, background-color 160ms ease-out;
}
.variant .v-len { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--petrol-900); display: block; }
.variant svg { height: 36px; margin: 0 auto 4px; }
.variant.active { border-color: var(--petrol-700); background: var(--petrol-050); }

/* Bundle-Auswahl */
.bundle-select { display: grid; gap: 10px; }
.bundle-opt {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 160ms ease-out, background-color 160ms ease-out;
  position: relative;
}
.bundle-opt.active { border-color: var(--amber-600); background: var(--amber-050); }
.bundle-opt input { accent-color: var(--amber-600); width: 17px; height: 17px; }
.bundle-opt .b-name { font-weight: 700; font-size: 0.9rem; }
.bundle-opt .b-sub { font-size: 0.74rem; color: var(--ink-soft); }
.bundle-opt .b-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--petrol-900); text-align: right; }
.bundle-opt .b-save { font-size: 0.68rem; color: var(--green-600); font-weight: 700; text-align: right; }
.bundle-opt .b-tag {
  position: absolute; top: -10px; right: 14px;
  background: var(--amber-600); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius-sm); padding: 3px 9px;
}

.pdp-cta { margin-top: var(--s4); display: grid; gap: 12px; }
.pdp-cta .btn-primary { width: 100%; padding: 16px; font-size: 1rem; }
.pdp-trust {
  display: flex; justify-content: center; gap: var(--s3);
  font-size: 0.73rem; color: var(--ink-soft); flex-wrap: wrap;
}
.pdp-trust span { display: flex; align-items: center; gap: 5px; }
.pdp-trust svg { width: 13px; height: 13px; color: var(--green-600); }

.pdp-accordion { margin-top: var(--s4); }
.pdp-accordion details { border-top: 1px solid var(--line); }
.pdp-accordion details:last-child { border-bottom: 1px solid var(--line); }
.pdp-accordion summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 4px; font-weight: 600; font-size: 0.93rem;
}
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion summary::after { content: "+"; font-family: var(--font-display); color: var(--amber-600); font-size: 1.25rem; transition: transform 200ms ease-out; }
.pdp-accordion details[open] summary::after { transform: rotate(45deg); }
.pdp-accordion .acc-body { padding: 0 4px var(--s3); font-size: 0.86rem; color: var(--ink-soft); }
.pdp-accordion .acc-body ul { padding-left: 18px; display: grid; gap: 6px; }
.pdp-accordion table { width: 100%; font-size: 0.84rem; border-collapse: collapse; }
.pdp-accordion td { padding: 8px 4px; border-bottom: 1px solid var(--line); }
.pdp-accordion td:first-child { color: var(--ink-soft); }

/* Cross-sell */
.cross-sell { background: #fff; border-top: 1px solid var(--line); }

/* Sticky mobile ATC */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(12, 47, 54, 0.1);
  padding: 12px var(--s3) max(12px, env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: var(--s2);
  transform: translateY(110%);
  transition: transform 250ms ease-out;
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc .s-price { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--price-red); }
.sticky-atc .s-name { font-size: 0.7rem; color: var(--ink-soft); }
.sticky-atc .btn-primary { flex: 1; padding: 14px; font-size: 0.92rem; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--petrol-900); color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  font-size: 0.84rem;
  z-index: 110;
  opacity: 0;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Entrance animation — ein orchestrierter Page-Load */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.rise { animation: rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.rise-1 { animation-delay: 0.04s; } .rise-2 { animation-delay: 0.1s; }
.rise-3 { animation-delay: 0.16s; } .rise-4 { animation-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible, label:focus-visible {
  outline: 2px solid var(--petrol-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: var(--s6); }
  .hero { padding: var(--s6) 0; }
  .hero-visual { max-width: 480px; }
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .finder-box { grid-template-columns: 1fr; }
  .finder-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise .wrap { grid-template-columns: 1fr; max-width: 520px; }
  .review-grid { grid-template-columns: 1fr; max-width: 520px; }
  .pdp .wrap { grid-template-columns: 1fr; gap: var(--s4); }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .search { max-width: none; }
}
@media (max-width: 640px) {
  section { padding: var(--s6) 0; }
  .search { display: none; }
  .site-header .wrap { justify-content: space-between; }
  .sticky-atc { display: flex; }
  .trustbar .wrap { grid-template-columns: 1fr 1fr; gap: var(--s2); }
  .trust-item { justify-content: flex-start; }
}

/* ---------- Rechts- & Serviceseiten ---------- */
.legal { max-width: 720px; margin: 0 auto; padding: var(--s6) var(--s3) var(--s12); }
.legal h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem;
  letter-spacing: -0.02em; color: var(--petrol-900); margin-bottom: var(--s4);
}
.legal h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--petrol-900); margin: var(--s4) 0 var(--s1);
}
.legal h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--petrol-900); margin: var(--s2) 0 4px; }
.legal p, .legal address, .legal li { font-style: normal; font-size: 0.95rem; color: var(--ink); margin-bottom: var(--s1); }
.legal ul, .legal ol { padding-left: 1.3em; margin-bottom: var(--s1); }
.legal li { margin-bottom: 4px; }
.legal .muted { color: var(--ink-soft); font-size: 0.85rem; }
.legal a { color: var(--petrol-700); }
.legal table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: var(--s1) 0 var(--s2); }
.legal table td, .legal table th { border-bottom: 1px solid var(--line); padding: 8px 10px 8px 0; text-align: left; vertical-align: top; }
.legal table th { font-family: var(--font-display); font-weight: 600; color: var(--petrol-900); }
.legal .todo, .todo {
  background: var(--amber-050); border: 1px solid #f0d9b8; border-radius: var(--radius-md);
  padding: var(--s2) var(--s3); font-size: 0.85rem; color: var(--ink); margin-top: var(--s4);
}
.legal .box {
  background: var(--petrol-050); border: 1px solid var(--petrol-100); border-radius: var(--radius-md);
  padding: var(--s2) var(--s3); margin: var(--s2) 0;
}

/* Kontaktseite */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-top: var(--s3); }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s3); box-shadow: var(--shadow-card);
}
.contact-card h3 { margin-top: 0; }
.contact-card .big { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--petrol-700); }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Such-Vorschläge ---------- */
.search { position: relative; }
.search-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); overflow: hidden; display: none;
}
.search-suggest.open { display: block; }
.search-suggest a {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s2);
  padding: 10px 14px; font-size: 0.85rem; color: var(--ink); text-decoration: none;
}
.search-suggest a + a { border-top: 1px solid var(--line); }
.search-suggest a:hover, .search-suggest a.hl { background: var(--petrol-050); }
.search-suggest .s-price { color: var(--price-red); font-weight: 700; white-space: nowrap; }
.search-suggest .s-empty { padding: 10px 14px; font-size: 0.85rem; color: var(--ink-soft); }
