
:root {
  --bg: #F2F6FC;
  --surface: #FFFFFF;
  --surface-alt: #E8F0FA;
  --ink: #0B2C52;
  --ink-soft: #55708F;
  --gold: #1C5FAE;
  --gold-strong: #0F3F73;
  --navy: #0B2C52;
  --red: #14548F;
  --blue: #2C7BC7;
  --accent-ink: #FFFFFF;
  --line: #D7E3F1;
  --shadow: 0 1px 2px rgba(11,44,82,0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #071B33;
    --surface: #0D2745;
    --surface-alt: #123256;
    --ink: #EAF2FC;
    --ink-soft: #A9C1DC;
    --gold: #6FA8E8;
    --gold-strong: #9CC5F2;
    --navy: #EAF2FC;
    --red: #5C9BE0;
    --blue: #6FA8E8;
    --accent-ink: #071B33;
    --line: #1B3B60;
    --shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
}
:root[data-theme="dark"] {
  --bg: #071B33; --surface: #0D2745; --surface-alt: #123256;
  --ink: #EAF2FC; --ink-soft: #A9C1DC; --gold: #6FA8E8; --gold-strong: #9CC5F2;
  --navy: #EAF2FC; --red: #5C9BE0; --blue: #6FA8E8; --accent-ink: #071B33;
  --line: #1B3B60; --shadow: 0 1px 3px rgba(0,0,0,0.5);
}
:root[data-theme="light"] {
  --bg: #F2F6FC; --surface: #FFFFFF; --surface-alt: #E8F0FA;
  --ink: #0B2C52; --ink-soft: #55708F; --gold: #1C5FAE; --gold-strong: #0F3F73;
  --navy: #0B2C52; --red: #14548F; --blue: #2C7BC7; --accent-ink: #FFFFFF;
  --line: #D7E3F1; --shadow: 0 1px 2px rgba(11,44,82,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2 { margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
a { color: inherit; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* ---- top bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 760px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16.5px; letter-spacing: 0.01em; color: var(--gold-strong); }
.brand span { color: var(--ink-soft); font-weight: 500; }
.brand-logo { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--line); flex: 0 0 auto; }
.hero-logo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--surface), 0 0 0 4px var(--gold), 0 14px 28px rgba(20,33,62,0.22); margin-bottom: 18px; position: relative; z-index: 1; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--accent-ink);
  font-weight: 600; font-size: 13.5px;
  padding: 9px 16px; border-radius: 100px; text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.cta-pill:active { transform: scale(0.96); }

