/* ===== Bless God Shop — WHITE storefront theme (self-contained) =====
   Shared by the in-app module (index.html) and the public page (shop.html).
   Intentionally light so the Shop reads as a clean white block, clearly
   separated from the dark notifications/communications part of the app. */
.shopSection{
  --s-bg:#ffffff; --s-text:#15120c; --s-muted:#6b6660; --s-line:#e7e3da;
  --s-soft:#f6f4ef; --s-gold:#9c7a2f; --s-g1:#f3d78b; --s-g2:#d7b56d;
  --s-ink:#1a1505; --s-bad:#c0392b;
  box-sizing:border-box;
  /* No card: the shop sits directly on the page backdrop. Only the product
     image squares read as white boxes. */
  margin:8px 0 6px;
  background:transparent;
  color:var(--s-text);
  border:0;
  border-radius:0;
  padding:8px 18px 22px;
  box-shadow:none;
}
.shopSection *,.shopModal *,.shopDrawer *{box-sizing:border-box}

/* "Bless God Shop" title centered across the top of the store. */
.shopHead{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;margin:6px 0 20px}
.shopTitle{margin:0;color:var(--s-text);font-size:26px;font-weight:950;letter-spacing:-.03em}
.shopSub{display:block;color:var(--s-gold);font-size:11px;letter-spacing:.1em;text-transform:uppercase;font-weight:800}
.shopBrowseAll{
  flex:0 0 auto;border:1px solid var(--s-text);
  background:var(--s-text);color:#fff;
  border-radius:999px;padding:9px 18px;font-size:12px;font-weight:800;cursor:pointer;margin-top:2px;
}
.shopBrowseAll:hover{opacity:.88}

/* "Shop by Type" — every category laid out in a wrapping grid (not a scroll
   rail): 2 per row on phone, up to 5 per row on desktop. Square white boxes,
   no rounded edges, no borders/shadows. */
