/* Top promo bar */
.sp-topbar {
  background: var(--teal-light);
  color: var(--muted);
  font-size: 0.72rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.06em;
}
.sp-topbar strong { color: var(--gold-soft); font-weight: 600; }
.sp-topbar .container { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; text-align: center; }
.sp-topbar .flag { margin-right: 0.25rem; }

/* Header */
.sp-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.sp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.sp-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sp-logo--brand img {
  height: 36px;
  width: auto;
  display: block;
}
.sp-logo--footer img {
  height: 40px;
  width: auto;
}
.sp-nav { display: flex; align-items: center; gap: 1.1rem; }
.sp-nav > a, .sp-nav-item > button {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0.35rem 0;
}
.sp-nav > a:hover, .sp-nav-item > button:hover, .sp-nav > a.active { color: var(--accent); }
.sp-nav-item { position: relative; }
.sp-mega {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  min-width: 620px;
  z-index: 130;
}
.sp-nav-item:hover .sp-mega, .sp-nav-item.open .sp-mega { display: block; }
.sp-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.sp-tool-card {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sp-tool-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); }
.sp-tool-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 0.5rem;
}
.sp-tool-card strong { display: block; font-size: 0.92rem; margin-bottom: 0.25rem; }
.sp-tool-card span { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

.sp-cart-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--teal-light);
  border: 1px solid rgba(26,138,128,0.2);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  color: var(--teal-dark); text-decoration: none; font-size: 0.82rem; font-weight: 600;
}
.sp-cart-pill .count {
  background: var(--accent); color: #fff; min-width: 1.25rem; height: 1.25rem;
  border-radius: 999px; display: grid; place-items: center; font-size: 0.7rem;
}

/* Product page */
body[data-page="product"] { background: var(--bg); }

.pd-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 60vh;
}

.pd-page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(250, 250, 248, 0.72) 0%, rgba(250, 250, 248, 0.92) 55%, rgba(243, 242, 239, 0.98) 100%),
    url("../images/ui/product-page-bg.svg") center top / cover no-repeat;
  pointer-events: none;
}