/* ---- hero ---- */
.hero {
  padding: 44px 0 30px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% -25%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 60%),
    radial-gradient(90% 70% at 100% 120%, color-mix(in srgb, var(--red) 10%, transparent), transparent 55%);
}
.eyebrow {
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 10px;
}
.hero h1 { font-size: clamp(30px, 6.5vw, 40px); font-weight: 800; line-height: 1.12; color: var(--navy); }
.hero h1 em { font-style: normal; color: var(--gold-strong); }
.hero p { max-width: 46ch; margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; }
.hero-meta { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-meta div { font-size: 13px; color: var(--ink-soft); }
.hero-meta b { display: block; font-size: 21px; color: var(--ink); font-weight: 700; }

/* ---- category nav ---- */
.catnav-outer { border-bottom: 1px solid var(--line); background: var(--bg); position: sticky; top: 57px; z-index: 15; }
.catnav { display: flex; gap: 8px; overflow-x: auto; padding: 12px 20px; max-width: 760px; margin: 0 auto; scrollbar-width: none; }
.catnav::-webkit-scrollbar { display: none; }
.catnav a {
  flex: 0 0 auto; font-size: 13px; font-weight: 500; text-decoration: none;
  padding: 7px 13px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--ink-soft); background: var(--surface);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.catnav a:hover { border-color: var(--gold); color: var(--ink); }

/* ---- category sections ---- */
.category { padding: 46px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(18px); filter: blur(6px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1), filter 0.7s cubic-bezier(.16,1,.3,1); }
.category.is-visible { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .category { opacity: 1; transform: none; transition: none; } }
.category:nth-child(even) { background: var(--surface); }
.category-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.category-head h2 { font-size: clamp(21px, 3.6vw, 25px); font-weight: 700; color: var(--gold-strong); }
.category-count { font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.product-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 560px) { .product-list { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.product-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.product-list li svg { flex: 0 0 auto; margin-top: 4px; width: 11px; height: 11px; color: var(--gold); }
.category.tone-red .category-head h2 { color: var(--red); }
.category.tone-red .product-list li svg { color: var(--red); }
.category.tone-blue .category-head h2 { color: var(--blue); }
.category.tone-blue .product-list li svg { color: var(--blue); }

/* ---- product photo grid (categories with real photos) ---- */
.product-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.product-card .shot { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-alt); }
.product-card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card .label { padding: 11px 12px 4px; font-size: 15px; font-weight: 600; text-align: center; color: var(--ink); }
.product-card.no-photo .shot { display: flex; align-items: center; justify-content: center; }
.product-card.no-photo .shot svg { width: 34px; height: 34px; color: var(--gold); opacity: 0.6; }
.product-card.no-photo .label { color: var(--ink-soft); font-weight: 500; }

/* ---- footer CTA ---- */
.closer {
  padding: 64px 0 70px; text-align: center; position: relative; overflow: hidden; color: #FBF8EF;
  background:
    radial-gradient(120% 140% at 50% -10%, rgba(111,168,232,0.35) 0%, transparent 55%),
    radial-gradient(90% 90% at 100% 120%, rgba(28,95,174,0.35) 0%, transparent 60%),
    linear-gradient(160deg, #0B2C52 0%, #071B33 100%);
}
.closer h2 { font-size: clamp(24px, 4.5vw, 30px); color: #FBF8EF; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.closer p { color: rgba(251,248,239,0.78); margin: 0 0 26px; }
.closer .cta-pill { font-size: 15px; padding: 13px 26px; box-shadow: 0 16px 32px rgba(0,0,0,0.35); }
.wa-preview { max-width: 300px; margin: 0 auto 26px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 44px rgba(0,0,0,0.35); text-align: left; }
.wa-preview-head { background: #075E54; color: #fff; padding: 10px 14px; display: flex; align-items: center; gap: 9px; }
.wa-preview-head .wa-avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 14px; flex: 0 0 auto; }
.wa-preview-head .wa-name { font-weight: 700; font-size: 12.5px; }
.wa-preview-head .wa-status { font-size: 10.5px; opacity: 0.72; }
.wa-bubble-out { background: #E7DFD6; padding: 14px 12px; }
.wa-bubble-out span { display: inline-block; background: #D9FDD3; border-radius: 10px 10px 2px 10px; padding: 8px 10px; font-size: 12.5px; line-height: 1.5; color: #111; max-width: 92%; box-shadow: 0 1px 1px rgba(0,0,0,0.08); }
.footnote { text-align: center; font-size: 12px; color: var(--ink-soft); padding-bottom: 36px; }

/* ---- topbar actions / cart button ---- */
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); cursor: pointer;
}
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 100px; background: var(--red); color: var(--accent-ink);
  font-size: 10.5px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.cart-count[hidden] { display: none; }

/* ---- search ---- */
.search-outer { border-bottom: 1px solid var(--line); padding: 26px 0 30px; background: var(--bg); }
.search-box {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--gold); border-radius: 100px; padding: 15px 22px;
  background: var(--surface); box-shadow: 0 10px 26px rgba(28,95,174,0.14);
}
.search-box svg { width: 19px; height: 19px; color: var(--gold); flex: 0 0 auto; }
.search-box input {
  border: none; outline: none; background: transparent; flex: 1;
  font-size: 16.5px; color: var(--ink); font-family: inherit;
}
.search-box input::placeholder { color: var(--ink-soft); }
.search-box button#searchClear {
  border: none; background: var(--surface-alt); color: var(--ink-soft);
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 15px; line-height: 1;
  flex: 0 0 auto;
}
.search-hint { margin: 10px 4px 0; font-size: 13px; color: var(--ink-soft); min-height: 1em; }

/* ---- unified product grid (all categories) ---- */
.product-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); cursor: pointer; text-align: left;
  padding: 0; font: inherit; color: inherit; transition: transform 0.2s var(--card-ease, ease), box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,33,62,0.16); border-color: var(--gold); }
.product-card:active { transform: scale(0.98); }
.product-card .shot { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-alt); }
.product-card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card .hook { padding: 10px 10px 0; font-size: 12.5px; font-weight: 700; text-align: center; color: var(--ink); line-height: 1.32; }
.product-card .label { padding: 4px 10px 3px; font-size: 11px; font-weight: 500; text-align: center; color: var(--ink-soft); }
.product-card .sub { padding: 0 10px 11px; font-size: 11px; text-align: center; color: var(--ink-soft); }
.product-card.no-photo .shot { display: flex; align-items: center; justify-content: center; }
.product-card.no-photo .shot svg { width: 34px; height: 34px; color: var(--gold); opacity: 0.6; }
.product-card.hidden-by-search { display: none; }
.category.hidden-by-search { display: none; }
.category.search-mode .category-count { display: none; }

