/* ═══════════════════════════════════════════════════════════════════
   My Body Cell — theme CSS
   Palette from the supplied brand board: navy #102A43 · teal #19A7A0
   gold #D6B36A · off-white #F9F9F9
   Type: Source Serif 4 (display) · Figtree (body) · IBM Plex Mono (data)

   The nav, product-card and footer blocks below are the same rules the
   homepage plugin ships. They are duplicated deliberately: the theme has
   to render identically when the plugin is inactive, and the two must not
   drift. Change one, change the other.
   ═══════════════════════════════════════════════════════════════════ */
/* My Body Cell — homepage plugin
   Palette from the supplied brand board: navy #102A43, teal #19A7A0,
   gold #D6B36A, off-white #F9F9F9. */
:root{
  --navy:#102A43;
  --navy-deep:#0A1B2D;
  --teal:#19A7A0;
  --teal-tint:#EDF7F6;
  --gold:#D6B36A;
  --paper:#FBFBFC;
  --white:#FFFFFF;
  --ink:#0F2438;
  --muted:#5C6874;
  --line:#E3E8ED;
  --ph:#EDF0F3;         /* placeholder tile */
  --ph-ink:#8A97A4;

  --sans:"Figtree","Segoe UI",system-ui,-apple-system,Helvetica,Arial,sans-serif;
  --serif:"Source Serif 4",Georgia,"Times New Roman",serif;
  --mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;

  --nav-h:64px;
  --wrap:1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--sans);font-size:16px;line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;border-radius:4px}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px}
@media (min-width:768px){.wrap{padding:0 32px}}

/* ---------- shared type ---------- */
.eyebrow{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal);margin:0 0 10px;font-weight:500;
}
.h2{
  font-family:var(--serif);font-weight:600;letter-spacing:-.01em;line-height:1.12;
  font-size:clamp(26px,4.4vw,38px);margin:0;color:var(--navy);
}
.lede{color:var(--muted);margin:10px 0 0;max-width:52ch}

/* signature: the notched gold rule lifted from the vial label */
.notch{display:block;width:100%;height:9px;color:var(--gold)}
.notch svg{width:100%;height:9px;display:block}

/* ---------- placeholder tiles ---------- */
.ph-logo{width:auto;flex:none;object-fit:contain;opacity:.6}
.ph{
  background:var(--ph);border:1px dashed #B4C0CC;border-radius:10px;
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#78868F;font-family:var(--mono);font-size:10px;letter-spacing:.08em;
  text-transform:uppercase;padding:8px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;justify-content:center;
  padding:13px 24px;border-radius:999px;font-weight:600;font-size:15px;white-space:nowrap;
  border:1px solid transparent;cursor:pointer;transition:transform .15s ease,background .15s ease,color .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--navy-deep)}
.btn-ghost{background:transparent;color:var(--navy);border-color:#C9D3DC}
.btn-ghost:hover{border-color:var(--navy);background:rgba(16,42,67,.04)}
.btn-sm{padding:11px 20px;font-size:14px}

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-head{
  position:sticky;top:0;z-index:90;background:rgba(251,251,252,.92);
  backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line);
}
.nav{height:var(--nav-h);display:flex;align-items:center;gap:16px}
.brand{display:flex;align-items:center;flex:none}
/* supplied wordmark carries the brand name — no type set next to it.
   Source files have ~29% transparent padding top/bottom; trimmed to the artwork
   so the height below is the height you actually see. */
.brand .wordmark{height:26px;width:auto;display:block}
@media (min-width:768px){.brand .wordmark{height:30px}}
.nav-links{display:none;gap:30px;margin:0 auto;list-style:none;padding:0}
.nav-links a{font-size:15px;font-weight:500;color:var(--navy);opacity:.85;position:relative;padding:6px 0}
.nav-links a:hover{opacity:1}
.nav-links a[aria-current="page"]{opacity:1}
.nav-links a[aria-current="page"]::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--teal);border-radius:2px;
}
.nav-icons{display:flex;gap:4px;margin-left:auto;align-items:center}
/* mobile: the cart is the only icon outside the drawer.
   Scoped selector — .icon-btn is declared later and would otherwise win. */
.nav-icons .nav-account{display:none}
.icon-btn{
  width:38px;height:38px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:1px solid transparent;cursor:pointer;color:var(--navy);position:relative;
}
.icon-btn:hover{background:rgba(16,42,67,.06)}
.icon-btn svg{width:19px;height:19px}
.cart-count{
  position:absolute;top:4px;right:3px;min-width:15px;height:15px;border-radius:999px;background:var(--teal);
  color:#fff;font-size:9.5px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 4px;
  font-family:var(--mono);
}
.burger{display:inline-flex;margin-left:-6px}
@media (min-width:1024px){
  .nav-links{display:flex}
  .nav-icons .nav-account{display:inline-flex}
  .nav-icons{gap:6px}
  .burger{display:none}
}

/* mobile drawer */
.drawer{
  position:fixed;inset:0;z-index:95;visibility:hidden;pointer-events:none;
}
.drawer.open{visibility:visible;pointer-events:auto}
.drawer-scrim{position:absolute;inset:0;background:rgba(10,27,45,.45);opacity:0;transition:opacity .25s ease}
.drawer.open .drawer-scrim{opacity:1}
.drawer-panel{
  position:absolute;top:0;right:0;height:100%;width:min(88vw,340px);background:#fff;
  transform:translateX(100%);transition:transform .28s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;padding:18px 20px 26px;
}
.drawer.open .drawer-panel{transform:none}
.drawer-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.drawer-icon{height:30px;width:auto;display:block}
.drawer nav{display:flex;flex-direction:column;margin-top:6px}
.drawer nav a{padding:15px 0;border-bottom:1px solid var(--line);font-size:17px;font-weight:500;color:var(--navy)}
.drawer .btn{margin-top:22px;width:100%}