.pd-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, color-mix(in srgb, var(--pd-accent, #1a8a80) 12%, transparent), transparent 70%);
}

.pd-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.pd-gallery { position: relative; }

.pd-gallery-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--pd-accent, #1a8a80) 14%, #fff) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(184, 148, 63, 0.1) 0%, transparent 45%),
    linear-gradient(145deg, #f8faf9 0%, #eef6f4 100%);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.pd-gallery-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pd-accent, #1a8a80) 22%, transparent) 0%, transparent 68%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.pd-gallery-watermark {
  position: absolute;
  width: 88% !important;
  max-height: 88%;
  object-fit: contain;
  opacity: 0.07;
  filter: blur(1px) saturate(0.85);
  transform: scale(1.08);
  pointer-events: none;
  z-index: 0;
}

.pd-gallery-main img[data-main-img] {
  position: relative;
  z-index: 1;
  width: 72%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
}

.pd-page .pd-related,
.pd-page .calc-section,
.pd-page .pd-faq {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pd-page .pd-related {
  border-color: rgba(255, 255, 255, 0.75);
}
.pd-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.pd-thumb {
  width: 72px; height: 72px; border-radius: 10px; border: 2px solid var(--line);
  overflow: hidden; cursor: pointer; background: #fff;
}
.pd-thumb.active { border-color: var(--teal-accent); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }

.pd-stars { color: var(--star); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.pd-stars small { color: var(--muted); font-weight: 500; }
.pd-title { font-size: 2rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--ink); }
.pd-variants { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pd-variant {
  padding: 0.45rem 0.9rem; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 0.88rem; font-weight: 600;
}
.pd-variant.active { background: var(--teal-light); border-color: var(--teal-accent); color: var(--teal); }
.pd-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pd-badge {
  background: var(--teal-light); color: var(--teal);
  font-size: 0.78rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: 999px;
}
.pd-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1rem; }
.pd-desc p { margin: 0 0 0.85rem; }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-desc p:first-child { color: var(--text); font-weight: 500; }
.pd-price-range { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }

.pd-bulk {
  background: var(--bulk-bg);
  border: 1.5px solid var(--bulk-border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.pd-bulk h4 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #059669;
}
.pd-bulk-row {
  display: grid;
  grid-template-columns: 2.5rem 3rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  cursor: pointer;
}
.pd-bulk-row.on { border-color: var(--bulk-border); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
.pd-bulk-pct { background: #10b981; color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 999px; text-align: center; }
.pd-bulk-save { font-size: 0.8rem; color: #059669; font-weight: 600; text-align: right; }
.pd-bulk-note { font-size: 0.75rem; color: #9ca3af; margin: 0.5rem 0 0; }

.pd-add-row { display: flex; gap: 0.65rem; align-items: center; flex-wrap: wrap; margin-top: 1rem; }
.pd-qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.pd-qty button { width: 2.25rem; height: 2.25rem; border: none; background: #fff; cursor: pointer; font-size: 1.1rem; }
.pd-qty input { width: 3rem; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.btn-cart {
  background: linear-gradient(135deg, var(--accent), #2a9d8f);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-cart:hover { background: var(--accent-hover); }

/* Related */
.pd-related {
  margin-top: 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.pd-related h3 { text-align: center; margin: 0 0 1.25rem; font-size: 1.15rem; }
.pd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.sp-card-img { aspect-ratio: 1; background: var(--bg-soft); display: grid; place-items: center; padding: 1rem; }
.sp-card-img img { max-height: 85%; object-fit: contain; }
.sp-card-body { padding: 0.85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.sp-card-body h4 { margin: 0; font-size: 0.95rem; }
.sp-card-dose { font-size: 0.8rem; color: var(--muted); }
.sp-card-purity { font-size: 0.78rem; color: var(--teal-accent); font-weight: 600; }
.sp-card-price { font-weight: 700; margin: 0.35rem 0; }
.sp-card .btn-cart { width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.6rem; margin-top: auto; }

/* Calculator */
.calc-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.calc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-accent); font-weight: 700; margin-bottom: 0.35rem; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.calc-form { padding: 1.5rem; background: #fff; }
.calc-form .field { margin-bottom: 1rem; }
.calc-form label { font-size: 0.82rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 0.35rem; }
.calc-form input {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--line);
  border-radius: 8px; background: #f3f4f6; font-size: 1rem;
}
.calc-syringe-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.calc-syringe-btns button {
  padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid var(--line);
  background: #f3f4f6; cursor: pointer; font-size: 0.8rem; font-weight: 600;
}
.calc-syringe-btns button.on { background: var(--teal-accent); color: #fff; border-color: var(--teal-accent); }
.calc-result {
  background: var(--teal-mint);
  color: var(--text);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}
.calc-result h3 { margin: 0 0 1rem; font-size: 1.75rem; font-weight: 700; color: var(--teal-dark); }
.calc-result-row { display: flex; justify-content: space-between; padding: 0.45rem 0; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.calc-result-row:last-child { border: none; }

.syringe-viz {
  background: #f9fafb;
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.25rem;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
}
.u100-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.u100-label { margin: 0 0 1rem; color: var(--muted); font-size: 0.92rem; }
.u100-label strong { color: var(--ink); font-size: 1.05rem; }
.u100-svg { width: 100%; height: auto; display: block; }
.u100-scale {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 64px 0 64px;
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.u100-hint { font-size: 0.72rem; color: #9ca3af; margin: 0.75rem 0 0; }
.u100-hint code { font-size: 0.68rem; background: #eee; padding: 0.1rem 0.35rem; border-radius: 4px; }

.calc-steps {
  background: var(--teal-mint);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.calc-steps ol { margin: 0; padding-left: 1.2rem; }
.calc-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.88rem; }
.calc-table th, .calc-table td { border: 1px solid var(--line); padding: 0.65rem 0.85rem; text-align: left; }
.calc-table th { background: var(--teal-mint); font-weight: 600; }

/* FAQ */
.pd-faq { margin-top: 2rem; }
.pd-faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: #fff;
}
.pd-faq-q {
  width: 100%; text-align: left; padding: 1rem 1.1rem;
  background: none; border: none; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.pd-faq-a { padding: 0 1.1rem 1rem; color: var(--muted); font-size: 0.88rem; line-height: 1.6; display: none; }
.pd-faq-item.open .pd-faq-a { display: block; }

/* Footer image 3 */
.sp-footer { background: var(--ink-footer); color: #9aabc0; margin-top: 0; }
.sp-footer-top { padding: 2.5rem 0; }
.sp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.sp-footer h4 {
  color: #fff; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin: 0 0 1rem;
  padding-bottom: 0.35rem; border-bottom: 2px solid var(--teal-accent);
  display: inline-block;
}
.sp-footer a { display: block; color: #9aabc0; text-decoration: none; font-size: 0.85rem; margin-bottom: 0.4rem; }
.sp-footer a:hover { color: #fff; }
.sp-footer-tools { display: grid; gap: 0.5rem; }
.sp-footer-tool {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.65rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  text-decoration: none; color: #c8d2e0;
}
.sp-footer-tool strong { color: #fff; font-size: 0.82rem; display: block; }
.sp-footer-tool span { font-size: 0.72rem; }
.sp-trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: #7f92a8;
}
.sp-trust-bar span::before { content: "✓ "; color: #38b1bd; font-weight: 700; }
.sp-footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
}
.sp-footer-payments { display: flex; gap: 0.5rem; }
.sp-footer-payments span {
  background: rgba(255,255,255,0.06); padding: 0.25rem 0.65rem;
  border-radius: 4px; font-weight: 600; color: #94a3b8;
}
.sp-lexikon-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.sp-lexikon-bar a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* Tools hub */
.tools-overview { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 2.5rem; }
.tool-block { margin: 3rem 0; padding-top: 2rem; border-top: 1px solid var(--line); }
.tool-block-head { margin-bottom: 1.25rem; }
.tool-block-head h2 { margin: 0 0 0.35rem; font-size: 1.5rem; }
.tool-block-head p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.tool-empty { color: var(--muted); font-size: 0.9rem; }
.lex-hero { margin-bottom: 2rem; max-width: 72ch; }
.lex-eyebrow { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.5rem; }
.lex-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 0.75rem; line-height: 1.1; }
.lex-lead { color: var(--muted); line-height: 1.7; margin: 0 0 1.25rem; font-size: 1.02rem; }
.lex-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-bottom: 1rem; }
.lex-stats strong { display: block; font-size: 1.65rem; color: var(--text); line-height: 1; }
.lex-stats span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.lex-ruo-note { font-size: 0.82rem; color: var(--muted); border-left: 3px solid var(--accent); padding-left: 0.85rem; margin: 0; line-height: 1.55; }
.lex-toolbar { margin-bottom: 1rem; }
.lex-search-field { max-width: 440px; margin-bottom: 1rem; }
.lex-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.lex-filter {
  border: 1px solid var(--line); background: #fff; color: var(--text);
  padding: 0.42rem 0.85rem; border-radius: 999px; font-size: 0.82rem; cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.lex-filter:hover { border-color: var(--accent); }
.lex-filter.on { background: var(--teal-mint); border-color: var(--accent); color: var(--text); font-weight: 600; }
.lex-result-meta { font-size: 0.82rem; color: var(--muted); margin: 0 0 0.85rem; }
.lex-empty { color: var(--muted); text-align: center; padding: 2rem 1rem; }
.lex-about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.lex-about { margin-top: 0; }
.lex-about h2 { margin-top: 0; font-size: 1.15rem; }
.lex-about p { color: var(--muted); line-height: 1.7; margin: 0 0 0.85rem; }
.lex-about p:last-child { margin-bottom: 0; }
.lex-bullets { margin: 0; padding-left: 1.15rem; color: var(--muted); line-height: 1.65; }
.lex-bullets li { margin-bottom: 0.35rem; }
.lex-about-ruo { border-color: var(--accent); background: var(--teal-mint); }

.lex-entry-wrap { max-width: 1100px; }
.lex-crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; display: flex; gap: 0.45rem; flex-wrap: wrap; }
.lex-crumb a { color: var(--accent); text-decoration: none; font-weight: 600; }
.lex-entry-hero { margin-bottom: 1.25rem; }
.lex-entry-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.65rem; }
.lex-entry-form { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.lex-entry-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.85rem, 3.5vw, 2.5rem); margin: 0 0 0.5rem; line-height: 1.12; }
.lex-entry-syn { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.92rem; }
.lex-entry-overview { margin: 0 0 1.15rem; line-height: 1.7; font-size: 1.02rem; max-width: 72ch; }
.lex-entry-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.lex-entry-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1.5rem;
}
.lex-entry-panel h2 { margin: 0 0 0.85rem; font-size: 1.1rem; }
.lex-entry-panel p { margin: 0; line-height: 1.7; color: var(--muted); }
.lex-entry-panel--wide { grid-column: 1 / -1; }
.lex-dl { display: grid; gap: 0.65rem; margin: 0; }
.lex-dl > div { display: grid; grid-template-columns: 9.5rem 1fr; gap: 0.65rem; padding-bottom: 0.55rem; border-bottom: 1px solid var(--line); }
.lex-dl dt { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.03em; }
.lex-dl dd { margin: 0; font-size: 0.9rem; line-height: 1.5; word-break: break-word; }
.lex-related { margin-bottom: 1.25rem; }
.lex-related h2 { font-size: 1.15rem; margin: 0 0 0.85rem; }
.lex-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.lex-related-card {
  display: block; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s;
}
.lex-related-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.lex-related-card strong { display: block; margin: 0.35rem 0 0.25rem; }
.lex-related-card p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
.lex-entry-ruo { margin-top: 0.5rem; border-left: 3px solid var(--accent); }
.lex-entry-ruo strong { display: block; margin-bottom: 0.35rem; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.lex-entry-ruo p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.88rem; }
@media (max-width: 720px) {
  .lex-entry-grid { grid-template-columns: 1fr; }
  .lex-dl > div { grid-template-columns: 1fr; }
}
.lex-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.lex-card {
  display: flex; flex-direction: column; gap: 0.35rem; padding: 1.1rem 1.15rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; text-decoration: none; color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  min-height: 100%;
}
.lex-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.lex-card-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.15rem; }
.lex-card-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); background: var(--teal-mint); padding: 0.2rem 0.5rem; border-radius: 4px;
}
.lex-card-init {
  width: 2rem; height: 2rem; border-radius: 8px; background: var(--surface);
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; color: var(--muted);
}
.lex-card-title { font-size: 1.02rem; line-height: 1.25; margin: 0; }
.lex-card-syn { margin: 0; font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.lex-card-summary { margin: 0; font-size: 0.84rem; color: var(--text); line-height: 1.55; flex: 1; }
.lex-card-meta {
  display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; font-size: 0.76rem; color: var(--muted);
  padding-top: 0.45rem; border-top: 1px solid var(--line); margin-top: 0.25rem;
}
.lex-card-meta em { font-style: normal; font-weight: 700; color: var(--accent); margin-right: 0.2rem; }
.lex-card-cta { font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-top: 0.15rem; }
.stack-add { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 1rem; }
.stack-add select { flex: 1; min-width: 200px; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.stack-list { display: flex; flex-direction: column; gap: 0.5rem; }
.stack-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.compare-picks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.compare-table th:first-child { width: 28%; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.guide-card {
  background: var(--teal-mint); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.guide-card h3 { margin: 0 0 0.65rem; font-size: 1rem; color: var(--teal-dark); }
.guide-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* Cart lines */
.cart-line {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center;
  margin-bottom: 0.6rem;
}
.cart-line-info small { color: var(--muted); }
.cart-line-qty { display: flex; align-items: center; gap: 0.35rem; }
.cart-line-qty button {
  width: 2rem; height: 2rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; cursor: pointer; font-size: 1rem;
}
.cart-line-price { text-align: right; }
.cart-line-remove {
  display: block; margin-top: 0.25rem; background: none; border: none;
  color: var(--muted); font-size: 0.78rem; cursor: pointer; text-decoration: underline;
}
.cart-line-remove:hover { color: var(--warn); }

/* About / Kontakt */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; }
.trust-chips-col { display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: flex-start; }
.kontakt-card { max-width: 520px; }

/* Legal / RUO */
.legal-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.legal-bullets li + li { margin-top: 0.35rem; }
.modal-legal { max-width: 34rem; }
.pd-ruo-notice {
  margin: 1rem 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid color-mix(in srgb, var(--pd-accent, var(--accent)) 28%, var(--line));
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--pd-accent, var(--accent)) 6%, #fff);
  font-size: 0.85rem;
}
.pd-ruo-notice strong { display: block; margin-bottom: 0.45rem; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.pd-ruo-notice .pd-ruo-link { margin: 0.5rem 0 0; font-size: 0.8rem; }

/* Legal pages */
.legal-prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin: 1.75rem 0 0.6rem; }
.legal-prose h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; }
.legal-prose p, .legal-prose li { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }
.legal-prose ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.legal-prose a { color: var(--accent); }

@media (max-width: 960px) {
  .pd-grid, .calc-grid, .pd-related-grid, .sp-footer-grid, .about-grid, .compare-picks, .cart-line { grid-template-columns: 1fr; }
  .cart-line-price { text-align: left; }
  .sp-tools-grid { grid-template-columns: 1fr 1fr; }
  .sp-nav { display: none; }
  .sp-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .sp-mega { position: static; transform: none; min-width: auto; }
}