/* ─────────────────────────────────────────────────────────────
   Bloomscalp site.css — shared by index.html and product.html.
   Palette is drawn from the logo: warm brown-black ink on a bone
   canvas, with the 630 nm red damped to terracotta as the accent.
   ───────────────────────────────────────────────────────────── */
:root {
    /* Warm neutrals, pulled from the logo's brown-black rather than the old cold grey. */
    --canvas:      #FBF9F6;
    --band:        #F2EDE6;
    --panel:       #F7F3ED;
    --ink:         #332E29;
    --ink-deep:    #241F1B;
    --ink-soft:    #4A423A;

    /* The accent is the 630 nm light itself, damped to terracotta so it reads
       as an accent rather than an alarm. */
    --accent:      #C4553D;
    --accent-deep: #A8442F;
    --accent-glow: rgba(196, 85, 61, 0.22);

    --muted:      rgba(51, 46, 41, 0.66);
    --quiet:      rgba(51, 46, 41, 0.45);
    --rule:       rgba(51, 46, 41, 0.15);
    --rule-soft:  rgba(51, 46, 41, 0.08);
    --rule-dark:  rgba(255, 255, 255, 0.16);
    --muted-dark: rgba(255, 255, 255, 0.66);

    --radius: 4px;
    --ui:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--canvas); color: var(--ink); font-family: var(--ui);
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }
  button { font-family: inherit; cursor: pointer; }
  ::selection { background: var(--ink); color: var(--canvas); }

  h1, h2, h3 { font-weight: 600; line-height: 1.06; letter-spacing: -0.022em; }
  .mono {
    font-family: var(--mono); font-size: 11px; font-weight: 400;
    letter-spacing: 0.13em; text-transform: uppercase;
  }
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
  .sec { padding: 104px 0; }
  .sec--band { background: var(--band); }
  .sec--dark { background: var(--ink-deep); color: var(--canvas); }
  .sec--tight { padding: 72px 0; }

  .eyebrow {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--accent-deep); margin-bottom: 18px;
  }
  .sec-h { font-size: clamp(30px, 3.6vw, 46px); max-width: 20ch; }
  .sec-h--center { margin: 0 auto; text-align: center; }
  .lede { font-size: 17px; line-height: 1.62; color: var(--muted); max-width: 62ch; margin-top: 18px; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--ink); color: var(--canvas); border: 1px solid var(--ink);
    border-radius: var(--radius); padding: 15px 28px;
    font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -0.005em;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
  }
  .btn:hover { background: var(--ink-deep); border-color: var(--ink-deep); }
  .btn--accent { background: var(--accent); border-color: var(--accent); }
  .btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
  .btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
  .btn--ghost:hover { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
  .btn--light { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
  .btn--block { width: 100%; }
  .textlink {
    font-size: 15px; font-weight: 500; text-decoration: none;
    border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  }
  .textlink:hover { border-color: var(--ink); }

  .stars { display: inline-flex; gap: 3px; color: var(--accent); line-height: 1; }
  .stars svg { width: 14px; height: 14px; }

  /* ── Announcement ── */
  .announce { background: var(--ink-deep); color: var(--canvas); text-align: center; padding: 10px 16px; }
  .announce-track { position: relative; height: 15px; }
  .announce-item {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px;
    opacity: 0; transition: opacity .5s ease; font-size: 11px;
  }
  .announce-item.is-active { opacity: 1; }
  .announce .sep { color: var(--accent); }

  /* ── Nav ── */
  nav.top {
    position: sticky; top: 0; z-index: 90; background: rgba(251, 249, 246, 0.88);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px; height: 68px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .lockup { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
  .lockup svg { width: 30px; height: 30px; flex: none; }
  .lockup .word { font-size: 15.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a { font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--ink-soft); }
  .nav-links a:hover, .nav-links a.active { color: var(--ink); }
  .nav-right { display: flex; align-items: center; gap: 14px; }
  .icon-btn { position: relative; background: none; border: 0; color: var(--ink); display: flex; padding: 6px; }
  .icon-btn svg { width: 21px; height: 21px; }
  .cart-count {
    position: absolute; top: -1px; right: -3px; min-width: 16px; height: 16px;
    background: var(--accent); color: #fff; border-radius: 8px;
    font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; padding: 0 4px;
  }
  .nav-burger { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }
  .nav-burger svg { width: 22px; height: 22px; }
  .nav-mobile { display: none; flex-direction: column; padding: 8px 40px 20px; border-top: 1px solid var(--rule-soft); }
  .nav-mobile.is-open { display: flex; }
  .nav-mobile a { padding: 12px 0; text-decoration: none; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--rule-soft); }

  /* ── Hero ── */
  .hero { padding: 84px 0 0; }
  .hero-grid {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1.02fr 1fr; gap: 72px; align-items: center;
  }
  .hero h1 { font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -0.032em; }
  .hero h1 em { font-style: normal; color: var(--accent-deep); }
  .hero .sub { font-size: 17.5px; line-height: 1.6; color: var(--muted); margin-top: 22px; max-width: 46ch; }
  .hero-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
  .hero-rating .txt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.09em; color: var(--muted); text-transform: uppercase; }
  .hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
  .hero-media { position: relative; }
  .hero-media img { width: 100%; border-radius: var(--radius); }
  .hero-badge {
    position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px;
    background: rgba(36, 31, 27, 0.9); color: var(--canvas); padding: 8px 13px; border-radius: 999px;
  }
  .hero-badge .mono { font-size: 10px; }
  .hero-proof {
    position: absolute; top: 18px; right: 18px; z-index: 2;
    display: flex; align-items: center; gap: 8px;
    background: var(--canvas); color: var(--ink);
    padding: 8px 14px 8px 11px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: -0.008em;
    box-shadow: 0 2px 10px rgba(36, 31, 27, 0.14);
  }
  .hero-proof svg { width: 18px; height: 18px; flex: none; color: var(--accent); }
  .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2.4s infinite; }
  @keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(196,85,61,0); } 100% { box-shadow: 0 0 0 0 rgba(196,85,61,0); } }

  /* ── Feature grid (four benefits) ──
     Cards rather than rule-separated columns: the tinted panel gives each
     benefit its own object, and the ringed icon carries the accent. */
  .feats { margin-top: 84px; }
  .feats-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .feat {
    background: var(--band); border-radius: 18px;
    padding: 40px 26px 34px; text-align: center;
  }
  .feat-ring {
    display: flex; align-items: center; justify-content: center;
    width: 88px; height: 88px; margin: 0 auto 24px;
    border: 1.5px solid var(--accent); border-radius: 50%; color: var(--accent-deep);
  }
  .feat-ring svg { width: 32px; height: 32px; stroke-width: 1.5; }
  .feat b { display: block; font-size: 17px; font-weight: 700; letter-spacing: -0.012em; margin-bottom: 8px; }
  .feat-sub { display: block; font-size: 13px; color: var(--muted); line-height: 1.55; }

  /* ── Tabs (in actie) ── */
  .tabs { display: flex; gap: 8px; margin: 36px 0 34px; flex-wrap: wrap; }
  .tab {
    background: transparent; border: 1px solid var(--rule); border-radius: 999px;
    padding: 9px 20px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
    transition: background .16s ease, color .16s ease, border-color .16s ease;
  }
  .tab:hover { border-color: var(--ink); }
  .tab.is-active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
  .panes { position: relative; }
  .pane { display: none; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
  .pane.is-active { display: grid; }
  .pane img { width: 100%; border-radius: var(--radius); }
  .pane .step-n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; color: var(--accent-deep); }
  .pane h3 { font-size: 27px; margin: 12px 0 14px; }
  .pane p { font-size: 16px; line-height: 1.62; color: var(--muted); }

  /* ── Testimonials ── */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
  .quote { background: var(--canvas); border: 1px solid var(--rule-soft); border-radius: var(--radius); padding: 28px 26px; }
  .sec--band .quote { background: var(--canvas); }
  .rtitle { font-size: 16.5px; font-weight: 600; margin: 14px 0 9px; }
  .quote p { font-size: 14.5px; line-height: 1.62; color: var(--muted); }
  .who { margin-top: 18px; font-size: 12.5px; color: var(--quiet); }
  .who b { color: var(--ink); font-weight: 600; }
  .rev-top { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; margin-top: 40px; }
  .rev-score .big { font-size: 52px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
  .rev-score .cnt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--quiet); margin-top: 9px; text-transform: uppercase; }
  .rev-bars { display: grid; gap: 7px; max-width: 420px; }
  .rev-bar { display: grid; grid-template-columns: 32px 1fr 34px; gap: 12px; align-items: center; font-size: 11.5px; color: var(--quiet); }
  .rev-bar .track { height: 4px; background: var(--rule-soft); border-radius: 2px; overflow: hidden; }
  .rev-bar .fill { display: block; height: 100%; background: var(--accent); }
  .rev-cta { margin-top: 36px; }

  /* ── Product / buy block ── */
  .product { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 44px; }
  .product-media img { width: 100%; border-radius: var(--radius); }
  .product-info h2 { font-size: 32px; }
  .product-rating { display: flex; align-items: center; gap: 11px; margin: 14px 0 18px; }
  .product-rating .mono { color: var(--quiet); font-size: 10.5px; }
  .product-desc { font-size: 15.5px; line-height: 1.62; color: var(--muted); }
  .price { font-size: 34px; font-weight: 700; letter-spacing: -0.028em; margin: 24px 0 20px; }
  .spec { border-top: 1px solid var(--rule-soft); margin-bottom: 26px; }
  .spec .r { display: grid; grid-template-columns: 34% 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--rule-soft); }
  .spec dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--quiet); padding-top: 2px; }
  .spec dd { font-size: 14.5px; color: var(--ink-soft); }
  .product-trust { margin-top: 16px; font-size: 12.5px; color: var(--quiet); text-align: center; }
  .pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
  .pay span {
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.07em;
    border: 1px solid transparent; border-radius: 3px; padding: 5px 9px;
    color: #FFFFFF; font-weight: 500;
  }
  /* Each badge carries the scheme's own brand colour. */
  .pay-ideal { background: #CC0066; }   /* iDEAL magenta */
  .pay-visa  { background: #1A1F71; }   /* Visa blue */
  .pay-mc    { background: #EB001B; }   /* Mastercard red */
  .pay-pp    { background: #003087; }   /* PayPal blue */
  .pay-ap    { background: #000000; }   /* Apple Pay black */

  /* ── Before / after ── */
  .ba {
    position: relative; aspect-ratio: 16 / 9; overflow: hidden; user-select: none;
    cursor: ew-resize; margin-top: 40px; border-radius: var(--radius); border: 1px solid var(--rule);
  }
  .ba-panel { position: absolute; inset: 0; }
  .ba-after  { background: url("bloomscalp-after.jpg")  center / cover no-repeat; }
  .ba-before { background: url("bloomscalp-before.jpg") center / cover no-repeat; clip-path: inset(0 50% 0 0); }
  .ba-label {
    position: absolute; top: 14px; font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.11em; text-transform: uppercase; padding: 6px 11px; border-radius: 3px;
    background: var(--canvas); color: var(--ink);
  }
  .ba-before .ba-label { left: 14px; }
  .ba-after  .ba-label { right: 14px; background: var(--ink-deep); color: var(--canvas); }
  .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--canvas); transform: translateX(-50%); }
  .ba-knob {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; border-radius: 50%; background: var(--canvas); color: var(--ink);
    display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(36,31,27,.22);
  }
  .ba-knob svg { width: 19px; height: 19px; }
  .ba-caption { margin-top: 14px; font-size: 12.5px; color: var(--quiet); }

  /* ── Timeline (what to expect) ── */
  .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .tl { border-top: 2px solid var(--accent); padding-top: 20px; }
  .tl .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); }
  .tl h3 { font-size: 19px; margin: 11px 0 9px; }
  .tl p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

  /* ── FAQ ── */
  .faq { margin-top: 40px; border-top: 1px solid var(--rule); }
  .faq details { border-bottom: 1px solid var(--rule); }
  .faq summary {
    list-style: none; cursor: pointer; padding: 22px 0; font-size: 17px; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq .ico { position: relative; width: 13px; height: 13px; flex: none; }
  .faq .ico::before, .faq .ico::after {
    content: ''; position: absolute; background: var(--ink); transition: transform .2s ease;
  }
  .faq .ico::before { top: 6px; left: 0; width: 13px; height: 1.5px; }
  .faq .ico::after  { left: 6px; top: 0; width: 1.5px; height: 13px; }
  .faq details[open] .ico::after { transform: scaleY(0); }
  .faq .answer { padding: 0 0 24px; font-size: 15.5px; line-height: 1.66; color: var(--muted); max-width: 76ch; }

  /* ── Guarantees ── */
  .guards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .guard { background: var(--panel); border-radius: var(--radius); padding: 32px 28px; }
  .guard .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); }
  .guard h3 { font-size: 20px; margin: 12px 0 10px; }
  .guard p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

  /* ── Newsletter ── */
  .news-sec { background: var(--ink-deep); color: var(--canvas); padding: 84px 0; text-align: center; }
  .news-sec h2 { font-size: clamp(26px, 3vw, 38px); max-width: 20ch; margin: 0 auto 14px; }
  .news-sec p { color: var(--muted-dark); font-size: 15.5px; max-width: 52ch; margin: 0 auto 28px; }
  .news { display: flex; gap: 9px; max-width: 430px; margin: 0 auto; }
  .news input {
    flex: 1; background: transparent; border: 1px solid var(--rule-dark); border-radius: var(--radius);
    padding: 13px 15px; color: var(--canvas); font-family: inherit; font-size: 14.5px;
  }
  .news input::placeholder { color: rgba(255,255,255,.42); }
  .news button {
    background: var(--canvas); color: var(--ink); border: 0; border-radius: var(--radius);
    padding: 13px 22px; font-size: 14.5px; font-weight: 600;
  }

  /* ── Footer ── */
  footer { background: var(--ink-deep); color: var(--canvas); padding: 0 0 42px; }
  .foot-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
  .foot-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px;
    padding: 62px 0 44px; border-top: 1px solid var(--rule-dark);
  }
  .foot-brand p { color: var(--muted-dark); font-size: 14px; line-height: 1.6; margin: 18px 0 0; max-width: 40ch; }
  .foot-brand .lockup { color: var(--canvas); }
  .foot-col h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 15px; font-weight: 400; }
  .foot-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--muted-dark); text-decoration: none; }
  .foot-col a:hover { color: var(--canvas); }
  .foot-bottom {
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding: 22px 0; border-top: 1px solid var(--rule-dark); font-size: 12.5px; color: rgba(255,255,255,.45);
  }
  .foot-bottom .links { display: flex; gap: 20px; }
  .foot-bottom a { text-decoration: none; }
  .foot-disclaimer { font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,.34); max-width: 92ch; padding-top: 18px; }

  /* ── Sticky bar ── */
  .sticky-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: rgba(251,249,246,.95); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-top: 1px solid var(--rule); transform: translateY(100%); transition: transform .28s ease;
  }
  .sticky-bar.is-visible { transform: translateY(0); }
  .sticky-inner {
    max-width: 1240px; margin: 0 auto; padding: 11px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
  }
  .sticky-left { display: flex; align-items: center; gap: 13px; }
  .sticky-left img { width: 40px; height: 40px; object-fit: cover; border-radius: 3px; }
  .sticky-left .nm { font-size: 14px; font-weight: 600; }
  .sticky-left .pr { font-size: 12.5px; color: var(--quiet); }

  /* ── Cart drawer ── */
  .overlay { position: fixed; inset: 0; background: rgba(36,31,27,.42); opacity: 0; pointer-events: none; transition: opacity .24s ease; z-index: 95; }
  .overlay.is-open { opacity: 1; pointer-events: auto; }
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: var(--canvas);
    z-index: 96; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--rule-soft); }
  .drawer-head h3 { font-size: 19px; }
  .drawer-close { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--ink); }
  .drawer-body { flex: 1; overflow-y: auto; padding: 22px 26px; }
  .cart-empty { color: var(--quiet); font-size: 14.5px; }
  .cart-item { display: grid; grid-template-columns: 62px 1fr; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--rule-soft); }
  .cart-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 3px; }
  .ci-name { font-size: 14.5px; font-weight: 600; }
  .ci-sub { font-size: 12.5px; color: var(--quiet); margin: 3px 0 7px; }
  .ci-price { font-size: 14.5px; font-weight: 600; }
  .drawer-foot { padding: 20px 26px; border-top: 1px solid var(--rule-soft); }
  .drawer-foot .row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--muted); }
  .drawer-foot .row.total { font-size: 16.5px; font-weight: 700; color: var(--ink); padding: 12px 0 18px; }

  @media (max-width: 1000px) {
    .hero-grid, .product, .pane.is-active, .rev-top { grid-template-columns: 1fr; gap: 40px; }
    .feats-inner { grid-template-columns: repeat(2, 1fr); }
    .quotes, .timeline, .guards { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    .wrap, .nav-inner, .hero-grid, .feats-inner, .foot-inner, .sticky-inner { padding-left: 22px; padding-right: 22px; }
    .sec { padding: 72px 0; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .feats-inner { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ── CTA band (home → product page) ── */
  .cta-band { background: var(--ink-deep); color: var(--canvas); padding: 72px 0; }
  .cta-inner { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 56px; align-items: center; }
  .cta-inner img { width: 100%; border-radius: var(--radius); }
  .cta-copy .eyebrow { color: var(--accent); }
  .cta-copy h2 { font-size: clamp(27px, 3.2vw, 40px); }
  .cta-copy p { color: var(--muted-dark); font-size: 16px; line-height: 1.62; margin: 16px 0 28px; max-width: 46ch; }
  .cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .cta-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }
  @media (max-width: 1000px) { .cta-inner { grid-template-columns: 1fr; gap: 32px; } }

  /* ── Product page head ── */
  .page-head { padding: 56px 0 8px; }
  .crumbs { display: flex; gap: 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--quiet); margin-bottom: 22px; }
  .crumbs a { text-decoration: none; }
  .crumbs a:hover { color: var(--ink); }
  .page-head h1 { font-size: clamp(34px, 4.4vw, 54px); }
  .page-head .lede { margin-top: 14px; }
  .is-product .sec:first-of-type { padding-top: 40px; }

  /* The media column is much shorter than the spec column, which left a tall
     gap beside it on the product page. Let it follow the scroll instead. */
  @media (min-width: 1001px) {
    .is-product .product-media { position: sticky; top: 92px; }
  }

  /* ── Colour picker ── */
  .swatches { margin: 0 0 26px; }
  .swatch-head { font-size: 13.5px; color: var(--muted); margin-bottom: 11px; }
  .swatch-head b { color: var(--ink); font-weight: 600; }
  .swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .swatch {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; border: 1px solid var(--rule); border-radius: 999px;
    padding: 8px 16px 8px 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
    transition: border-color .16s ease, color .16s ease;
  }
  .swatch:hover:not(:disabled) { border-color: var(--ink); }
  .swatch.is-active { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
  .sw-dot {
    width: 20px; height: 20px; border-radius: 50%; background: var(--sw);
    border: 1px solid rgba(51, 46, 41, 0.22); flex: none;
  }
  .swatch.is-sold { opacity: .45; cursor: not-allowed; }
  .swatch.is-sold .sw-name { text-decoration: line-through; }