/* =================================================================
   PRODUCTS
   ================================================================= */
.section{padding:24px 0}
.section-bento,.section-news{padding-top:6px}
@media (min-width:768px){.section{padding:56px 0}}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:14px}
@media (min-width:768px){.sec-head{margin-bottom:18px}}
.sec-head .link{
  display:none;font-weight:600;font-size:14.5px;color:var(--teal);align-items:center;gap:7px;white-space:nowrap;padding-bottom:4px;
}
.sec-head .link svg{width:15px;height:15px}
@media (min-width:768px){.sec-head .link{display:inline-flex}}
.sec-rule{margin:0 0 16px}
@media (min-width:768px){.sec-rule{margin:0 0 22px}}

.grid-products{
  display:grid;gap:14px;grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:640px){.grid-products{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}}
@media (min-width:1024px){.grid-products{grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}}

.card{
  background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;
  display:flex;flex-direction:column;transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease;
}
.card:hover{box-shadow:0 12px 30px rgba(16,42,67,.09);transform:translateY(-2px);border-color:#D3DCE4}
.card-media{position:relative;aspect-ratio:1/1;background:var(--ph)}
/* photography ships with backgrounds baked in — full bleed, no padding/gradient/shadow */
/* The real photo is a direct child; the empty-state icon lives inside .ph.
   Scoped with > so cover-cropping cannot swallow the placeholder mark.
   (The plugin's stylesheet uses the unscoped selector — its markup has no
   nested placeholder image, so the two still render identically.) */
.card-media > img{width:100%;height:100%;object-fit:cover;display:block}
.card-media .ph{align-items:center;justify-content:center}
.card-media .ph-logo{height:38%;width:auto;flex:none;object-fit:contain;opacity:.55}
.card-media .ph{position:absolute;inset:0;border-radius:0;border:0;border-bottom:1px dashed #C7D0D9}
.badge{
  position:absolute;top:9px;left:9px;z-index:2;background:var(--teal);color:#fff;
  font-family:var(--mono);font-size:9.5px;letter-spacing:.09em;text-transform:uppercase;
  padding:4px 9px;border-radius:999px;font-weight:500;
}
.card-body{padding:13px 13px 15px;display:flex;flex-direction:column;flex:1}
/* exactly two lines: short names reserve line 2, long names clip with ellipsis */
.card-title{
  font-size:15px;font-weight:600;color:var(--navy);margin:0;line-height:1.3;
  height:calc(2 * 1.3em);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.card-meta{font-family:var(--mono);font-size:11px;color:var(--muted);margin:6px 0 0;letter-spacing:.05em}
.card-price{font-size:16px;font-weight:700;color:var(--navy);margin:10px 0 0}
.card-link{
  margin-top:auto;padding-top:11px;font-size:13px;font-weight:600;color:var(--teal);
  display:inline-flex;align-items:center;gap:6px;
}
.card-link svg{width:13px;height:13px;transition:transform .16s ease}
.card:hover .card-link svg{transform:translateX(3px)}
@media (min-width:640px){
  .card-body{padding:16px 16px 18px}
  .card-title{font-size:16px}
  .card-price{font-size:18px}
}
.grid-foot{display:flex;justify-content:center;margin-top:26px}
@media (min-width:768px){.grid-foot{display:none}}

/* =================================================================
   FOOTER
   ================================================================= */
.site-foot{background:var(--navy);color:#fff;margin-top:40px;padding:40px 0 0}
.foot-grid{display:grid;gap:28px}
.foot-brand .wordmark{height:30px}
.foot-brand p{color:rgba(255,255,255,.62);font-size:13.5px;margin:14px 0 0;max-width:32ch;line-height:1.5}
.foot-col h4{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);margin:0 0 13px;font-weight:500;
}
.foot-col ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.foot-col a,.foot-col span{color:rgba(255,255,255,.78);font-size:14px}
.foot-col a:hover{color:#fff}
.contact-grid{display:grid;gap:9px}
.contact-grid .addr{color:rgba(255,255,255,.78);font-size:14px;line-height:1.5}
.pending{
  display:inline-block;font-family:var(--mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.55);border:1px dashed rgba(255,255,255,.28);border-radius:5px;padding:3px 7px;justify-self:start;
}
.socials{display:flex;gap:9px;margin-top:18px}
.socials a{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.1);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;
}
.socials a:hover{background:rgba(255,255,255,.2)}
.socials svg{width:16px;height:16px}
.foot-bar{
  margin-top:34px;border-top:1px solid rgba(255,255,255,.14);padding:16px 0 22px;
  display:flex;flex-wrap:wrap;gap:8px 20px;align-items:center;justify-content:space-between;
}
.foot-bar p{margin:0;font-size:12.5px;color:rgba(255,255,255,.55)}
.foot-legal{display:flex;gap:18px;flex-wrap:wrap}
.foot-legal a{font-size:12.5px;color:rgba(255,255,255,.7)}
.foot-legal a:hover{color:#fff}

/* mobile footer: Explore | Information side by side, Contact its own row below */
@media (max-width:767px){
  .foot-grid{grid-template-columns:1fr 1fr}
  .foot-brand{grid-column:1 / -1}
  .foot-contact{grid-column:1 / -1}
  /* same tracks and gutter as the Explore / Information columns above */
  .contact-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);column-gap:28px;row-gap:12px}
  .contact-grid a{overflow-wrap:anywhere;font-size:14px}
  .contact-grid .addr{grid-column:1 / -1}
}
@media (min-width:768px){
  .foot-grid{grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:32px}
}
@media (min-width:1024px){.foot-grid{gap:44px}}

/* ===================================================================
   THEME — page-level styles.
   Nav, product cards and footer are inherited verbatim from the
   homepage stylesheet above, so the site cannot change shape between
   the homepage and the rest of the store.
   =================================================================== */


/* ---------- page furniture ---------- */
.page-head{max-width:680px;margin-bottom:22px}
.page-title{
  font-family:var(--serif);font-size:clamp(30px,4.4vw,46px);font-weight:600;
  line-height:1.08;letter-spacing:-.015em;color:var(--navy);margin:0;
}
.page-title em{font-style:normal;color:var(--teal)}
.page-sub{font-size:15.5px;color:var(--muted);line-height:1.7;max-width:580px;margin:14px 0 0}
.count{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);display:block;margin:18px 0 12px;
}
.crumb{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);margin-bottom:20px;display:flex;gap:9px;align-items:center;flex-wrap:wrap;
}
.crumb a{color:var(--muted)}
.crumb a:hover{color:var(--teal)}
.crumb span.sep{opacity:.45}
.shop{padding:30px 0 70px}
@media (min-width:768px){.shop{padding:44px 0 90px}}

