/* =====================================================================
   WILD ROOTS & CO — Design System
   Rooted in Nature. Crafted with Intention.
   Palette: cream / sage / lavender / plum / charcoal / honey-gold
   ===================================================================== */

:root {
  /* Color */
  --cream:        #F6EFE0;
  --cream-deep:   #EFE6D3;
  --paper:        #FBF7EE;
  --sage:         #8B9A78;
  --sage-deep:    #5F6E4E;
  --sage-soft:    #DDE2D1;
  --lavender:     #C6B7D6;
  --lavender-soft:#EAE2F0;
  --plum:         #5E3A52;
  --plum-deep:    #492C40;
  --honey:        #C9A227;
  --ink:          #36312A;
  --ink-soft:     #5C5346;
  --line:         #D9CDB6;
  --white:        #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans:  "Mulish", "Helvetica Neue", Arial, sans-serif;
  --script:"Marck Script", "Brush Script MT", cursive;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 16px rgba(54,49,42,.08);
  --shadow:    0 14px 40px rgba(54,49,42,.12);
  --shadow-lg: 0 28px 70px rgba(54,49,42,.18);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--ink); margin: 0 0 .4em; letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
p  { margin: 0 0 1.1em; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--sage-deep);
  margin-bottom: 14px; display: inline-block;
}
.script { font-family: var(--serif); color: var(--plum); font-weight: 600; font-style: italic; }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-soft); }
.divider-leaf { display:flex; align-items:center; justify-content:center; gap:14px; color:var(--sage); margin: 8px 0 4px; }
.divider-leaf::before, .divider-leaf::after { content:""; height:1px; width:60px; background:var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; border: 1.5px solid transparent; transition: all .25s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--plum); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sage { background: var(--sage-deep); color: #fff; }
.btn-sage:hover { background: #4d5a3f; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn-ghost:hover { background: var(--plum); color: #fff; }
.btn-light { background: #fff; color: var(--plum); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff; backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(54,49,42,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 50px; height: 50px; border-radius: 50%; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1; }
.brand-name small { display:block; font-family: var(--sans); font-size:.6rem; letter-spacing:.25em; text-transform:uppercase; color: var(--sage-deep); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .2s; }
.nav-links a:hover { color: var(--plum); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display:block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---------- Announcement bar ---------- */
.announce { background: var(--sage-deep); color: #fff; text-align: center; font-size: .82rem; letter-spacing: .06em; padding: 9px 16px; font-weight: 600; }
.announce span { opacity: .9; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(60px,8vw,110px) 0 clamp(70px,9vw,120px); overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, var(--lavender-soft), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, var(--sage-soft), transparent 55%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .25em; }
.hero h1 .script { display:block; font-size: .52em; color: var(--plum); margin-top: 6px; }
.hero-sub { font-size: 1.22rem; color: var(--ink-soft); max-width: 48ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display:flex; gap: 22px; flex-wrap: wrap; font-size: .85rem; font-weight:600; color: var(--sage-deep); }
.hero-trust span { display:flex; align-items:center; gap:7px; }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: var(--sage-soft);
}
.hero-media .frame img { width:100%; height:100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 50%;
  width: 132px; height: 132px; display:flex; align-items:center; justify-content:center;
  text-align:center; box-shadow: var(--shadow); border: 2px solid var(--sage-soft);
  font-family: var(--serif); font-weight:600; color: var(--plum); line-height:1.1; font-size:.95rem;
  transform: rotate(-8deg);
}

/* elegant placeholder when no photo yet */
.ph {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--sage-deep);
  background:
    radial-gradient(120% 90% at 50% 0%, var(--paper), transparent 60%),
    linear-gradient(160deg, #eef1e6 0%, var(--sage-soft) 60%, #dfe5d3 100%);
  font-family: var(--serif); font-size: 1.05rem; font-style: italic; letter-spacing:.5px;
  text-align:center; padding: 24px; position: relative;
}
.ph::before {
  content:"❧"; font-size: 2.2rem; line-height:1; color: var(--sage); opacity:.55; margin-bottom: 2px;
}
.ph svg { display:none; }
.ph span { opacity:.85; }

/* full-bleed Ozarks nature band */
.ozarks-band {
  position: relative; color: #fff; text-align:center;
  background-size: cover; background-position: center;
  padding: clamp(90px,14vw,180px) 0;
}
.ozarks-band::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(54,49,42,.55), rgba(73,44,64,.72));
}
.ozarks-band > * { position: relative; z-index: 1; }
.ozarks-band .eyebrow { color: #efe6f3; }
.ozarks-band h2 { color:#fff; }
.ozarks-band p { color:#f6f1ea; }
.ozarks-band h2, .ozarks-band p, .ozarks-band .eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,.4); }

/* nature-backed CTA band (text stays light) */
.cta-band.nature { background-size: cover; background-position: center; position: relative; color:#fff; overflow:hidden; }
.cta-band.nature::before { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(73,44,64,.85), rgba(58,68,48,.80)); }
.cta-band.nature > * { position: relative; z-index:1; }
.cta-band.nature .eyebrow { color:#efe6f3; }
.cta-band.nature h2, .cta-band.nature .lead { color:#fff; }
.cta-band.nature .muted { color:#ece4f0; }
.cta-band.nature .form-inline input { background: rgba(255,255,255,.95); }
.cta-band.nature h2, .cta-band.nature .lead, .cta-band.nature .eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,.4); }

/* subtle nature wash behind interior page heroes */
.page-hero.nature { background-size: cover; background-position: center; position: relative; }
.page-hero.nature::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(246,239,224,.92), rgba(246,239,224,.86)); }
.page-hero.nature > * { position: relative; z-index:1; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip .wrap { display:flex; flex-wrap:wrap; justify-content:space-around; gap: 18px; padding-top: 26px; padding-bottom: 26px; }
.trust-item { display:flex; align-items:center; gap:10px; font-weight:700; font-size:.9rem; color: var(--sage-deep); letter-spacing:.04em; }
.trust-item svg { width: 22px; height: 22px; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 720px; margin: 0 auto 54px; text-align:center; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 1/1; background: var(--cream-deep); position: relative; overflow:hidden; }
.card-media img { width:100%; height:100%; object-fit: cover; }
.card-tag {
  position:absolute; top:14px; left:14px; background: var(--plum); color:#fff; font-size:.68rem;
  font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:6px 12px; border-radius:999px;
}
.card-tag.sage { background: var(--sage-deep); }
.card-tag.honey { background: var(--honey); color: var(--ink); }
.card-body { padding: 24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.card-cat { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--sage-deep); font-weight:700; margin-bottom:8px; }
.card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.card-tagline { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--sage-deep); margin: 0 0 8px; }
.card-desc { font-size:.95rem; color: var(--ink-soft); margin-bottom: 16px; flex:1; }
.card-foot { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto; }
.price { font-family: var(--serif); font-size: 1.5rem; font-weight:600; color: var(--plum); }
.price small { font-size: .9rem; color: var(--ink-soft); font-weight:400; }
.price del { font-size: .95rem; color: var(--ink-soft); margin-left:6px; }

/* ---------- Offer / Hormozi block ---------- */
.offer { background: linear-gradient(160deg, var(--plum), var(--plum-deep)); color: #fff; border-radius: var(--radius-lg); overflow:hidden; }
.offer-grid { display:grid; grid-template-columns: 1fr 1fr; }
.offer-media { background: var(--lavender-soft); min-height: 420px; }
.offer-media img { width:100%; height:100%; object-fit: cover; }
.offer-body { padding: clamp(34px,5vw,60px); }
.offer-body .eyebrow { color: var(--lavender); }
.offer-body h2, .offer-body h3 { color: #fff; }
.offer-list { list-style:none; margin: 0 0 26px; padding:0; }
.offer-list li { display:flex; gap:12px; align-items:flex-start; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size:1rem; }
.offer-list li:last-child { border-bottom:none; }
.offer-list .chk { color: var(--honey); flex:none; margin-top:3px; }
.offer-list .val { margin-left:auto; color: var(--lavender); font-weight:700; white-space:nowrap; }
.offer-price { display:flex; align-items:baseline; gap:14px; margin: 4px 0 22px; }
.offer-price .now { font-family:var(--serif); font-size: 3rem; font-weight:600; }
.offer-price .was { font-size:1.2rem; text-decoration:line-through; opacity:.7; }
.offer-price .save { background: var(--honey); color: var(--ink); font-weight:700; font-size:.8rem; padding:5px 12px; border-radius:999px; letter-spacing:.05em; }

/* ---------- Steps / process ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { text-align:center; }
.step-num { width:64px; height:64px; border-radius:50%; background:#fff; border:2px solid var(--sage-soft); display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; color: var(--sage-deep); }
.step-num svg { width:30px; height:30px; }
.step h3 { font-size:1.3rem; }
.step p { font-size:.95rem; color: var(--ink-soft); }

/* ---------- Story / split ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.split-media .frame { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.split-media .frame img { width:100%; height:100%; object-fit:cover; }

/* ---------- Quote / testimonial ---------- */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.stars { color: var(--honey); letter-spacing:3px; margin-bottom: 12px; font-size: 1rem; }
.testi p { font-style: italic; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); line-height:1.45; }
.testi .who { font-style:normal; font-family: var(--sans); font-weight:700; font-size:.88rem; color: var(--sage-deep); margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background:#fff; border:1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq summary { cursor:pointer; list-style:none; font-family: var(--serif); font-size: 1.25rem; font-weight:600; padding: 18px 0; display:flex; justify-content:space-between; align-items:center; gap: 16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size: 1.6rem; color: var(--sage-deep); transition: transform .25s; line-height:1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 20px; color: var(--ink-soft); margin: 0; }

/* ---------- Newsletter / CTA band ---------- */
.cta-band { background:
    radial-gradient(600px 300px at 80% -20%, var(--lavender-soft), transparent 60%),
    var(--sage-soft);
  border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align:center; }
.form-inline { display:flex; gap:12px; max-width: 460px; margin: 22px auto 0; flex-wrap:wrap; justify-content:center; }
.form-inline input { flex:1; min-width: 220px; padding: 15px 20px; border-radius: 999px; border:1.5px solid var(--line); background:#fff; font-size:1rem; }
.form-inline input:focus { outline:none; border-color: var(--sage); }

/* ---------- GHL embed placeholder ---------- */
.ghl-embed {
  background: #fff; border: 2px dashed var(--sage); border-radius: var(--radius);
  padding: 40px; text-align:center; color: var(--sage-deep); min-height: 280px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
}
.ghl-embed strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--plum-deep); color: #efe6da; padding: 64px 0 30px; }
.footer a { color: #efe6da; opacity:.85; }
.footer a:hover { opacity: 1; color: #fff; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer .brand-name { color: #fff; }
.footer h4 { color:#fff; font-family: var(--sans); font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom: 16px; opacity:.7; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin-bottom: 10px; font-size:.95rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.15); padding-top: 22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.82rem; opacity:.75; }
.footer .disclaimer { font-size:.74rem; opacity:.6; max-width: 760px; margin-top: 14px; line-height:1.5; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background:
    radial-gradient(700px 360px at 90% -30%, var(--lavender-soft), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line); padding: clamp(48px,7vw,90px) 0; text-align:center; }
.page-hero .lead { margin-left:auto; margin-right:auto; }

/* ---------- Animations ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .offer-grid { grid-template-columns: 1fr; }
  .offer-media { min-height: 280px; order: -1; }
  .product-grid, .testi-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { width: 110px; height:110px; font-size:.85rem; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; background: var(--cream); flex-direction: column;
    padding: 24px; gap: 18px; border-bottom:1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .3s var(--ease); height: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display:block; }
  .product-grid, .testi-grid, .steps, .product-grid.cols-2, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width:100%; }
}

/* =====================================================================
   v4 — Clickable cards, Product pages (PDP), Native order form
   ===================================================================== */

/* Clickable product cards */
a.card { display:flex; flex-direction:column; cursor:pointer; }
a.card:hover { transform: translateY(-4px); }
.card-foot .btn { padding: 9px 16px; font-size:.82rem; }
.product-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px){ .product-grid.cols-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .product-grid.cols-3, .product-grid.cols-2 { grid-template-columns: 1fr;} }

/* Breadcrumb */
.breadcrumb { background: var(--paper); border-bottom:1px solid var(--line); font-size:.85rem; }
.breadcrumb .wrap { padding-top:14px; padding-bottom:14px; color:var(--ink-soft); }
.breadcrumb a { color: var(--sage-deep); font-weight:600; }
.breadcrumb a:hover { color: var(--plum); }
.breadcrumb span { margin:0 8px; opacity:.5; }
.breadcrumb b { color: var(--ink); font-weight:600; }

/* PDP layout */
.pdp .pdp-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items:start; }
.pdp-media .frame { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; background: var(--sage-soft); }
.pdp-media .frame img { width:100%; height:100%; object-fit:cover; }
.pdp-info h1 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); margin-bottom:.15em; }
.pdp-tagline { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--sage-deep); margin:0 0 14px; }
.pdp .stars { color: var(--honey); letter-spacing:3px; font-size:1rem; margin-bottom:14px; }
.pdp .stars-note { font-family: var(--sans); letter-spacing:normal; font-size:.8rem; color:var(--ink-soft); margin-left:8px; }
.pdp-lead { font-size: 1.12rem; color: var(--ink-soft); }
.pdp-buy { margin: 22px 0 18px; padding: 22px; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); }
.pdp-price { font-family: var(--serif); margin-bottom: 14px; }
.pdp-price .now { font-size: 2rem; font-weight:700; color: var(--plum); }
.pdp-note { font-family: var(--sans); font-size:.85rem; color: var(--sage-deep); font-weight:600; display:block; margin-top:4px; }
.btn-block { width:100%; }
.size-sel { display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:16px; }
.size-opt { display:flex; flex-direction:column; align-items:flex-start; gap:2px; padding:14px 16px; border:1.5px solid var(--line); border-radius: var(--radius); background:#fff; text-align:left; transition: all .2s var(--ease); font-family: var(--sans); color: var(--ink); }
.size-opt small { font-size:.74rem; color: var(--ink-soft); font-weight:500; }
.size-opt b { font-family: var(--serif); font-size:1.3rem; color: var(--plum); margin-top:4px; }
.size-opt:hover { border-color: var(--sage); }
.size-opt.active { border-color: var(--plum); background: var(--lavender-soft); box-shadow: var(--shadow-sm); }
.pdp-trust { list-style:none; display:flex; flex-wrap:wrap; gap:10px 22px; padding:0; margin:6px 0 0; font-size:.9rem; color: var(--sage-deep); font-weight:600; }

/* PDP detail */
.pdp-cols { display:grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px,5vw,60px); align-items:start; }
.organic-note { font-weight:700; color: var(--sage-deep); margin-bottom:14px; }
.ingredient-list { list-style:none; padding:0; margin:0; columns: 1; }
.ingredient-list li { padding: 11px 0 11px 26px; border-bottom:1px solid var(--line); position:relative; color: var(--ink); }
.ingredient-list li::before { content:"🌿"; position:absolute; left:0; font-size:.9rem; }
.ingredient-list li:last-child { border-bottom:none; }
.pdp-h3 { margin-top: 26px; color: var(--plum); }

@media (max-width: 820px){
  .pdp .pdp-grid, .pdp-cols { grid-template-columns: 1fr; }
  .pdp-media .frame { max-width: 520px; margin:0 auto; }
}

/* Native order form */
.wr-form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px,3vw,34px); box-shadow: var(--shadow-sm); }
.wr-form .fld { margin-bottom:16px; }
.wr-form label { display:block; font-weight:700; font-size:.85rem; color: var(--ink); margin-bottom:7px; letter-spacing:.01em; }
.wr-form label .req { color: var(--plum); }
.wr-form input, .wr-form select, .wr-form textarea {
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size:1rem; color: var(--ink); background: var(--paper); transition: border-color .2s var(--ease);
}
.wr-form input:focus, .wr-form select:focus, .wr-form textarea:focus { outline:none; border-color: var(--plum); background:#fff; }
.wr-form textarea { min-height:120px; resize:vertical; }
.wr-form .row2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .wr-form .row2 { grid-template-columns:1fr; } }
.wr-consent { display:flex; gap:10px; align-items:flex-start; font-size:.82rem; color: var(--ink-soft); margin:6px 0 18px; }
.wr-consent input { width:auto; margin-top:3px; }
.wr-hp { position:absolute; left:-9999px; opacity:0; height:0; width:0; }

/* anchor offset for sticky header */
section[id], [id].section { scroll-margin-top: 92px; }