/* ---- overlay / product modal ---- */
.overlay {
  position: fixed; inset: 0; background: rgba(10,15,30,0.55); z-index: 40;
  backdrop-filter: blur(2px);
}
.product-modal {
  position: fixed; z-index: 50; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 24px)); max-height: calc(100vh - 32px); overflow-y: auto;
  background: var(--surface); border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.product-modal[hidden] { display: none; }
.overlay[hidden] { display: none; }
.modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(20,33,62,0.55); color: #fff; font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-shot { aspect-ratio: 1 / 1; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; position: relative; }
.modal-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-shot svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.5; }
.modal-hook-wrap { padding: 20px 22px 4px; text-align: center; }
.modal-hook { font-size: clamp(19px, 5vw, 23px); font-weight: 800; color: var(--navy); line-height: 1.25; letter-spacing: -0.01em; text-wrap: balance; }
.modal-body { padding: 14px 20px 22px; }
.modal-cat { margin: 0 0 4px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; text-align: center; }
.modal-body h3 { font-size: 17px; font-weight: 700; color: var(--ink-soft); margin: 0 0 10px; text-align: center; }
.modal-desc { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.55; text-align: center; }
.modal-price { font-size: 13.5px; color: var(--ink); margin-bottom: 16px; font-weight: 600; }
.modal-actions { display: flex; align-items: center; gap: 12px; }
.qty-stepper { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }
.qty-stepper button { border: none; background: none; font-size: 17px; color: var(--ink); cursor: pointer; width: 20px; }
#qtyValue { font-variant-numeric: tabular-nums; font-weight: 700; min-width: 14px; text-align: center; }
.btn-add-cart {
  flex: 1; border: none; background: var(--navy); color: var(--bg);
  font-weight: 700; font-size: 14.5px; padding: 12px 16px; border-radius: 100px; cursor: pointer;
}
:root[data-theme="dark"] .btn-add-cart, .btn-add-cart { background: var(--red); color: var(--accent-ink); }