/* stock pill sits on the tile so the card body keeps the homepage's exact shape */
.stock-pill{
  position:absolute;top:9px;right:9px;z-index:2;border-radius:999px;padding:4px 9px;
  font-family:var(--mono);font-size:9.5px;letter-spacing:.09em;text-transform:uppercase;
  background:rgba(255,255,255,.94);color:var(--navy);font-weight:500;
}
.stock-pill.low{color:#9A6B1F}
.stock-pill.out{color:var(--muted)}
.card.is-out .card-media img{opacity:.45}

/* ===================================================================
   PRODUCT PAGE
   =================================================================== */
.pdp{padding:22px 0 64px}
.pdp-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:20px;align-items:start}
@media (min-width:900px){
  .pdp{padding:32px 0 84px}
  .pdp-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:40px}
  .gallery{position:sticky;top:120px}
}
.img-wrap{
  position:relative;aspect-ratio:1/1;background:var(--ph);border:1px solid var(--line);
  border-radius:14px;overflow:hidden;
}
.img-wrap img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.summary{background:#fff;border:1px solid var(--line);border-radius:14px;padding:24px 20px}
@media (min-width:768px){.summary{padding:30px 28px}}
.topline{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:8px}
.badge-flat{
  font-family:var(--mono);font-size:9.5px;letter-spacing:.1em;text-transform:uppercase;
  background:var(--teal);color:#fff;padding:4px 9px;border-radius:999px;font-weight:500;
}
.pdp-title{
  font-family:var(--serif);font-size:clamp(27px,3.6vw,40px);font-weight:600;line-height:1.08;
  letter-spacing:-.02em;color:var(--navy);margin:0 0 10px;
}
.pdp-size{
  font-family:var(--mono);font-size:.34em;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal);vertical-align:middle;margin-left:6px;
}
.pdp-desc{font-size:14.5px;color:var(--muted);line-height:1.7;margin:0 0 16px}
.priceline{display:flex;align-items:baseline;gap:11px;margin-bottom:4px}
.price-now{font-family:var(--serif);font-size:31px;font-weight:600;color:var(--navy);line-height:1}
.price-per{font-family:var(--mono);font-size:11px;color:var(--muted);letter-spacing:.1em;text-transform:uppercase}
.chips{display:flex;width:fit-content;border-radius:999px;overflow:hidden;margin:12px 0 0}
.chips span{font-family:var(--mono);font-size:10.5px;font-weight:500;letter-spacing:.06em;padding:5px 11px}
.chips .mg{background:var(--navy);color:#fff}
.chips .pu{background:var(--gold);color:var(--navy-deep)}
.opt-label{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);margin:22px 0 10px;
}
.vars{display:grid;grid-template-columns:repeat(auto-fit,minmax(92px,1fr));gap:8px}
.vpill{
  border:1px solid var(--line);border-radius:10px;padding:11px 12px;background:#fff;cursor:pointer;
  font-family:inherit;text-align:center;transition:border-color .18s ease,box-shadow .18s ease;
}
.vpill:hover:not(:disabled){border-color:var(--teal)}
.vpill.active{border-color:var(--teal);box-shadow:inset 0 0 0 1px var(--teal)}
.vpill:disabled{opacity:.45;cursor:not-allowed}
.vpill b{font-family:var(--mono);font-size:14px;font-weight:600;display:block;letter-spacing:.04em;color:var(--navy)}
.vpill small{font-size:11.5px;color:var(--muted);display:block;margin-top:3px}
.tiers{display:grid;grid-template-columns:1fr;gap:8px}
@media (min-width:520px){.tiers{grid-template-columns:repeat(3,1fr)}}
.tier{
  position:relative;border:1px solid var(--line);border-radius:10px;padding:13px;background:#fff;
  cursor:pointer;font-family:inherit;text-align:left;transition:border-color .18s ease,box-shadow .18s ease;
}
.tier:hover{border-color:var(--teal)}
.tier.active{border-color:var(--teal);box-shadow:inset 0 0 0 1px var(--teal)}
.tier-qty{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.tier-price{font-family:var(--serif);font-size:18px;font-weight:600;color:var(--navy)}
.tier-ea{font-family:var(--mono);font-size:9.5px;color:var(--muted);letter-spacing:.1em;text-transform:uppercase;margin-top:4px}
.tier-flag{
  position:absolute;top:-9px;right:8px;font-family:var(--mono);font-size:8.5px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;padding:4px 9px;border-radius:999px;background:var(--navy);color:#fff;
}
.tier-flag.best{background:var(--gold);color:var(--navy-deep)}

/* cross-sell row — name is clamped so it can't break the row's alignment */
.ups{display:flex;flex-direction:column;gap:8px}
.up{
  display:flex;align-items:center;gap:12px;padding:10px 12px;border:1px solid var(--line);
  border-radius:10px;cursor:pointer;background:#fff;position:relative;transition:border-color .18s ease;
}
.up:hover{border-color:var(--teal)}
.up input{position:absolute;opacity:0;width:0;height:0}
.up-img{width:44px;height:44px;border-radius:8px;overflow:hidden;flex:none;background:var(--ph)}
.up-img img{width:100%;height:100%;object-fit:cover}
.up-info{flex:1;min-width:0}
.up-info b{
  display:block;font-size:14.5px;font-weight:600;color:var(--navy);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.up-info small{
  font-family:var(--mono);font-size:9.5px;color:var(--muted);letter-spacing:.12em;
  text-transform:uppercase;display:block;margin-top:2px;
}
.up-price{font-weight:700;color:var(--navy);flex:none;font-size:15px}
.up-box{
  width:22px;height:22px;border:1px solid var(--line);border-radius:6px;flex:none;
  display:flex;align-items:center;justify-content:center;color:transparent;font-size:13px;transition:all .18s ease;
}
.up input:checked ~ .up-box{background:var(--teal);border-color:var(--teal);color:#fff}
.totalbar{
  display:flex;justify-content:space-between;align-items:baseline;
  border-top:1px dashed var(--line);padding:16px 0 12px;margin-top:20px;
}
.total-lbl{font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}
.total-sum{font-family:var(--serif);font-size:27px;font-weight:600;color:var(--navy)}
.atc{
  width:100%;padding:16px;border:none;border-radius:999px;background:var(--navy);color:#fff;
  font-family:var(--sans);font-size:15px;font-weight:600;cursor:pointer;transition:background .18s ease;
}
.atc:hover{background:var(--navy-deep)}
.coa-link{
  display:flex;align-items:center;justify-content:center;gap:9px;width:100%;padding:13px;margin-top:9px;
  border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--navy);
  font-size:13.5px;font-weight:600;transition:border-color .18s ease,color .18s ease;
}
.coa-link:hover{border-color:var(--teal);color:var(--teal)}
.coa-link svg{width:16px;height:16px}
.assure{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px;padding-bottom:18px;border-bottom:1px solid var(--line)}
.assure span{
  font-family:var(--mono);font-size:10px;color:var(--muted);letter-spacing:.12em;text-transform:uppercase;
  display:inline-flex;align-items:center;gap:7px;
}
.assure i{width:6px;height:6px;background:var(--gold);transform:rotate(45deg);flex:none}
.lot{display:grid;grid-template-columns:1fr;gap:1px;background:var(--line);border-radius:10px;overflow:hidden;margin:18px 0}
@media (min-width:520px){.lot{grid-template-columns:repeat(3,1fr)}}
.lot-row{background:var(--paper);padding:13px 15px}
.lot-k{font-family:var(--mono);font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.lot-v{font-family:var(--serif);font-size:16px;font-weight:600;color:var(--navy)}
.acc{border-bottom:1px solid var(--line)}
.acc summary{
  display:flex;justify-content:space-between;align-items:center;padding:15px 0;cursor:pointer;list-style:none;
  font-family:var(--serif);font-size:17px;font-weight:600;color:var(--navy);
}
.acc summary::-webkit-details-marker{display:none}
.acc summary:hover{color:var(--teal)}
.acc .pm{font-size:19px;color:var(--muted);line-height:1;transition:transform .25s ease}
.acc[open] .pm{transform:rotate(45deg);color:var(--teal)}
.ac{padding:0 0 18px;font-size:14.5px;color:var(--muted);line-height:1.72}
.ac a{color:var(--teal);font-weight:600}
.sr{display:flex;justify-content:space-between;gap:16px;padding:9px 0;border-bottom:1px solid var(--line);font-size:13.5px}
.sr:last-child{border-bottom:none}
.sr-k{font-family:var(--mono);font-size:9.5px;color:var(--muted);letter-spacing:.16em;text-transform:uppercase;padding-top:3px}
.sr-v{color:var(--navy);text-align:right}
.slim{
  margin-top:36px;padding:22px 24px;background:var(--ph);border-radius:12px;
  font-size:12.5px;color:var(--muted);text-align:center;line-height:1.75;
}

/* ===================================================================
   COA LIBRARY — shares the product grid so card widths always match
   =================================================================== */
.coa{padding:30px 0 80px}
@media (min-width:768px){.coa{padding:44px 0 96px}}
.coa-stats{display:grid;grid-template-columns:1fr;gap:12px;margin:24px 0}
@media (min-width:768px){.coa-stats{grid-template-columns:repeat(3,1fr);gap:16px}}
.coa-stat{
  background:#fff;border:1px solid var(--line);border-bottom:2px solid var(--teal);border-radius:12px;
  padding:20px 22px;display:flex;flex-direction:column;justify-content:space-between;
}
.coa-stat-v{font-family:var(--serif);font-size:clamp(28px,4vw,42px);font-weight:600;line-height:1;color:var(--navy)}
.coa-stat-l{font-family:var(--mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-top:12px;line-height:1.6}
.coa-search{position:relative;margin-bottom:22px}
.coa-search input{
  width:100%;padding:14px 18px 14px 46px;font-family:var(--sans);font-size:15px;color:var(--ink);
  background:#fff;border:1px solid var(--line);border-radius:999px;outline:none;transition:border-color .18s ease;
}
.coa-search input:focus{border-color:var(--teal)}
.coa-search svg{position:absolute;left:17px;top:50%;transform:translateY(-50%);color:var(--muted);width:19px;height:19px}
.card.hide{display:none}
.coa-pur{
  position:absolute;top:9px;right:9px;z-index:2;background:rgba(255,255,255,.94);border:1px solid var(--line);
  padding:5px 10px;border-radius:8px;text-align:right;
}
.coa-pur-v{font-family:var(--serif);font-size:17px;font-weight:600;color:var(--navy);line-height:1}
.coa-pur-l{font-family:var(--mono);font-size:8px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal);margin-top:3px}
.coa-meta{display:flex;gap:22px;padding:10px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin:2px 0 10px}
.coa-mk{font-family:var(--mono);font-size:9px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:4px}
.coa-mv{font-family:var(--mono);font-size:12.5px;color:var(--navy);letter-spacing:.03em}
.tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:12px}
.ttag{
  font-family:var(--mono);font-size:9px;letter-spacing:.1em;text-transform:uppercase;padding:5px 8px;
  border-radius:6px;background:var(--ph);color:var(--navy);border:1px solid var(--line);
}
.ttag.check{background:#fff;color:var(--teal);border-color:var(--teal)}
.coa-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:12px;
  font-size:13px;font-weight:600;color:#fff;background:var(--navy);border-radius:999px;margin-top:auto;
  transition:background .18s ease;
}
.coa-btn:hover{background:var(--teal)}
.coa-btn svg{width:14px;height:14px}
.coa-empty{grid-column:1/-1;text-align:center;padding:70px 20px;color:var(--muted)}

/* ===================================================================
   CART / CHECKOUT
   =================================================================== */
.wc{padding:30px 0 80px}
/* minmax(0,…) not 1fr: a 1fr track is min-content sized, so the nowrap row
   names below would push the grid wider than the viewport. */
.wc-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:22px;align-items:start}
@media (min-width:900px){.wc-grid{grid-template-columns:minmax(0,1.55fr) minmax(0,1fr);gap:36px}}
.panel{background:#fff;border:1px solid var(--line);border-radius:14px;padding:20px}
@media (min-width:768px){.panel{padding:26px}}
.panel h2{font-family:var(--serif);font-size:21px;font-weight:600;color:var(--navy);margin:0 0 16px}
.line{display:flex;gap:14px;padding:15px 0;border-bottom:1px solid var(--line)}
.line:first-of-type{padding-top:0}
.line:last-of-type{border-bottom:none}
.line-img{width:64px;height:64px;border-radius:10px;overflow:hidden;flex:none;background:var(--ph)}
.line-img img{width:100%;height:100%;object-fit:cover}
.line-main{flex:1;min-width:0}
/* row placement, not a card: the name is clamped to one line */
.line-name{
  font-size:15px;font-weight:600;color:var(--navy);margin:0;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.line-meta{font-family:var(--mono);font-size:10px;color:var(--muted);letter-spacing:.12em;text-transform:uppercase;margin:4px 0 0}
.line-save{
  display:inline-block;margin-top:7px;font-family:var(--mono);font-size:9.5px;letter-spacing:.1em;
  text-transform:uppercase;background:rgba(25,167,160,.12);color:#0F7A75;padding:4px 9px;border-radius:999px;
}
.line-right{text-align:right;flex:none;display:flex;flex-direction:column;gap:6px;align-items:flex-end}
.line-price{font-weight:700;color:var(--navy);font-size:15px}
.line-price del{color:var(--muted);font-weight:400;font-size:13px;margin-right:6px}
.qty{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;overflow:hidden}
.qty button{width:28px;height:28px;border:none;background:#fff;cursor:pointer;color:var(--navy);font-size:15px;line-height:1}
.qty button:hover{background:var(--ph)}
.qty span{min-width:26px;text-align:center;font-family:var(--mono);font-size:13px}
.totals{margin-top:6px}
.totals .row{display:flex;justify-content:space-between;align-items:baseline;padding:8px 0;font-size:14px;color:var(--muted)}
.totals .row .v{color:var(--navy);font-weight:600}
.totals .row.save .v{color:#0F7A75}
.totals .row.total{
  padding-top:14px;margin-top:8px;border-top:1px solid var(--line);
  font-family:var(--serif);font-size:20px;font-weight:600;color:var(--navy);
}
.wc-note{
  margin-top:14px;font-family:var(--mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);text-align:center;
}
.field{margin-bottom:14px}
.field label{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.field input,.field select,.field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:10px;background:#fff;
  font-family:var(--sans);font-size:15px;color:var(--ink);outline:none;transition:border-color .18s ease;
}
.field input:focus,.field select:focus{border-color:var(--teal)}
.field-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:12px}
.pay{border:1px solid var(--line);border-radius:10px;padding:14px;margin-bottom:10px;display:flex;gap:11px;align-items:flex-start}
.pay input{margin-top:3px;accent-color:var(--teal)}
.pay b{display:block;font-size:14.5px;color:var(--navy)}
.pay small{display:block;color:var(--muted);font-size:13px;margin-top:3px}

/* ===================================================================
   ORDER RECEIVED
   =================================================================== */
.ty{padding:34px 0 84px}
.ty-pill{
  display:inline-flex;align-items:center;gap:10px;font-family:var(--mono);font-size:10px;
  text-transform:uppercase;letter-spacing:.16em;color:var(--teal);background:#fff;
  border:1px solid var(--line);padding:8px 16px 8px 12px;border-radius:999px;
}
.ty-dot{width:9px;height:9px;border-radius:50%;background:var(--teal);position:relative;flex:none}
.ty-dot::before{content:"";position:absolute;inset:-6px;border:1.5px solid var(--teal);border-radius:50%;animation:ty-pulse 2s ease-out infinite}
@keyframes ty-pulse{0%{transform:scale(.6);opacity:1}100%{transform:scale(1.6);opacity:0}}
.ty-h{font-family:var(--serif);font-size:clamp(34px,6vw,62px);font-weight:600;line-height:1.03;letter-spacing:-.02em;color:var(--navy);margin:18px 0 0}
.ty-h em{font-style:normal;color:var(--teal)}
.ty-sub{font-size:15.5px;line-height:1.7;color:var(--muted);max-width:600px;margin:14px 0 0}
.ty-sub strong{color:var(--navy)}
.ty-meta{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:20px;padding:22px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin:28px 0}
.ty-l{font-family:var(--mono);font-size:9.5px;text-transform:uppercase;letter-spacing:.16em;color:var(--muted);margin-bottom:7px}
.ty-v{font-family:var(--serif);font-size:20px;font-weight:600;color:var(--navy);line-height:1.2}
.ty-addrs{display:grid;grid-template-columns:minmax(0,1fr);gap:22px}
@media (min-width:560px){.ty-addrs{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}}
.ty-addrs address{font-style:normal;font-size:14px;line-height:1.7;color:var(--muted)}
.ty-addrs .name{color:var(--navy);font-weight:600;display:block;margin-bottom:2px;font-size:15px}
.ty-status{margin-top:34px;padding:24px;background:var(--navy);border-bottom:2px solid var(--gold);border-radius:14px}
.ty-status-h{font-family:var(--mono);font-size:10px;text-transform:uppercase;letter-spacing:.18em;color:rgba(255,255,255,.55);margin-bottom:20px}
.ty-steps{display:grid;grid-template-columns:1fr;gap:0}
@media (min-width:640px){.ty-steps{grid-template-columns:repeat(4,1fr);gap:8px}}
.ty-step{position:relative;display:flex;align-items:center;gap:13px;padding:0 0 17px}
@media (min-width:640px){.ty-step{flex-direction:column;align-items:flex-start;gap:10px;padding:0 14px 0 0}}
.ty-step::after{content:"";position:absolute;background:rgba(255,255,255,.18)}
.ty-step::after{top:14px;left:6px;bottom:-4px;width:1.5px}
@media (min-width:640px){.ty-step::after{top:6px;left:14px;right:0;bottom:auto;width:auto;height:1.5px}}
.ty-step:last-child::after{display:none}
.ty-step.done::after{background:var(--gold)}
.ty-sdot{width:14px;height:14px;border-radius:50%;background:var(--navy);border:1.5px solid rgba(255,255,255,.28);position:relative;z-index:1;flex:none}
.ty-step.done .ty-sdot{background:var(--gold);border-color:var(--gold)}
.ty-step.current .ty-sdot{background:var(--teal);border-color:var(--teal);box-shadow:0 0 0 4px rgba(25,167,160,.3)}
.ty-slabel{font-family:var(--mono);font-size:9.5px;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.55);line-height:1.4}
.ty-step.done .ty-slabel,.ty-step.current .ty-slabel{color:#fff}

/* ===================================================================
   CONTENT PAGE + 404
   =================================================================== */
.doc{padding:34px 0 80px}
.doc-inner{max-width:760px}
.doc h1{
  font-family:var(--serif);font-size:clamp(30px,4.2vw,44px);font-weight:600;color:var(--navy);
  letter-spacing:-.015em;line-height:1.1;margin:0 0 22px;padding-bottom:20px;border-bottom:1px solid var(--line);
}
.doc h2{font-family:var(--serif);font-size:22px;font-weight:600;color:var(--navy);margin:32px 0 10px}
.doc p,.doc li{font-size:15.5px;line-height:1.78;color:var(--muted);margin-bottom:14px}
.doc strong{color:var(--navy);font-weight:600}
.doc a{color:var(--teal);font-weight:600}
.doc table{width:100%;border-collapse:collapse;margin:16px 0 20px;font-size:14px}
.doc th,.doc td{text-align:left;padding:10px 12px;border:1px solid var(--line);color:var(--muted)}
.doc th{background:var(--ph);color:var(--navy);font-weight:600}
.e404{text-align:center;padding:90px 0}
.e404 h1{font-family:var(--serif);font-size:clamp(60px,10vw,104px);font-weight:600;color:var(--navy);line-height:1;margin:0}
.e404 p{color:var(--muted);margin:18px 0 26px;font-size:16px}
.rule{width:52px;height:3px;background:var(--gold);margin:16px auto 0}

/* badge and stock pill share the top of the tile — keep them off each other
   on narrow cards */
@media (max-width:560px){
  /* stock moves to the foot of the tile so it never crowds the badge */
  .stock-pill{font-size:8.5px;padding:3px 7px;letter-spacing:.06em;top:auto;bottom:7px;right:7px}
  .card-media .badge{font-size:8.5px;padding:3px 7px;letter-spacing:.06em;top:7px;left:7px}
}

/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES (cart / checkout / account)
   ══════════════════════════════════════════════════════════ */
.woocommerce-notices-wrapper{max-width:1220px;margin:0 auto;padding:14px 32px 0}
body .woocommerce-error,body .woocommerce-message,body .woocommerce-info{background:#FFFFFF;border:1px solid var(--line);border-top:3px solid var(--navy);border-radius:10px;padding:14px 18px;font-size:14.5px;color:var(--ink)}
body .woocommerce-error{border-top-color:#9E3B32}
body .woocommerce-info::before,body .woocommerce-message::before{color:var(--navy)}

/* Kill default blue links on WC pages */
body .woocommerce a,
body .woocommerce-page a,
body .woocommerce table.shop_table a,
body .woocommerce-cart .product-name a,
body .woocommerce-checkout .product-name a,
body .woocommerce ul.order_details a,
body .woocommerce-order-details a,
body .wc-block-cart a,
body .wc-block-checkout a,
body .wc-block-cart-items a,
body .wc-block-cart-item a,
body a.wc-block-components-product-name,
body .wc-block-components-product-name,
body .wp-block-woocommerce-cart-line-items-block a,
body .wp-block-woocommerce-cart a,
body .wp-block-woocommerce-checkout a{
  color:var(--ink) !important;text-decoration:none !important;font-weight:600 !important;transition:color .2s !important;
}
body .woocommerce a:hover,
body .woocommerce-page a:hover,
body .wc-block-cart a:hover,
body .wc-block-checkout a:hover,
body a.wc-block-components-product-name:hover,
body .wc-block-components-product-name:hover{color:var(--teal) !important}

/* Cart product names use the display face */
body .woocommerce-cart .product-name a,
body .wc-block-cart-item__product a,
body a.wc-block-components-product-name,
body .wc-block-components-product-name{
  font-family:var(--serif) !important;font-size:16px !important;font-weight:700 !important;letter-spacing:-.01em !important;
}

/* Buttons keep white text */
body .woocommerce .button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .wc-block-components-button,
body .wc-block-components-checkout-place-order-button,
body .wc-block-cart__submit-button,
body a.wc-block-cart__submit-button,
body .wp-block-woocommerce-proceed-to-checkout-block a,
body .wc-proceed-to-checkout a,
body .wc-proceed-to-checkout .checkout-button,
body a.checkout-button,
body .wc-block-components-button__text,
body .woocommerce ul.products li.product a.button,
body .woocommerce a.button.add_to_cart_button,
body .wc-block-components-product-button__button{
  color:#fff !important;text-decoration:none !important;
}
body .woocommerce .button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .wc-block-components-button,
body .wc-block-cart__submit-button,
body a.checkout-button,
body .wc-proceed-to-checkout .checkout-button{
  background:var(--navy) !important;border-radius:10px !important;font-family:var(--sans) !important;font-weight:600 !important;
}
body .woocommerce .button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .wc-block-components-button:hover,
body .wc-block-cart__submit-button:hover,
body a.checkout-button:hover,
body .wc-proceed-to-checkout .checkout-button:hover{background:var(--navy-deep) !important;color:#fff !important}

/* Notice links stay red + underlined */
body .woocommerce .woocommerce-info a,
body .woocommerce .woocommerce-message a,
body .woocommerce .woocommerce-error a{color:var(--teal) !important;text-decoration:underline !important}

/* Form fields */
body .woocommerce form .form-row input.input-text,
body .woocommerce form .form-row textarea,
body .woocommerce form .form-row select,
body .woocommerce-page input.input-text,
body .woocommerce-page select{
  border-radius:10px !important;border-color:var(--line) !important;font-family:var(--sans) !important;
}
body .woocommerce form .form-row input.input-text:focus,
body .woocommerce form .form-row textarea:focus,
body .woocommerce form .form-row select:focus{border-color:var(--navy) !important;outline:none !important}

/* Checkout / cart headings pick up the display face */
body .woocommerce-cart h1,body .woocommerce-checkout h1,body .woocommerce-account h1,
body .woocommerce-cart h2,body .woocommerce-checkout h2,body .woocommerce-account h2,
body .woocommerce-cart h3,body .woocommerce-checkout h3{font-family:var(--serif) !important;font-weight:700 !important;letter-spacing:-.02em !important}

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq{padding:30px 0 80px}
@media (min-width:768px){.faq{padding:44px 0 96px}}
.faq-body{max-width:820px}
.faq .entry-content{margin-bottom:26px}
.faq .accs{border-top:1px solid var(--line)}
.faq .acc summary{font-size:16.5px;padding:17px 0;gap:20px;align-items:flex-start}
.faq .acc summary .pm{flex:none;margin-top:1px}
.faq .ac{padding-right:36px}
@media (min-width:768px){.faq .acc summary{font-size:18px}}
.faq-foot{
  margin-top:34px;padding:26px 24px;background:#fff;border:1px solid var(--line);
  border-bottom:2px solid var(--teal);border-radius:14px;
}
.faq-foot h2{font-family:var(--serif);font-size:21px;font-weight:600;color:var(--navy);margin:0 0 6px}
.faq-foot p{color:var(--muted);font-size:14.5px;margin:0 0 16px}
.faq-ruo{
  font-family:var(--mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);margin:16px 0 0 !important;
}
/* ══════════════════════════════════════════════════════════
   AGE + RESEARCH-USE GATE (theme's own)
   Only renders when the homepage plugin is inactive — the plugin ships its
   own gate and its own .ruo-gate styles. Blocks the whole site until the
   visitor attests to both. Markup stays in the DOM so crawlers still index
   the page.
   ══════════════════════════════════════════════════════════ */
.rs-gate{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;
  padding:24px;background:rgba(10,27,45,.94);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.rs-gate[hidden]{display:none}
.rs-gate-panel{background:#FFFFFF;border:1px solid var(--line);border-top:2px solid var(--teal);
  max-width:520px;width:100%;padding:40px 40px 32px;max-height:calc(100dvh - 48px);overflow-y:auto;
  box-shadow:0 40px 90px rgba(0,0,0,.45)}
.rs-gate-mk{display:flex;justify-content:center;margin-bottom:22px}
.rs-gate-mk svg{width:46px;height:46px}
.rs-gate-k{font-family:var(--mono);font-size:10px;font-weight:500;letter-spacing:.34em;text-transform:uppercase;
  color:var(--teal);text-align:center;display:block;margin-bottom:12px}
.rs-gate-h{font-family:var(--serif);font-size:clamp(25px,4.4vw,31px);font-weight:400;letter-spacing:.005em;
  line-height:1.16;text-align:center;margin-bottom:14px;color:var(--navy)}
.rs-gate-p{font-size:14.5px;line-height:1.7;color:var(--muted);text-align:center;margin-bottom:26px}
.rs-gate-checks{display:flex;flex-direction:column;gap:2px;border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);padding:6px 0;margin-bottom:24px}
.rs-gate-row{display:flex;gap:13px;align-items:flex-start;padding:15px 2px;cursor:pointer;
  font-size:14px;line-height:1.6;color:var(--navy)}
.rs-gate-row + .rs-gate-row{border-top:1px solid var(--line)}
.rs-gate-row input{position:absolute;opacity:0;width:0;height:0}
.rs-gate-box{width:21px;height:21px;border:1px solid var(--muted);border-radius:8px;flex-shrink:0;
  margin-top:1px;display:flex;align-items:center;justify-content:center;color:transparent;font-size:12px;
  transition:background .18s,border-color .18s,color .18s}
.rs-gate-row:hover .rs-gate-box{border-color:var(--teal)}
.rs-gate-row input:checked ~ .rs-gate-box{background:var(--teal);border-color:var(--teal);color:#fff}
.rs-gate-row input:focus-visible ~ .rs-gate-box{outline:2px solid var(--teal);outline-offset:2px}
.rs-gate-enter{width:100%;padding:16px;border:none;border-radius:8px;background:var(--teal);color:#fff;
  font-family:var(--sans);font-size:14.5px;font-weight:600;letter-spacing:.01em;cursor:pointer;
  transition:background .2s,box-shadow .25s}
.rs-gate-enter:hover:not(:disabled){background:var(--navy-deep);box-shadow:0 14px 30px rgba(25,167,160,.28)}
.rs-gate-enter:disabled{background:var(--ph);color:var(--muted);cursor:not-allowed;box-shadow:none}
.rs-gate-exit{display:block;width:100%;margin-top:14px;padding:6px;background:none;border:none;cursor:pointer;
  font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);transition:color .2s}
.rs-gate-exit:hover{color:var(--navy)}
.rs-gate-fine{margin-top:22px;padding-top:20px;border-top:1px solid var(--line);font-size:11.5px;
  line-height:1.7;color:var(--muted);text-align:center}
.rs-gate-fine a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.rs-gate-fine a:hover{color:var(--teal)}
/* Declined state */
.rs-gate-declined{text-align:center}
.rs-gate-declined .rs-gate-h{margin-bottom:14px}
.rs-gate-declined p{font-size:14.5px;line-height:1.7;color:var(--muted);margin-bottom:24px}
.rs-gate-back{background:none;border:1px solid var(--line);border-radius:8px;padding:13px 26px;
  font-family:var(--sans);font-size:13.5px;font-weight:600;color:var(--navy);cursor:pointer;transition:border-color .2s,color .2s}
.rs-gate-back:hover{border-color:var(--teal);color:var(--teal)}
body.rs-gated{overflow:hidden}
@media(max-width:560px){
  .rs-gate{padding:14px}
  .rs-gate-panel{padding:30px 22px 24px}
  .rs-gate-p{font-size:13.5px;margin-bottom:22px}
  .rs-gate-row{font-size:13.5px;padding:14px 2px}
}

.rs-gate-mk img{height:30px;width:auto;display:block}