.shopStyleRow{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.styleTile{
  cursor:pointer;padding:0;border:0;background:transparent;
  color:inherit;font:inherit;text-align:center;display:flex;flex-direction:column;gap:8px;
  transition:transform .18s ease;
}
.styleTile:hover{transform:translateY(-3px)}
/* Square white boxes — no rounded edges. */
.styleTileImg{
  display:block;width:100%;aspect-ratio:1/1;border-radius:0;background:var(--s-soft) center/cover no-repeat;
}
.styleTileMeta{display:flex;align-items:center;justify-content:center}
.styleTileName{color:var(--s-text);font-size:13px;font-weight:800;letter-spacing:-.01em}

@media(min-width:700px){ .shopStyleRow{grid-template-columns:repeat(4,1fr)} }
@media(min-width:1000px){ .shopStyleRow{grid-template-columns:repeat(5,1fr)} }

.shopBlock{margin-top:30px}
/* Highlighted, centered section headers (gold hairlines flank the title). */
.shopBlockHead{display:flex;flex-direction:column;align-items:center;text-align:center;gap:7px;margin-bottom:16px}
.shopBlockHead h3{
  margin:0;color:var(--s-text);font-size:21px;font-weight:950;letter-spacing:.01em;text-transform:uppercase;
  display:inline-flex;align-items:center;gap:13px;
}
.shopBlockHead h3::before,
.shopBlockHead h3::after{content:"";width:32px;height:2px;border-radius:2px;background:linear-gradient(90deg,transparent,var(--s-g2))}
.shopBlockHead h3::after{background:linear-gradient(90deg,var(--s-g2),transparent)}
.shopSeeAll{background:none;border:0;color:var(--s-gold);font-weight:800;font-size:12px;letter-spacing:.04em;text-transform:uppercase;cursor:pointer;padding:2px 4px}
.shopSeeAll:hover{text-decoration:underline}

/* Rails: horizontal scroll. On phone, snapping is MANDATORY so a swipe always
   lands with whole product boxes in view (2 visible at a time). Card width is
   sized so exactly 2 fit the viewport on phones, scaling up to 5 on desktop. */
.shopRail{display:flex;gap:14px;overflow-x:auto;padding-bottom:8px;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;scrollbar-width:none}
.shopRail::-webkit-scrollbar{display:none}
/* 2 cards per phone viewport. Container-relative (50% of the rail minus half
   the gap) so it never overflows regardless of the parent's padding. */
.shopRail .prodCard{flex:0 0 calc(50% - 7px);scroll-snap-align:start}
/* Grid (Browse all / collection): 2-up phone → up to 5-up desktop. */
.shopGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.prodCard{
  background:transparent;border:0;border-radius:0;overflow:visible;
  cursor:pointer;text-align:left;padding:0;color:inherit;font:inherit;
  transition:transform .18s ease;
}
.prodCard:hover{transform:translateY(-3px)}
.prodImgWrap{position:relative;width:100%;aspect-ratio:1/1;border-radius:0;overflow:hidden;background:var(--s-soft)}
.prodImg{width:100%;height:100%;aspect-ratio:1/1;object-fit:cover;background:var(--s-soft);display:block}
.prodSaleBadge{
  position:absolute;top:8px;left:8px;z-index:2;
  background:var(--s-bad);color:#fff;font-size:12px;font-weight:900;letter-spacing:.01em;
  padding:4px 8px;border-radius:8px;box-shadow:0 2px 8px rgba(192,57,43,.4);
}
.prodInfo{padding:9px 2px 4px}
.prodName{
  margin:0;color:var(--s-text);font-size:13px;font-weight:600;line-height:1.32;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.prodRating{display:flex;align-items:center;gap:5px;margin-top:5px;min-height:15px}
.prodStars{font-size:13px;line-height:1;letter-spacing:1px;color:var(--s-g2)}
.prodStars .starE{color:#d9d4c8}
.prodStars .starH{
  background:linear-gradient(90deg,var(--s-g2) 50%,#d9d4c8 50%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;
}
.prodReviews{color:var(--s-muted);font-size:11px;font-weight:700}
.prodPriceRow{display:flex;align-items:baseline;gap:7px;margin-top:5px;flex-wrap:wrap}
.prodPrice{color:var(--s-text);font-size:15px;font-weight:900}
.prodCompare{color:var(--s-muted);font-size:12px;font-weight:600;text-decoration:line-through}
.prodSoldOut{margin-top:5px;color:var(--s-bad);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}

.shopSkeleton{flex:0 0 calc(50% - 7px);aspect-ratio:1/1;border-radius:0;background:linear-gradient(100deg,#efece6 30%,#f8f6f2 50%,#efece6 70%);background-size:200% 100%;animation:shopShimmer 1.2s infinite}
.shopGrid .shopSkeleton{flex:none;width:auto}

/* Desktop / wide: rails show ~4-5 boxes, grid goes up to 5 columns. */
@media(min-width:700px){
  .shopRail .prodCard,.shopRail .shopSkeleton{flex-basis:calc(25% - 11px)}
  .shopGrid{grid-template-columns:repeat(4,1fr)}
}
@media(min-width:1000px){
  .shopRail .prodCard,.shopRail .shopSkeleton{flex-basis:calc(20% - 12px)}
  .shopGrid{grid-template-columns:repeat(5,1fr)}
}
@keyframes shopShimmer{from{background-position:200% 0}to{background-position:-200% 0}}
.shopEmpty{color:var(--s-muted);font-size:13px;padding:8px 2px}

/* Trust strip below the shop — checkout assurances + accepted payment logos. */
.shopTrust{margin-top:34px;padding-top:22px;border-top:1px solid var(--s-line);text-align:center}
.shopTrustNote{margin:0 0 14px;color:var(--s-muted);font-size:12px;font-weight:700;letter-spacing:.02em}
.shopPayRow{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}
.shopPayRow img{height:26px;width:auto;border:1px solid var(--s-line);border-radius:6px;background:#fff;padding:3px 6px}

/* Join the Bless God Movement — FULL-BLEED looping video background with a
   white text overlay (mirrors the landing intro hero). Breaks out of .shopWrap. */
.movementHero{
  position:relative;margin-top:40px;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;
  width:100vw;height:88vh;min-height:540px;max-height:860px;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  background:#0b0b0b;color:#fff;text-align:center;
}
/* The native video covers the full section like the landing intro hero. */
.movementBg{position:absolute;inset:0;overflow:hidden;pointer-events:none;background:#0b0b0b}
.movementBg video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border:0;
}
.movementHero::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(8,8,8,.45) 0%,rgba(8,8,8,.35) 45%,rgba(8,8,8,.78) 100%)}
.movementInner{position:relative;z-index:2;max-width:680px;margin:0 auto;padding:0 22px}
.movementEyebrow{display:inline-block;color:var(--s-g1);font-size:10px;font-weight:800;letter-spacing:.2em;text-transform:uppercase;margin-bottom:16px;text-shadow:0 1px 10px rgba(0,0,0,.6)}
.movementTitle{margin:0 0 26px;font-family:Oswald,"Arial Narrow",sans-serif;font-size:clamp(42px,11vw,86px);line-height:.96;font-weight:500;letter-spacing:.01em;text-transform:uppercase;color:#fff;text-wrap:balance;text-shadow:0 2px 24px rgba(0,0,0,.55)}
/* Emphasize the "Bless God" words — heaviest Oswald weight + gold. */
.movementTitle .mtBrand{font-weight:700;color:var(--s-g1)}
.movementLead{margin:0 auto 26px;max-width:520px;font-size:17px;line-height:1.5;font-weight:800;color:var(--s-g1);text-shadow:0 1px 12px rgba(0,0,0,.55)}
/* Two-button row like the top hero: primary gold + secondary outline. */
.movementActions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.movementCta{display:inline-block;padding:15px 34px;border-radius:12px;background:linear-gradient(180deg,var(--s-g1),var(--s-g2));color:var(--s-ink);font-weight:900;font-size:15px;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;border:2px solid var(--s-g1)}
.movementCta:hover{filter:brightness(1.06)}
.movementCtaAlt{background:rgba(0,0,0,.28);color:#fff;border:2px solid var(--s-g1)}
.movementCtaAlt:hover{background:rgba(0,0,0,.45);filter:none}

/* Get Involved — Ruslan KD / Bless God Studios channels + podcast platforms. */
.getInvolved{margin-top:44px;text-align:center}
.getInvolvedMission{margin:0 auto 6px;max-width:620px;font-size:clamp(18px,4.4vw,26px);line-height:1.25;font-weight:900;letter-spacing:-.01em;color:var(--s-text);text-wrap:balance}
/* Sub-headers mirror the shop's section heads (gold hairline flanks). */
.getInvolvedGroupTitle{
  margin:34px 0 16px;color:var(--s-text);font-size:clamp(16px,4.6vw,21px);font-weight:950;letter-spacing:.01em;text-transform:uppercase;white-space:nowrap;
  display:inline-flex;align-items:center;gap:13px;
}
.getInvolvedGroupTitle::before,
.getInvolvedGroupTitle::after{content:"";width:32px;height:2px;border-radius:2px;background:linear-gradient(90deg,transparent,var(--s-g2))}
.getInvolvedGroupTitle::after{background:linear-gradient(90deg,var(--s-g2),transparent)}
.channelGrid{display:grid;grid-template-columns:1fr;gap:14px;text-align:left}
.channelCard{display:flex;flex-direction:column;gap:12px;padding:18px;border:1px solid var(--s-line);border-radius:14px;background:#fff}
.channelTop{display:flex;align-items:center;gap:12px}
.channelLogo{width:34px;height:34px;flex:0 0 auto;object-fit:contain}
.channelName{margin:0;font-size:15px;font-weight:900;letter-spacing:-.01em;color:var(--s-text)}
.channelDesc{margin:0;font-size:13px;line-height:1.55;color:var(--s-muted)}
.channelBtn{align-self:flex-start;margin-top:2px;display:inline-flex;align-items:center;gap:7px;padding:10px 18px;border-radius:10px;background:var(--s-ink);color:#fff;font-size:13px;font-weight:800;letter-spacing:.02em;text-decoration:none}
.channelBtn:hover{opacity:.9}
@media(min-width:680px){ .channelGrid{grid-template-columns:1fr 1fr} }

/* Final "download the app" reminder — full-bleed gold band. */
.appReminder{
  position:relative;margin-top:44px;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;width:100vw;
  background:linear-gradient(135deg,var(--s-g1),var(--s-g2));color:var(--s-ink);
  padding:40px 22px;text-align:center;
}
.appReminderTitle{margin:0 0 8px;font-size:clamp(24px,5.5vw,34px);font-weight:950;letter-spacing:-.01em;text-transform:uppercase}
.appReminderSub{margin:0 auto 20px;max-width:460px;font-size:14px;line-height:1.55;color:rgba(26,21,5,.82)}
.appReminderBtn{display:inline-block;padding:14px 32px;border-radius:12px;background:var(--s-ink);color:#fff;font-weight:900;font-size:15px;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;border:0;cursor:pointer}
.appReminderBtn:hover{opacity:.92}

/* Display headings use Oswald (matches the landing intro hero); body stays Inter.
   Oswald is condensed and tops out at 700, so weight 700 reads as its bold. */
.shopTitle,
.shopBlockHead h3,
.getInvolvedGroupTitle,
.appReminderTitle{
  font-family:Oswald,"Arial Narrow",sans-serif;
  font-weight:700;
  letter-spacing:.01em;
}

/* Cart floating button */
.shopCartFab{
  position:fixed;right:16px;bottom:calc(18px + env(safe-area-inset-bottom));
  z-index:8000;width:56px;height:56px;border-radius:50%;
  background:linear-gradient(180deg,#f3d78b,#d7b56d);
  border:1px solid rgba(154,122,47,.5);box-shadow:0 12px 32px rgba(0,0,0,.35);
  display:none;align-items:center;justify-content:center;cursor:pointer;
}
.shopCartFab.show{display:flex}
.shopCartFab svg{width:26px;height:26px;color:#1a1505}
.cartBadge{
  position:absolute;top:-5px;right:-5px;min-width:22px;height:22px;border-radius:11px;
  background:#e02525;color:#fff;font-size:12px;font-weight:800;
  display:none;align-items:center;justify-content:center;padding:0 5px;border:2px solid #fff;
}
.cartBadge.show{display:flex}

/* Pay It Forward donation popup (GHL form embed) */
.payForwardModal{
  --s-text:#15120c; --s-muted:#6b6660; --s-line:#e7e3da; --s-soft:#f6f4ef;
  --s-gold:#9c7a2f; --s-g1:#f3d78b; --s-g2:#d7b56d; --s-ink:#1a1505;
  position:fixed;inset:0;z-index:9880;display:none;align-items:center;justify-content:center;padding:16px;
}
.payForwardModal.show{display:flex}
.payForwardOverlay{position:absolute;inset:0;background:rgba(20,17,12,.6);backdrop-filter:blur(5px);cursor:pointer}
.payForwardCard{
  position:relative;z-index:1;width:100%;max-width:560px;max-height:92vh;display:flex;flex-direction:column;
  background:#fff;color:var(--s-text);border-radius:18px;overflow:hidden;box-shadow:0 24px 70px rgba(0,0,0,.5);
}
.payForwardCard .shopModalClose{position:absolute;top:12px;right:12px}
.payForwardHead{padding:22px 22px 14px;border-bottom:1px solid var(--s-line)}
.payForwardHead h2{margin:0 0 6px;font-family:Oswald,"Arial Narrow",sans-serif;font-weight:700;font-size:26px;text-transform:uppercase;letter-spacing:.01em;color:var(--s-text)}
.payForwardHead p{margin:0;color:var(--s-muted);font-size:14px;line-height:1.45;max-width:42ch}
.payForwardBody{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;background:var(--s-soft)}
.payForwardFrame{display:block;width:100%;min-height:78vh;border:0;background:#fff}

/* Shop modal (product + collection/browse) */
.shopModal{
  --s-text:#15120c; --s-muted:#6b6660; --s-line:#e7e3da; --s-soft:#f6f4ef;
  --s-gold:#9c7a2f; --s-g1:#f3d78b; --s-g2:#d7b56d; --s-ink:#1a1505; --s-bad:#c0392b;
  position:fixed;inset:0;z-index:9860;display:none;
}
.shopModal.show{display:block}
.shopModalOverlay{position:absolute;inset:0;background:rgba(20,17,12,.5);backdrop-filter:blur(4px);cursor:pointer}
/* Full-screen product page popup. */
.shopModalCard{
  position:absolute;inset:0;z-index:1;width:100%;height:100%;background:#fff;color:var(--s-text);
  overflow-y:auto;-webkit-overflow-scrolling:touch;
}
.shopModalClose{
  position:fixed;top:14px;right:14px;z-index:5;width:44px;height:44px;border-radius:12px;
  border:1px solid #ff5a5a;background:#e02525;color:#fff;font-size:28px;font-weight:900;
  cursor:pointer;padding:0;display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 14px rgba(224,37,37,.45);
}
.shopModalClose:hover{background:#ff3a3a}
.shopModalPad{padding:22px;max-width:1040px;margin:0 auto}
/* Product detail: stacked on mobile, two columns on wider screens. */
.pdLayout{display:flex;flex-direction:column;gap:22px}
.pdGallery{min-width:0}
.pdMain{min-width:0}
@media(min-width:860px){
  .pdLayout{flex-direction:row;align-items:flex-start;gap:40px}
  .pdGallery{flex:1 1 50%;position:sticky;top:22px}
  .pdMain{flex:1 1 50%}
}
/* Gallery carousel: main stage + square prev/next arrows + dot indicators. */
.pdStage{position:relative}
.pdImg{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;background:var(--s-soft);border-radius:16px;border:1px solid var(--s-line)}
.pdNav{position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:10px;border:1px solid var(--s-line);background:rgba(255,255,255,.94);color:var(--s-text);font-size:22px;font-weight:700;line-height:1;cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,.14)}
.pdNav:hover{background:#fff;border-color:var(--s-g2)}
.pdNavPrev{left:10px}
.pdNavNext{right:10px}
.pdDots{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;margin-top:12px}
.pdDot{width:8px;height:8px;padding:0;border-radius:999px;border:0;background:var(--s-line);cursor:pointer}
.pdDot.sel{background:var(--s-text);transform:scale(1.25)}
.pdTitle{margin:4px 0 8px;color:var(--s-text);font-size:clamp(22px,4.4vw,30px);font-weight:900;letter-spacing:-.02em;line-height:1.15;text-wrap:balance}
.pdPrice{color:var(--s-text);font-size:22px;font-weight:900;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.pdCompare{color:var(--s-muted);font-size:16px;font-weight:700;text-decoration:line-through}
.pdSaleTag{font-size:12px;font-weight:900;color:#fff;background:#e02525;border-radius:6px;padding:3px 8px;letter-spacing:.02em}
/* Inline rating summary (clickable → scrolls to reviews) */
.pdRateLink{display:inline-flex;align-items:center;gap:8px;margin:0 0 12px;background:none;border:0;padding:0;cursor:pointer;color:var(--s-muted);font-size:13px;font-weight:700}
.pdRateLink .prodStars{font-size:15px}
.pdRateLink .pdRateCount{text-decoration:underline}
/* Reviews summary block (aggregate from Storefront API) */
.pdReviews{margin-top:40px;padding-top:28px;border-top:1px solid var(--s-line)}
.pdReviewsHead{margin:0 0 18px;color:var(--s-text);font-size:20px;font-weight:900;letter-spacing:-.01em;font-family:Oswald,"Arial Narrow",sans-serif;text-transform:uppercase}
.pdReviewsSummary{display:flex;align-items:center;gap:22px;flex-wrap:wrap;background:var(--s-soft);border:1px solid var(--s-line);border-radius:16px;padding:20px 22px}
.pdRateBig{display:flex;flex-direction:column;align-items:center;gap:2px;min-width:96px}
.pdRateNum{font-size:42px;font-weight:900;line-height:1;color:var(--s-text)}
.pdRateOf{font-size:12px;color:var(--s-muted);font-weight:700}
.pdRateMeta{flex:1;min-width:180px}
.pdRateMeta .prodStars{font-size:22px}
.pdRateBar{margin-top:10px;height:10px;border-radius:5px;background:#e7e3da;overflow:hidden}
.pdRateBarFill{height:100%;background:linear-gradient(90deg,var(--s-g2),var(--s-g1))}
.pdRateCountLine{margin-top:8px;color:var(--s-muted);font-size:13px;font-weight:700}
.pdReviewsCta{display:inline-flex;align-items:center;gap:8px;margin-top:18px;padding:13px 24px;border-radius:12px;border:1px solid var(--s-line);background:#fff;color:var(--s-text);font-size:14px;font-weight:800;text-decoration:none;cursor:pointer}
.pdReviewsCta:hover{border-color:var(--s-g2);background:var(--s-soft)}
.pdReviewsNote{margin:14px 0 0;color:var(--s-muted);font-size:12.5px;line-height:1.5}
/* Photo-review grid (baked social proof, mirrors blessgod.co) */
.pdRevGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:20px}
@media(min-width:760px){.pdRevGrid{grid-template-columns:repeat(4,1fr)}}
.pdRevCard{margin:0;display:flex;flex-direction:column;background:#fff;border:1px solid var(--s-line);border-radius:14px;overflow:hidden}
.pdRevImg{width:100%;aspect-ratio:1/1;object-fit:cover;background:var(--s-soft)}
.pdRevBody{padding:12px 13px 14px}
.pdRevStars{font-size:14px;color:var(--s-g2);margin-bottom:6px}
.pdRevText{margin:0 0 10px;color:#4a463f;font-size:13px;line-height:1.5}
.pdRevAuthor{display:flex;flex-direction:column;gap:2px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.02em;color:var(--s-text)}
.pdRevBadge{font-size:11px;font-weight:700;text-transform:none;letter-spacing:0;color:#2e7d32}
.optGroup{margin-top:16px}
.optLabel{font-size:11px;color:var(--s-muted);margin-bottom:8px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.optLabel .optSel{margin-left:8px;color:var(--s-text);text-transform:none;letter-spacing:0;font-weight:700}
.optVals{display:flex;flex-wrap:wrap;gap:8px}
.optVal{padding:9px 15px;border-radius:10px;border:1px solid var(--s-line);background:var(--s-soft);color:var(--s-text);font-weight:700;font-size:13px;cursor:pointer;transition:border-color .12s,background .12s}
.optVal:hover{border-color:var(--s-text)}
.optVal.sel{border-color:var(--s-text);background:var(--s-text);color:#fff}
.optVal.disabled{opacity:.4;text-decoration:line-through;cursor:not-allowed}
/* Compact pills (sizes etc.) so many fit on one row, never full width. */
.optVals--compact{gap:8px}
.optVal--compact{flex:0 0 auto;min-width:50px;padding:10px 12px;text-align:center;border-radius:10px;font-size:13px;line-height:1}
.shopBtnPrimary{
  width:100%;margin-top:18px;padding:15px;border-radius:13px;border:1px solid rgba(154,122,47,.5);
  background:linear-gradient(180deg,#f3d78b,#d7b56d);color:#1a1505;font-weight:900;font-size:15px;cursor:pointer;
}
.shopBtnPrimary:disabled{opacity:.5;cursor:not-allowed}
.shopBtnPrimary:not(:disabled):hover{filter:brightness(1.04)}
/* Add to Cart with price shown inside the button. */
.pdAddBtn{display:flex;align-items:center;justify-content:center;gap:10px;text-transform:uppercase;letter-spacing:.03em}
.pdAddPrice{font-weight:900}
.pdAddPrice::before{content:"\2014";margin-right:8px;opacity:.5;font-weight:700}
/* Featured highlighted review (mirrors the live product page). */
.pdFeatRev{margin-top:20px;padding:18px;border:1px solid var(--s-line);border-radius:14px;background:var(--s-soft);text-align:center}
.pdFeatStars{font-size:16px;color:var(--s-g2);margin-bottom:8px}
.pdFeatQuote{margin:0 0 10px;color:var(--s-text);font-size:15px;line-height:1.55;font-style:italic}
.pdFeatAuthor{display:flex;flex-direction:column;gap:3px;align-items:center;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.03em;color:var(--s-text)}
/* Collapsible description accordion */
.pdAcc{margin-top:20px;border-top:1px solid var(--s-line);border-bottom:1px solid var(--s-line)}
.pdAccHead{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 2px;cursor:pointer;list-style:none;font-family:Oswald,"Arial Narrow",sans-serif;font-weight:700;font-size:16px;text-transform:uppercase;letter-spacing:.02em;color:var(--s-text)}
.pdAccHead::-webkit-details-marker{display:none}
.pdAccIcon{position:relative;width:16px;height:16px;flex:0 0 auto}
.pdAccIcon::before,.pdAccIcon::after{content:"";position:absolute;background:var(--s-text);border-radius:2px;transition:opacity .15s}
.pdAccIcon::before{top:7px;left:0;width:16px;height:2px}
.pdAccIcon::after{top:0;left:7px;width:2px;height:16px}
.pdAcc[open] .pdAccIcon::after{opacity:0}
.pdRte{padding:0 2px 18px;color:#4a463f;font-size:14px;line-height:1.65}
.pdRte p{margin:0 0 12px}
.pdRte h1,.pdRte h2,.pdRte h3,.pdRte h4{margin:16px 0 8px;color:var(--s-text);font-weight:900;line-height:1.25}
.pdRte h1{font-size:19px}.pdRte h2{font-size:17px}.pdRte h3,.pdRte h4{font-size:15px}
.pdRte ul,.pdRte ol{margin:0 0 12px;padding-left:20px}
.pdRte li{margin:0 0 6px}
.pdRte a{color:var(--s-gold);text-decoration:underline;text-underline-offset:2px}
.pdRte strong,.pdRte b{font-weight:800;color:var(--s-text)}
.pdRte img{max-width:100%;height:auto;border-radius:10px;margin:8px 0}
.pdRte table{width:100%;border-collapse:collapse;margin:8px 0;font-size:13px}
.pdRte th,.pdRte td{border:1px solid var(--s-line);padding:7px 9px;text-align:left}
.pdRte th{background:var(--s-soft);font-weight:800}
.shopModalHead{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--s-line);padding:18px 60px 16px 22px;z-index:2}
.shopModalHead h2{margin:0;color:var(--s-text);font-size:19px;font-weight:900;letter-spacing:-.02em}
.shopModalHead span{display:block;margin-top:2px;color:var(--s-muted);font-size:12px}
.shopLoadMore{
  display:block;margin:16px auto 4px;padding:11px 22px;border-radius:11px;
  border:1px solid var(--s-line);background:var(--s-soft);color:var(--s-text);font-weight:800;font-size:13px;cursor:pointer;
}
.shopLoadMore:hover{border-color:var(--s-g2)}

/* Cart drawer */
.shopDrawer{
  --s-text:#15120c; --s-muted:#6b6660; --s-line:#e7e3da; --s-soft:#f6f4ef;
  --s-gold:#9c7a2f; --s-bad:#c0392b;
  position:fixed;inset:0;z-index:9880;display:none;
}
.shopDrawer.show{display:block}
.shopDrawerOverlay{position:absolute;inset:0;background:rgba(20,17,12,.55);backdrop-filter:blur(5px)}
/* Bottom sheet: slides UP from the bottom (not in from the right) so it never
   overlaps the product layout on the side. */
.shopDrawerPanel{
  position:absolute;left:0;right:0;bottom:0;width:100%;max-width:560px;margin:0 auto;
  max-height:86vh;background:#fff;color:var(--s-text);
  border-top:1px solid var(--s-line);border-top-left-radius:20px;border-top-right-radius:20px;
  display:flex;flex-direction:column;
  transform:translateY(100%);transition:transform .3s cubic-bezier(.2,.9,.2,1);box-shadow:0 -14px 44px rgba(0,0,0,.4);
}
.shopDrawer.show .shopDrawerPanel{transform:translateY(0)}
.shopDrawerHead{display:flex;align-items:center;justify-content:space-between;padding:18px 18px 16px;border-bottom:1px solid var(--s-line)}
.shopDrawerHead h2{margin:0;color:var(--s-text);font-size:18px;font-weight:900}
.shopDrawerBody{flex:1;overflow-y:auto;padding:6px 18px}
.shopDrawerFoot{padding:16px 18px calc(18px + env(safe-area-inset-bottom));border-top:1px solid var(--s-line)}
.cartLine{display:flex;gap:12px;padding:14px 0;border-bottom:1px solid var(--s-line)}
.cartLineImg{width:62px;height:62px;border-radius:10px;object-fit:cover;background:var(--s-soft);flex:0 0 auto}
.cartLineInfo{flex:1;min-width:0}
.cartLineName{color:var(--s-text);font-size:13px;font-weight:700;line-height:1.3}
.cartLineVar{color:var(--s-muted);font-size:12px;margin-top:2px}
.cartLinePrice{color:var(--s-text);font-size:13px;font-weight:800;margin-top:4px}
.qtyRow{display:flex;align-items:center;gap:10px;margin-top:8px}
.qtyBtn{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;padding:0;border-radius:8px;border:1px solid var(--s-line);background:var(--s-soft);color:var(--s-text);font-size:16px;font-weight:800;line-height:1;text-align:center;cursor:pointer}
.qtyBtn:hover{border-color:var(--s-gold)}
.qtyNum{color:var(--s-text);font-size:14px;font-weight:700;min-width:18px;text-align:center}
.cartRemove{background:none;border:0;color:var(--s-bad);font-size:12px;font-weight:700;cursor:pointer;margin-left:auto;padding:4px}
.cartSubtotal{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.cartSubtotal span{color:var(--s-muted);font-size:13px}
.cartSubtotal strong{color:var(--s-text);font-size:18px;font-weight:900}
.cartShipNote{text-align:center;color:var(--s-muted);font-size:11px;margin-top:10px}
.cartEmpty{text-align:center;color:var(--s-muted);font-size:14px;padding:48px 16px}
