:root {
  --navy: #08253b;
  --navy-2: #123f5e;
  --orange: #ff7a18;
  --text: #17212b;
  --muted: #697986;
  --line: #dce5eb;
  --soft: #f3f7fa;
  --white: #fff;
  --green: #168a55;
  --red: #b53d3d;
  --yellow: #967000;
  --shadow: 0 12px 34px rgba(8, 37, 59, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.container, .wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.finder-panel, .store-map-panel { margin-bottom: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.finder-panel { position: relative; z-index: 500; padding: 24px; }
.store-map-panel { overflow: hidden; }
.finder-panel__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.finder-panel__heading h2 { margin: 0; }
.finder-panel__heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.finder-form { display: grid; grid-template-columns: 1.25fr 1.25fr .65fr auto auto; align-items: end; gap: 12px; }
.finder-form label { display: grid; gap: 6px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.finder-form input, .finder-form select { width: 100%; min-height: 46px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--text); }
.finder-form .finder-check { min-height: 46px; display: flex; flex-direction: row; align-items: center; white-space: nowrap; }
.finder-check input { width: 18px; min-height: 18px; margin-right: 7px; }
.finder-note { margin: 14px 0 0; color: var(--muted); font-size: .84rem; }
.store-map { width: 100%; height: 390px; background: #dce8ed; }
.store-map-panel__caption { display: flex; justify-content: space-between; gap: 24px; padding: 14px 18px; color: var(--muted); font-size: .84rem; }
.store-map-panel__caption strong { color: var(--navy); }
.product-picker { position: relative; display: grid; gap: 6px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.product-picker details { position: relative; }
.product-picker summary { min-height: 46px; padding: 0 12px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; list-style: none; }
.product-picker summary::-webkit-details-marker { display: none; }
.product-picker summary::after { content: '⌄'; margin-left: auto; font-size: 1rem; }
.product-picker__menu { position: absolute; z-index: 1001; top: calc(100% + 6px); left: 0; width: max(100%, 300px); padding: 10px; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.product-picker__menu label { min-height: 36px; padding: 5px 7px; display: flex; grid-template-columns: auto 1fr; flex-direction: row; align-items: center; gap: 8px; border-radius: 7px; cursor: pointer; }
.product-picker__menu label:hover { background: var(--soft); }
.product-picker__menu input { width: 17px; min-height: 17px; }
.product-picker__menu label > span { display: grid; }
.product-picker__menu small { color: var(--yellow); font-size: .72rem; font-weight: 700; }
.catalog-notice { margin-top: 14px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid #eedda9; border-radius: 10px; background: #fffaf0; }
.catalog-notice > div { display: grid; }
.catalog-notice span { color: var(--yellow); font-size: .82rem; }
.market-pin-wrap { background: transparent; border: 0; }
.market-pin { width: 12px; height: 12px; display: block; border: 2px solid var(--white); border-radius: 50%; background: #d71920; box-shadow: 0 0 0 1px rgba(8,37,59,.35); }
.market-pin-wrap--available .market-pin { background: var(--green); }
.market-pin-wrap--low_stock .market-pin,
.market-pin-wrap--orderable .market-pin { background: var(--orange); }
.market-pin-wrap--unavailable .market-pin { background: #d71920; }
.market-pin-wrap--unknown .market-pin { background: #9aa6ad; }

@media (max-width: 900px) {
  .finder-panel__heading, .store-map-panel__caption { align-items: flex-start; flex-direction: column; }
  .finder-form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .finder-form { grid-template-columns: 1fr; }
  .store-map { height: 320px; }
}

.site-header, .top {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(8, 37, 59, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}
.site-header__inner, .top .nav {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .logo { color: var(--white); font-size: 1.55rem; font-weight: 900; letter-spacing: -.05em; text-decoration: none; }
.brand span, .brand strong, .logo strong { color: var(--orange); }
.logo b { color: var(--white); }
.site-nav, .site-header nav, .top nav { display: flex; align-items: center; gap: 28px; }
.site-nav a, .site-header nav a, .top nav a { color: rgba(255,255,255,.8); font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-header nav a:hover, .top nav a:hover { color: var(--white); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 9px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; color: var(--white); border: 1px solid rgba(255,255,255,.22); border-radius: 9px; background: transparent; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { width: 21px; height: 2px; display: block; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mvp { padding: 6px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: .78rem; }

.hero {
  color: var(--white);
  background: radial-gradient(circle at 85% 20%, rgba(255,122,24,.24), transparent 25%), linear-gradient(135deg, var(--navy), var(--navy-2));
}
.hero__grid {
  min-height: 560px;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 65px;
}
.eyebrow { margin: 0 0 9px; color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5.1rem); line-height: .98; letter-spacing: -.065em; }
.hero h1 span { color: #cfe2ef; }
.hero__lead, .hero__text, .lead { max-width: 650px; margin: 25px 0; color: rgba(255,255,255,.79); font-size: 1.15rem; }
.hero__actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust, .trust-row, .trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: .88rem; }

.btn, .button, button[type="submit"] {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.btn--primary, .btn-primary, .button--primary, .primary { color: #21150c; background: var(--orange); box-shadow: 0 10px 22px rgba(255,122,24,.22); }
.btn--secondary, .btn-secondary, .button--secondary, .ghost { color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.23); }
.btn--dark, .btn-dark, .dark, button[type="submit"] { color: var(--white); background: var(--navy); }
.btn:hover, .button:hover, button[type="submit"]:hover { transform: translateY(-1px); filter: brightness(1.04); }

.product-card { overflow: hidden; color: var(--text); background: var(--white); border-radius: 24px; box-shadow: 0 20px 50px rgba(6,28,47,.33); }
.product-card__visual { position: relative; min-height: 325px; padding: 32px 20px 12px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f7fafc, #fff8f3); }
.product-card__brand { position: absolute; top: 20px; left: 22px; width: 82px; height: auto; z-index: 2; border-radius: 2px; box-shadow: 0 5px 14px rgba(8,37,59,.08); }
.product-card__image { width: 112%; max-width: 430px; height: 288px; margin-top: 18px; object-fit: contain; mix-blend-mode: multiply; transform: translateY(4px); }
.product-card__device { min-height: 175px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.device { display: block; background: var(--white); box-shadow: 0 15px 30px rgba(8,37,59,.16); }
.device--inside { width: 190px; height: 72px; border-radius: 12px 12px 18px 18px; }
.device--outside { position: relative; width: 120px; height: 145px; border-radius: 10px; }
.device--outside::after { content: ""; position: absolute; inset: 28px 0 0 15px; width: 70px; height: 70px; border: 10px solid #dfe8ed; border-radius: 50%; }
.product-card__body { padding: 26px; }
.product-card__body h2, .product-card__body h3 { margin: 0 0 8px; color: var(--navy); }
.product-card__body p, .product-card__body small { color: var(--muted); }
.product-card__label, .product-card__note { margin: 0; }
.product-card__price, .big-price, .bigprice { color: var(--navy); font-size: 2.65rem; font-weight: 900; letter-spacing: -.05em; }

.section { padding: 80px 0; }
.section--soft, .soft { background: var(--soft); }
.section__heading, .section-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section__heading h2, .section-heading h2, .section h2 { margin: 0; color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.04em; }
.section__heading > span, .section__heading > p, .section-heading > p, .updated { color: var(--muted); font-size: .88rem; }

.filter-bar {
  margin-bottom: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: end;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(8,37,59,.06);
}
.filter-bar label { display: grid; gap: 7px; color: var(--muted); font-size: .82rem; font-weight: 800; }
.filter-bar input, .filter-bar select, input, select { width: 100%; min-height: 46px; padding: 0 13px; color: var(--text); background: var(--white); border: 1px solid var(--line); border-radius: 9px; }
input:focus, select:focus { outline: 3px solid rgba(255,122,24,.18); border-color: var(--orange); }

.offers, .offer-list { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.offer { min-height: 105px; padding: 18px 20px; display: grid; grid-template-columns: 1.2fr .75fr 1fr auto; align-items: center; gap: 20px; }
.offer + .offer { border-top: 1px solid var(--line); }
.offer--monitoring { background: linear-gradient(90deg, rgba(8,37,59,.025), rgba(255,122,24,.035)); }
.offer__price--empty strong { color: var(--muted); }
.badge--monitoring { color: #315f7c; background: #eaf3f8; }
.button--monitoring { color: var(--navy); background: var(--white); border: 1px solid #9eb6c5; }
.button--monitoring:hover { color: var(--white); background: var(--navy); }
.offer__merchant, .merchant { display: flex; align-items: center; gap: 12px; }
.merchant-logo { min-width: 130px; color: var(--navy); font-weight: 800; }
.offer__merchant strong, .offer__merchant b, .merchant b { min-width: 130px; color: var(--navy); }
.offer__badge, .badge, .merchant em { padding: 5px 9px; color: #d85c00; background: #fff1e7; border-radius: 999px; font-size: .72rem; font-style: normal; font-weight: 900; }
.offer__price, .price { display: grid; }
.offer__price strong, .price strong { color: var(--navy); font-size: 1.4rem; }
.offer__price small, .price small, .offer__note, .note { color: var(--muted); }
.offer__note, .note { font-size: .8rem; }
.offer__availability { display: grid; }
.freshness { margin-top: 6px; font-size: .72rem; font-weight: 700; }
.freshness--fresh { color: var(--green); }
.freshness--aging { color: var(--yellow); }
.freshness--stale { color: var(--red); }
.affiliate-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; }
.status { font-size: .88rem; font-weight: 800; }
.status::before { content: ""; width: 9px; height: 9px; margin-right: 7px; display: inline-block; border-radius: 50%; background: currentColor; }
.status--available, .status--ok, .status--in_stock, .ok { color: var(--green); }
.status--unavailable, .status--no, .status--out_of_stock, .no { color: var(--red); }
.status--unknown, .status--wait, .status--checking, .wait { color: var(--yellow); }
.status--historical, .freshness--historical { color: var(--green); }

.section--stock { background: #f8fbfd; }
.retailer-status-grid { margin-bottom: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.retailer-status-card { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 24px rgba(8,37,59,.05); }
.retailer-status-card__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.retailer-status-card__top > strong { color: var(--navy); font-size: 1.35rem; }
.retailer-status-card p { margin: 10px 0 4px; color: var(--muted); }
.retailer-status-card small { color: var(--muted); }
.monitor-state { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 850; }
.monitor-state::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px currentColor; opacity: .18; }
.monitor-state--active { color: var(--green); }
.monitor-state--delayed { color: var(--yellow); }
.stock-panel { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.stock-panel__heading { padding: 24px; display: flex; align-items: end; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); }
.stock-panel__heading h3 { margin: 0; color: var(--navy); font-size: 1.55rem; }
.stock-panel__heading > p { max-width: 480px; margin: 0; color: var(--muted); font-size: .85rem; }
.stock-empty { min-height: 145px; padding: 28px; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: left; }
.stock-empty__pulse { width: 18px; height: 18px; flex: 0 0 auto; background: var(--green); border: 5px solid #d8f0e4; border-radius: 50%; }
.stock-empty strong { color: var(--navy); }
.stock-empty p { margin: 4px 0 0; color: var(--muted); }
.stock-list { display: grid; }
.stock-hit { min-height: 92px; padding: 17px 22px; display: grid; grid-template-columns: 72px 1.15fr .65fr .75fr auto; align-items: center; gap: 18px; }
.stock-hit + .stock-hit { border-top: 1px solid var(--line); }
.stock-hit--recent { background: #fbfffd; box-shadow: inset 4px 0 var(--green); }
.stock-hit__merchant { color: var(--navy); font-weight: 900; }
.stock-hit > div:nth-child(2), .stock-hit__details, .stock-hit__time { display: grid; gap: 3px; }
.stock-hit > div:nth-child(2) span, .stock-hit__details span, .stock-hit__time small { color: var(--muted); font-size: .82rem; }
.stock-hit__details strong { color: var(--navy); }
.stock-hit__details small { color: var(--muted); font-size: .7rem; }
.stock-hit__type { color: var(--orange); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.stock-hit__link { min-width: 128px; white-space: nowrap; }
.stock-disclaimer { margin: 0; padding: 14px 22px; color: var(--muted); background: var(--soft); border-top: 1px solid var(--line); font-size: .78rem; }

.info-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.info-card, .info-grid > article, .info-grid > div { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.info-card p, .info-grid > article > p, .info-grid > div > p { color: var(--muted); }
.chart, .chart-placeholder { min-height: 210px; margin-top: 22px; display: grid; place-items: center; color: var(--muted); text-align: center; background: #fafcfd; border: 1px dashed #b7c7d2; border-radius: 14px; }
.history-stats { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.history-stats > div { padding: 16px; display: grid; gap: 6px; background: var(--soft); border-radius: 12px; }
.history-stats span, .history-period { color: var(--muted); font-size: .82rem; }
.history-stats strong { color: var(--navy); font-size: 1.15rem; }
.history-period { margin: 14px 0 0; }
.alert-form { margin-top: 18px; display: grid; gap: 12px; }
.alert-form label { display: grid; gap: 6px; color: var(--muted); font-size: .82rem; font-weight: 800; }
.alert-form .button { width: 100%; }
.alert-form .button--primary { color: #21150c; background: var(--orange); box-shadow: 0 10px 22px rgba(255,122,24,.22); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-top: 16px; padding: 11px 13px; border-radius: 9px; font-size: .88rem; font-weight: 700; }
.form-message--success { color: #0d6b40; background: #e6f6ee; border: 1px solid #b8e3cc; }
.form-message--error { color: #922f2f; background: #fff0f0; border: 1px solid #efc4c4; }
.privacy-note { margin-bottom: 0; font-size: .76rem; }
.mail, .newsletter-form { display: flex; flex-wrap: wrap; gap: 12px; }
.mail input, .newsletter-form input { flex: 1 1 220px; }

.spec-grid { margin-top: 25px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spec-grid > div, .spec-card { padding: 20px; display: grid; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.spec-grid span, .spec-card span { color: var(--muted); font-size: .82rem; }
.spec-grid b, .spec-grid strong, .spec-card b { color: var(--navy); }

.site-footer, footer { padding: 48px 0; color: rgba(255,255,255,.72); background: #061b2b; }
.site-footer__inner, .foot { display: grid; grid-template-columns: 1fr auto; gap: 70px; }
.site-footer p, footer p { max-width: 520px; margin: 8px 0; }
.site-footer a, footer a { color: inherit; text-decoration: none; }
.site-footer a:hover, footer a:hover { color: var(--white); }
.site-footer__links, .foot > div:last-child { display: grid; align-content: start; gap: 8px; }

@media (max-width: 850px) {
  .site-nav, .site-header nav, .top nav, .mvp { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .top nav.is-open, .site-header nav.is-open {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    z-index: 30;
    padding: 15px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 0 0 12px 12px;
    background: rgba(8,37,59,.99);
    box-shadow: 0 14px 30px rgba(0,0,0,.2);
  }
  .top nav.is-open a, .site-header nav.is-open a { padding: 11px 10px; }
  .hero__grid, .info-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr 1fr; }
  .stock-hit { grid-template-columns: 90px 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container, .wrap { width: calc(100% - 24px); }
  .hero__grid, .section { padding: 52px 0; }
  .hero__grid { min-height: auto; }
  .section__heading, .section-heading { align-items: start; flex-direction: column; }
  .offer, .spec-grid, .site-footer__inner, .foot { grid-template-columns: 1fr; }
  .retailer-status-grid, .stock-hit { grid-template-columns: 1fr; }
  .retailer-status-card__top, .stock-panel__heading { align-items: start; flex-direction: column; }
  .history-stats { grid-template-columns: 1fr; }
  .mail, .newsletter-form { flex-direction: column; }
  .offer .btn, .offer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Product comparison v0.18 */
.compare-hero { color: var(--white); background: radial-gradient(circle at 82% 25%, rgba(255,122,24,.28), transparent 26%), linear-gradient(135deg, var(--navy), var(--navy-2)); }
.compare-hero__inner { min-height: 390px; padding: 68px 0; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px; }
.compare-hero h1 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 4.8rem); line-height: .98; letter-spacing: -.06em; }
.compare-hero h1 span { color: #cfe2ef; }
.compare-hero p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.compare-hero__summary { padding: 26px; display: grid; gap: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(255,255,255,.08); }
.compare-hero__summary strong { margin-bottom: 4px; font-size: 1.2rem; }
.compare-hero__summary span { color: rgba(255,255,255,.8); }
.compare-intro { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.compare-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }
.compare-intro > p { max-width: 520px; margin: 0; color: var(--muted); }
.compare-products { max-width: 900px; margin: 0 auto 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.compare-product { position: relative; overflow: hidden; display: grid; grid-template-rows: 245px 1fr; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 30px rgba(8,37,59,.07); }
.compare-product__badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 6px 10px; color: #b94e00; background: #fff1e7; border-radius: 999px; font-size: .72rem; font-weight: 900; }
.compare-product__visual { padding: 24px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f7fafc, #fff8f3); }
.compare-product__visual img { width: 100%; height: 215px; object-fit: contain; mix-blend-mode: multiply; }
.compare-product__body { padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.compare-product__body h2 { margin: 0; color: var(--navy); font-size: 1.55rem; }
.compare-product__body p { margin: 5px 0 20px; color: var(--muted); }
.compare-product__body .button { margin-top: auto; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(8,37,59,.06); }
.compare-table { width: 100%; min-width: 850px; border-collapse: collapse; background: var(--white); }
.compare-table th, .compare-table td { padding: 17px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare-table thead th { color: var(--white); background: var(--navy); font-size: 1rem; }
.compare-table thead th:first-child { width: 23%; }
.compare-table tbody > tr > th { color: var(--navy); font-size: .88rem; }
.compare-table td { color: var(--text); font-size: .9rem; }
.compare-table__group th { padding: 13px 18px; color: var(--orange) !important; background: var(--soft); font-size: .76rem !important; letter-spacing: .1em; text-transform: uppercase; }
.compare-table tr.is-different { background: #fffaf5; }
.compare-table tr.is-different > th { box-shadow: inset 4px 0 var(--orange); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-verdict { margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.compare-verdict article { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.compare-verdict span { color: var(--orange); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.compare-verdict h3 { margin: 7px 0 5px; color: var(--navy); font-size: 1.35rem; }
.compare-verdict p, .compare-source-note { color: var(--muted); }
.compare-verdict p { margin: 0; }
.compare-source-note { margin: 22px 0 0; font-size: .78rem; }
@media (max-width: 850px) {
  .compare-hero__inner, .compare-products { grid-template-columns: 1fr; }
  .compare-hero__inner { gap: 28px; }
  .compare-intro { align-items: flex-start; flex-direction: column; }
  .compare-product { grid-template-columns: .8fr 1.2fr; grid-template-rows: 1fr; }
  .compare-verdict { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .compare-hero__inner { min-height: auto; padding: 52px 0; }
  .compare-product { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
}

/* Production polish v0.21 */
.live-badge { padding: 6px 11px; color: #bdebd3; border: 1px solid rgba(189,235,211,.35); border-radius: 999px; font-size: .75rem; font-weight: 800; }
.hero__grid { min-height: 560px; padding-top: 54px; padding-bottom: 54px; }
.hero h1 { font-size: clamp(2.7rem, 5.2vw, 4.55rem); }
.trust-row span { position: relative; padding-left: 14px; }
.trust-row span::before { content: ''; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: #47c98a; }
.product-card--best { border: 2px solid rgba(22,138,85,.45); box-shadow: 0 20px 50px rgba(22,138,85,.17); }
.product-card--best .product-card__label,
.product-card--best .product-card__price,
.product-card--best .status { color: var(--green); }
.product-card__price { display: block; text-decoration: none; }
.product-card__price:hover { text-decoration: underline; text-underline-offset: 5px; }
.offers { display: flex; flex-direction: column; }
.offer--amazon-de { order: 10; }
.offer--solarhandel24 { order: 20; }
.offer--joybuy { order: 30; }
.offer--obi { order: 40; }
.offer--toom { order: 50; }
.offer--hornbach { order: 60; }
.offer--bauhaus { order: 70; }
.offer--best { background: linear-gradient(90deg, rgba(22,138,85,.055), rgba(22,138,85,.015)); box-shadow: inset 4px 0 var(--green); }
.offer__button { width: 168px; min-width: 168px; padding-left: 12px; padding-right: 12px; white-space: nowrap; }
.status--in_stock, .status--available { color: var(--green); }
.status--checking, .status--unknown { color: #8a6700; }
.status--out_of_stock { color: var(--red); }
.status--preorder { color: #9a6500; }
.offer__price s { color: var(--muted); font-size: .82rem; }
.stock-hit--recent { background: #f6fcf9; }
@media (max-width: 850px) { .live-badge { display: none; } }

/* Production release v0.21 */
.hero__grid { min-height: 500px; padding-top: 42px; padding-bottom: 42px; }
.product-card__visual { min-height: 255px; }
.product-card__image { height: 225px; }
.product-card__body { padding: 22px 26px; }
.offer__availability { display: grid; gap: 4px; }
.availability-detail { color: var(--muted); font-size: .78rem; }
.offer--best .offer__price strong,
.offer--best .status,
.offer--best .availability-detail { color: var(--green); }
.history-chart { height: 150px; margin-top: 22px; padding: 16px 12px 0; display: flex; align-items: end; gap: 5px; border-bottom: 1px solid var(--line); border-radius: 12px 12px 0 0; background: linear-gradient(180deg, #f8fbfc, #eef6f2); }
.history-chart__bar { min-width: 5px; flex: 1 1 0; height: var(--bar-height); display: flex; align-items: stretch; cursor: help; }
.history-chart__bar i { width: 100%; display: block; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, #39b779, var(--green)); }
.history-chart__bar:hover i { background: var(--orange); }
.history-chart__legend { padding-top: 7px; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .72rem; }
.history-chart__legend strong { color: var(--navy); }
.legal-page { min-height: 65vh; padding: 70px 0; background: var(--soft); }
.legal-page__inner { max-width: 900px; padding: 38px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 12px 34px rgba(8,37,59,.07); }
.legal-page h1 { margin: 0 0 32px; color: var(--navy); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.legal-page h2 { margin: 30px 0 8px; color: var(--navy); font-size: 1.25rem; }
.legal-page p { color: var(--muted); }
.legal-page a { color: var(--navy-2); }
.legal-warning { padding: 16px; color: #7a5200; border: 1px solid #edcf8b; border-radius: 10px; background: #fff8e8; font-weight: 700; }
@media (max-width: 560px) { .legal-page { padding: 30px 0; } .legal-page__inner { padding: 24px; } }

/* Compact stock-map legend. */
.map-legend {
  display: grid;
  gap: 5px;
  min-width: 158px;
  padding: 11px 13px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 5px 16px rgba(8,37,59,.12);
  font-size: .72rem;
  line-height: 1.25;
}
.map-legend strong { margin-bottom: 2px; font-size: .76rem; }
.map-legend span { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.map-legend__dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; }
.map-legend__dot--available { background: var(--green); }
.map-legend__dot--low { background: var(--orange); }
.map-legend__dot--unavailable { background: #d9252a; }
.map-legend__dot--unknown { background: #9aa6ad; }
@media (max-width: 560px) {
  .map-legend { min-width: 140px; padding: 8px 10px; font-size: .66rem; }
}