/* ---- cart drawer ---- */
.cart-drawer {
  position: fixed; z-index: 50; top: 0; right: 0; height: 100%; width: min(360px, 100vw);
  background: var(--surface); box-shadow: -12px 0 30px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { font-size: 17px; }
.cart-drawer-head button { border: none; background: none; font-size: 22px; color: var(--ink-soft); cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin: -8px -8px -8px 0; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 20px; }
.cart-empty { color: var(--ink-soft); font-size: 14px; padding: 24px 0; text-align: center; }
.cart-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-row .name { flex: 1; font-size: 13.5px; font-weight: 600; }
.cart-row .qty-stepper { padding: 3px 10px; gap: 8px; }
.cart-row .qty-stepper button { font-size: 15px; width: 16px; }
.cart-row .remove { border: none; background: none; color: var(--ink-soft); font-size: 16px; cursor: pointer; }
.cart-footer { padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.cart-note { font-size: 12px; color: var(--ink-soft); margin: 0 0 12px; text-align: center; }
.cart-checkout { display: flex; justify-content: center; width: 100%; padding: 13px 16px; font-size: 14.5px; }

/* ---- mobile refinements ---- */
@media (max-width: 480px) {
  .topbar-inner { padding: 12px 16px; gap: 8px; }
  .brand { font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand span { display: none; }
  .topbar-actions { gap: 8px; flex: 0 0 auto; }
  .cta-pill { padding: 8px 12px; font-size: 12.5px; }
  .cart-btn { width: 34px; height: 34px; }
  .hero { padding: 24px 0 18px; }
  .hero-logo { width: 64px; height: 64px; margin-bottom: 12px; }
  .hero p { display: none; }
  .hero-meta { margin-top: 16px; gap: 16px; }
  .trust-bar { padding: 10px 0; }
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; flex-wrap: wrap; gap: 8px 14px; justify-content: normal; }
  .trust-item { white-space: normal; }
  .quiz-outer { padding: 18px 0 4px; }
  .quiz-sub { display: none; }
  .quiz-title { margin-bottom: 12px; }
  .search-outer { padding: 14px 0 18px; }
  .search-box { padding: 13px 16px; }
  .search-box input { font-size: 15px; }
  .search-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; -ms-overflow-style: none; scrollbar-width: none; }
  .search-chips::-webkit-scrollbar { display: none; }
  .search-chip { flex: 0 0 auto; }
  .modal-actions { flex-wrap: wrap; }
  .btn-add-cart { flex: 1 1 100%; order: 2; }
  .qty-stepper { order: 1; }
  .cart-drawer { width: calc(100vw - 44px); }
  .product-grid { gap: 12px; }
}
@media (max-width: 360px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card .label { font-size: 13px; padding: 9px 10px 3px; }
}

.search-results { padding: 22px 0 40px; }
.product-card .sub { padding: 0 12px 13px; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; text-align: center; color: var(--gold); }

/* ---- search chips ---- */
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.search-chip {
  border: 1px solid var(--line); background: var(--surface-alt); color: var(--ink-soft);
  font-size: 12.5px; font-weight: 500; padding: 7px 14px; border-radius: 100px; cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.search-chip:hover { border-color: var(--gold); color: var(--ink); background: var(--surface); }

/* ---- terms & conditions ---- */
.terms { border-top: 1px solid var(--line); background: var(--surface); }
.terms summary {
  cursor: pointer; list-style: none; padding: 16px 20px; max-width: 760px; margin: 0 auto;
  font-size: 13px; font-weight: 600; color: var(--ink-soft); text-align: center;
}
.terms summary::-webkit-details-marker { display: none; }
.terms summary:hover { color: var(--ink); }
.terms-body { padding: 0 20px 24px; max-width: 620px; }
.terms-body p { font-size: 12.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 10px; }

/* ---- desktop: bigger product cards ---- */
@media (min-width: 900px) {
  .wrap { max-width: 1100px; }
  .product-grid { gap: 30px; }
  .product-card { border-radius: 30px; }
  .product-card .hook { font-size: 15px; padding: 16px 16px 0; }
  .product-card .label { font-size: 14px; padding: 5px 16px 5px; }
  .product-card .sub { font-size: 12.5px; padding: 0 16px 16px; }
  .hero h1 { font-size: clamp(34px, 4.2vw, 46px); }
  .hero p { font-size: 17px; }
}

/* ---- impact pass: progress bar, blobs, entrance motion ---- */
#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--red)); z-index: 60; transition: width 0.1s ease-out; }
@media (prefers-reduced-motion: reduce) { #scrollProgress { transition: none; } }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; animation: blobFloat 16s ease-in-out infinite; pointer-events: none; }
.blob1 { width: 300px; height: 300px; background: var(--gold); opacity: 0.22; top: -12%; left: -10%; }
.blob2 { width: 260px; height: 260px; background: var(--red); opacity: 0.16; bottom: -16%; right: -8%; animation-delay: 3s; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3%,4%) scale(1.07); } }
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero-anim { opacity: 0; transform: translateY(16px); filter: blur(8px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1), filter 0.9s cubic-bezier(.16,1,.3,1); }
.hero-anim.show { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .hero-anim { opacity: 1; transform: none; filter: none; transition: none; } }

.hero h1 { letter-spacing: -0.02em; }

/* ---- patent/quality badges (modal) ---- */
.modal-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 12px; justify-content: center; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.02em; padding: 5px 10px; border-radius: 100px;
  background: color-mix(in srgb, var(--gold) 14%, var(--surface)); color: var(--gold-strong);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--line));
}

/* ---- unified product photo tone ---- */
.product-card .shot img, .modal-shot img { filter: saturate(0.94) contrast(1.03) brightness(1.01); }

/* ---- trust bar ---- */
.trust-bar { background: var(--surface-alt); border-bottom: 1px solid var(--line); padding: 14px 0; }
.trust-bar-inner { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 auto; }
@media (max-width: 640px) { .trust-item { font-size: 11px; } .trust-item svg { width: 14px; height: 14px; } }

/* ---- guided quiz ---- */
.quiz-outer { padding: 30px 0 8px; text-align: center; background: var(--bg); }
.quiz-title { font-size: clamp(19px, 3.6vw, 24px); font-weight: 800; color: var(--navy); margin: 0 0 4px; letter-spacing: -0.01em; }
.quiz-sub { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 20px; }
.quiz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .quiz-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 900px) { .quiz-grid { gap: 16px; } }
.quiz-option {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; border-radius: 22px; border: 1px solid var(--line);
  background: var(--surface); cursor: pointer; font: inherit; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.quiz-option:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(11,44,82,0.12); border-color: var(--gold); }
.quiz-option:active { transform: scale(0.97); }
.quiz-option .quiz-icon {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface-alt); color: var(--gold);
}
.quiz-option .quiz-icon svg { width: 22px; height: 22px; }
.quiz-option span.quiz-label { font-size: 13px; font-weight: 700; }
