/** Shopify CDN: Minification failed

Line 905:0 Unexpected "}"
Line 1832:0 Unexpected "}"

**/
/* ================================================================
   CorePeptides — theme.css v5
   Pixel-perfect match to reference images
   ================================================================ */

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  background:#0c0c0c;color:#fff;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  display:flex;flex-direction:column;min-height:100vh;
}
main{flex:1}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{background:none;border:none;cursor:pointer;font-family:inherit;color:inherit}
input{font-family:inherit}
.skip-link{position:absolute;top:-60px;left:0;z-index:9999;background:#fff;color:#000;padding:8px 16px;font-size:0.8rem;transition:top 0.2s}
.skip-link:focus{top:0}
::-webkit-scrollbar{width:2px}
::-webkit-scrollbar-track{background:#000}
::-webkit-scrollbar-thumb{background:#2a2a2a}

/* ── ANNOUNCEMENT BAR ── */
/* ── Announcement bar ── */
.ann-bar{
  position:fixed;top:0;left:0;right:0;
  z-index:800;
  height:36px;
  display:flex;align-items:center;justify-content:center;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,0.1);
  text-decoration:none;
  animation:annFadeIn 0.6s ease both;
  transition:background 0.2s;
}
.ann-bar:hover{background:#0a0a0a;}
@keyframes annFadeIn{from{opacity:0;transform:translateY(-100%)}to{opacity:1;transform:translateY(0)}}
.ann-bar-inner{
  display:inline-flex;align-items:center;gap:9px;
  font-size:0.6rem;font-weight:700;
  letter-spacing:0.22em;text-transform:uppercase;
  color:#fff;white-space:nowrap;
}
.ann-truck{flex-shrink:0;opacity:0.85;}
@media(max-width:600px){
  .ann-bar{height:32px;}
  .ann-bar-inner{font-size:0.52rem;letter-spacing:0.14em;gap:7px;}
  .ann-truck{display:none;}
}

/* ================================================================
   HEADER — matches reference exactly
   ================================================================ */
.site-header{
  position:fixed;top:36px;left:0;right:0;z-index:700;
  background:rgba(12,12,12,0.85);
  backdrop-filter:blur(24px) saturate(150%);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  border-bottom:1px solid rgba(255,255,255,0.055);
  transition:background 0.3s;
}
@media(max-width:600px){.site-header{top:32px;}}
.hdr{
  height:72px;display:flex;align-items:center;
  justify-content:space-between;padding:0 50px;
}

/* Logo */
.hdr-logo,.footer-logo{display:flex;align-items:center;gap:11px;flex-shrink:0}
.hdr-logo-icon{width:44px;height:44px;flex-shrink:0;object-fit:contain;display:block}
.hdr-logo-text{display:flex;flex-direction:column;line-height:1}
.hlt-core{font-size:1.3rem;font-weight:800;letter-spacing:0.1em;color:#fff}
.hlt-peptides{font-size:0.47rem;font-weight:400;letter-spacing:0.45em;color:#777;margin-top:3px}

/* Nav links — reference shows white active, grey inactive */
.hdr-nav ul{display:flex;gap:36px;align-items:center}
.hn{
  font-size:0.68rem;font-weight:500;letter-spacing:0.12em;
  text-transform:uppercase;color:#666;
  position:relative;padding-bottom:4px;
  transition:color 0.2s;
}
.hn:hover{color:#fff}
.hn-on{color:#fff}
.hn-on::after{
  content:'';position:absolute;bottom:-1px;left:0;right:0;
  height:2px;background:#fff;
}

/* Right icons */
.hdr-icons{display:flex;align-items:center;gap:14px;flex-shrink:0}
.hdr-icon{
  display:flex;align-items:center;justify-content:center;
  color:#666;transition:color 0.2s;padding:4px;position:relative;
}
.hdr-icon:hover{color:#fff}
.cart-count-badge{
  position:absolute;top:-6px;right:-8px;
  background:#fff;color:#000;
  font-size:0.5rem;font-weight:800;
  width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.hdr-hamburger{display:none}

/* Mobile nav */
.mobile-nav{
  display:none;background:rgba(10,10,10,0.98);
  border-top:1px solid rgba(255,255,255,0.06);
  max-height:0;overflow:hidden;
  transition:max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open{max-height:380px}
.mobile-nav ul li a{
  display:block;padding:14px 32px;
  font-size:0.7rem;font-weight:600;letter-spacing:0.18em;
  text-transform:uppercase;color:#666;transition:color 0.2s,background 0.2s;
}
.mobile-nav ul li a:hover{color:#fff;background:rgba(255,255,255,0.025)}

/* ================================================================
   HERO — pixel perfect match to reference image 4
   ================================================================ */
.hero{
  position:relative;min-height:100vh;
  display:flex;flex-direction:column;
  padding-top:108px;overflow:hidden; /* 36px bar + 72px header */
  /* Exact dark gradient from reference - darker on left, slightly lit on right */
  background:
    radial-gradient(ellipse 60% 80% at 70% 45%, #1a1a1a 0%, #0c0c0c 55%),
    #0c0c0c;
}
.hero-layout{
  flex:1;display:flex;align-items:center;
  padding:0 72px;position:relative;
  min-height:calc(100vh - 72px);
}

/* LEFT: Copy */
.hero-copy{
  position:relative;z-index:4;
  max-width:500px;
  flex-shrink:0;
  padding:60px 0;
}

/* Badge — solid dark pill with text */
.hero-badge{
  display:inline-flex;align-items:center;
  background:#141414;border:1px solid #2a2a2a;
  border-radius:4px;
  padding:7px 14px;
  margin-bottom:32px;
  font-size:0.58rem;font-weight:700;
  letter-spacing:0.24em;text-transform:uppercase;color:#aaa;
  animation:fadeUp 0.5s ease 0.05s both;
}

/* Main headline — huge, bold, uppercase, matching reference */
.hero-h1{
  font-weight:900;
  font-size:clamp(4.5rem,8.5vw,8rem);
  line-height:0.88;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  color:#fff;
  display:flex;flex-direction:column;
  animation:fadeUp 0.6s ease 0.18s both;
}
.hero-h1-line2{
  /* "PEPTIDES PEN" slightly smaller than "CORE" to match reference proportions */
  font-size:clamp(2.8rem,5.5vw,5.2rem);
}

/* Tagline row */
.hero-tagline{
  display:flex;align-items:center;gap:14px;
  margin:22px 0 18px;
  animation:fadeUp 0.6s ease 0.3s both;
}
.hero-tagline-dash{width:36px;height:1.5px;background:#444;flex-shrink:0}
.hero-tagline-text{
  font-size:0.67rem;font-weight:600;
  letter-spacing:0.24em;text-transform:uppercase;color:#555;
}

/* Description */
.hero-desc{
  font-size:1rem;font-weight:300;line-height:1.65;color:#ccc;
  margin-bottom:32px;
  animation:fadeUp 0.6s ease 0.42s both;
}
.hero-desc strong{font-weight:800;color:#fff}

/* CTA button — solid black with white text, matching reference exactly */
.hero-btn{
  display:inline-flex;align-items:center;gap:14px;
  background:#fff;color:#000;
  font-size:0.72rem;font-weight:800;
  letter-spacing:0.16em;text-transform:uppercase;
  padding:14px 28px;
  transition:background 0.2s,transform 0.18s;
  animation:fadeUp 0.6s ease 0.52s both;
}
.hero-btn:hover{background:#ddd;transform:translateY(-1px)}

/* Disclaimer */
.hero-disclaim{
  display:block;margin-top:20px;
  font-size:0.58rem;font-weight:400;
  letter-spacing:0.1em;text-transform:uppercase;
  color:#282828;line-height:2;
  animation:fadeUp 0.6s ease 0.62s both;
}

/* RIGHT: Visual */
.hero-visual{
  position:absolute;top:0;right:0;
  width:62%;height:100%;
  display:flex;align-items:center;justify-content:center;
  pointer-events:none;z-index:2;
}

/* Concentric rings — match reference: many tight rings, grey */
.hero-rings{
  position:absolute;
  width:86%;aspect-ratio:1;
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.hr{
  position:absolute;border-radius:50%;
  border:1px solid;top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.hr1{width:100%;height:100%;border-color:rgba(255,255,255,0.06)}
.hr2{width:86%; height:86%; border-color:rgba(255,255,255,0.055)}
.hr3{width:72%; height:72%; border-color:rgba(255,255,255,0.048)}
.hr4{width:58%; height:58%; border-color:rgba(255,255,255,0.042)}
.hr5{width:45%; height:45%; border-color:rgba(255,255,255,0.036)}
.hr6{width:32%; height:32%; border-color:rgba(255,255,255,0.03)}
.hr7{width:20%; height:20%; border-color:rgba(255,255,255,0.024)}

/* Pen image — rotated at -28° matching reference exactly */
.hero-pen{
  position:relative;z-index:3;
  width:min(46%,440px);height:auto;
  /* Exact rotation from reference */
  transform:rotate(-28deg) translateY(-5%);
  filter:
    drop-shadow(-20px 30px 60px rgba(0,0,0,0.97))
    drop-shadow(-6px 10px 24px rgba(0,0,0,0.85));
  animation:penFloat 7s ease-in-out infinite;
  /* Mix blend to blend white bg with dark */
  }
@keyframes penFloat{
  0%,100%{transform:rotate(-28deg) translateY(-5%)}
  50%{transform:rotate(-28deg) translateY(-9%)}
}

/* ================================================================
   FEATURES BAR — exact match to reference bottom strip
   ================================================================ */
.feat-bar{
  background:#111;
  border-top:1px solid rgba(255,255,255,0.08);
}
.feat-bar-wrap{
  display:flex;align-items:stretch;
  min-height:134px;
}
.feat{
  flex:1;display:flex;align-items:center;gap:18px;
  padding:26px 24px;
  transition:background 0.25s;
}
.feat:hover{background:rgba(255,255,255,0.02)}
.feat-line{width:1px;background:rgba(255,255,255,0.08);margin:20px 0;flex-shrink:0}
.feat-ico{width:48px;height:48px;flex-shrink:0}
.feat-ico svg{width:48px;height:48px}
.feat-txt b{
  display:block;font-size:0.68rem;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:#fff;margin-bottom:6px;
}
.feat-txt p{font-size:0.7rem;font-weight:300;color:#444;line-height:1.55}

/* ================================================================
   PRODUCTS PAGE — exact match to reference image 3
   ================================================================ */
.products-pg{
  background:#0c0c0c;
  padding:100px 64px 80px;
  position:relative;overflow:hidden;
}

/* Side decorative rings matching reference */
.pp-rings-left,.pp-rings-right{
  position:absolute;top:50%;
  width:320px;height:320px;
  pointer-events:none;
}
.pp-rings-left{left:-110px;transform:translateY(-50%)}
.pp-rings-right{right:-110px;transform:translateY(-50%)}
.prl{
  position:absolute;border-radius:50%;
  border:1px solid rgba(255,255,255,0.05);
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.prl1{width:100%;height:100%}
.prl2{width:76%;height:76%}
.prl3{width:53%;height:53%}
.prl4{width:32%;height:32%}

/* Page header */
.pp-header{text-align:center;margin-bottom:60px;position:relative;z-index:1}
.pp-h1{
  font-size:clamp(3.5rem,8vw,6.5rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.02em;
  margin-bottom:22px;
}
.pp-tag-row{display:flex;align-items:center;justify-content:center;gap:20px;margin-bottom:14px}
.pp-tag-dash{width:36px;height:1.5px;background:#444;flex-shrink:0}
.pp-tag-text{font-size:0.68rem;font-weight:600;letter-spacing:0.24em;text-transform:uppercase;color:#555}
.pp-sub{font-size:1rem;font-weight:300;color:#555;max-width:500px;margin:0 auto}

/* 2-column product grid */
.pp-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:24px;max-width:1080px;margin:0 auto;
  position:relative;z-index:1;
}

/* Product card — matches reference exactly */
.pp-card{
  background:#111;border:1px solid rgba(255,255,255,0.07);
  border-radius:10px;overflow:hidden;
  display:flex;flex-direction:row;
  transition:transform 0.38s cubic-bezier(.22,.68,0,1.2),box-shadow 0.38s;
}
.pp-card:hover{
  transform:translateY(-7px);
  box-shadow:0 32px 72px rgba(0,0,0,0.85),0 0 0 1px rgba(255,255,255,0.1);
}

/* Card left: pen image + rings */
.pp-card-left{
  width:40%;flex-shrink:0;
  position:relative;overflow:hidden;
  display:flex;align-items:flex-end;justify-content:center;
  padding:24px 12px 0;
  background:radial-gradient(ellipse 70% 50% at 50% 85%,rgba(255,255,255,0.04) 0%,transparent 68%);
}
.pp-card-rings{
  position:absolute;width:220px;height:220px;
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.pcr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.06);top:50%;left:50%;transform:translate(-50%,-50%)}
.pcr1{width:100%;height:100%}.pcr2{width:76%;height:76%}.pcr3{width:53%;height:53%}.pcr4{width:32%;height:32%}
.pp-card-glow{position:absolute;inset:0;background:radial-gradient(ellipse 68% 42% at 50% 85%,rgba(255,255,255,0.05) 0%,transparent 62%);pointer-events:none}
.pp-card-img{
  position:relative;z-index:2;
  height:240px;width:auto;object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,0.97));
  }

/* Card right: info */
.pp-card-right{flex:1;padding:32px 28px;display:flex;flex-direction:column}
.pp-card-name{
  font-size:clamp(1.2rem,2vw,1.65rem);font-weight:800;
  text-transform:uppercase;letter-spacing:-0.01em;line-height:1.1;margin-bottom:7px;
}
.pp-card-dash{width:20px;height:2px;background:#444;margin-bottom:8px}
.pp-card-type{font-size:0.58rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;color:#888;margin-bottom:16px}
.pp-card-price{display:flex;align-items:baseline;gap:7px;margin-bottom:18px}
.pp-price-n{font-size:2.2rem;font-weight:700;line-height:1}
.pp-price-c{font-size:0.95rem;font-weight:400;color:#888}
.pp-card-feats{
  display:flex;flex-direction:column;gap:10px;
  padding-top:16px;border-top:1px solid rgba(255,255,255,0.06);
  margin-bottom:22px;
}
.pp-card-feats li{display:flex;align-items:center;gap:9px;font-size:0.8rem;font-weight:300;color:#555}
.pp-card-feats li svg{width:18px;height:18px;flex-shrink:0;stroke:#777}

/* Buy row in card */
.pp-buy-row{display:flex;align-items:center;gap:10px;margin-top:auto}
.pp-qty{display:flex;align-items:center;height:46px;border:1px solid #2a2a2a;background:#181818;flex-shrink:0}
.pq-btn{width:40px;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;font-weight:300;color:#fff;transition:background 0.2s}
.pq-btn:hover{background:rgba(255,255,255,0.07)}
.pq-inp{
  width:44px;height:100%;background:none;border:none;
  border-left:1px solid #2a2a2a;border-right:1px solid #2a2a2a;
  color:#fff;text-align:center;font-size:0.85rem;font-weight:500;outline:none;
}
.pq-inp::-webkit-outer-spin-button,.pq-inp::-webkit-inner-spin-button{-webkit-appearance:none}
.pp-atc-btn{
  flex:1;display:flex;align-items:center;justify-content:center;gap:9px;
  background:#fff;color:#000;height:46px;
  font-size:0.65rem;font-weight:800;letter-spacing:0.16em;text-transform:uppercase;
  transition:background 0.2s;cursor:pointer;border:none;font-family:inherit;
}
.pp-atc-btn:hover{background:#ddd}
.pp-atc-btn:disabled{opacity:0.4;cursor:not-allowed}

/* ================================================================
   PRODUCT DETAIL PAGE — exact match to reference images 1 & 2
   ================================================================ */
.pdp{
  background:#0c0c0c;
  padding:90px 64px 80px;
  min-height:100vh;
}
.pdp-back{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.65rem;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;
  color:#555;transition:color 0.2s;margin-bottom:26px;
}
.pdp-back:hover{color:#fff}

/* Main card container */
.pdp-card{
  background:#111;border:1px solid rgba(255,255,255,0.07);
  border-radius:12px;overflow:hidden;display:flex;
  max-width:1200px;margin:0 auto;min-height:520px;
}

/* Left: image */
.pdp-img-side{
  width:45%;flex-shrink:0;position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  padding:48px 28px;
  background:radial-gradient(ellipse 62% 52% at 50% 68%,rgba(255,255,255,0.04) 0%,transparent 62%);
  cursor:zoom-in;
  transition:background 0.3s;
}
.pdp-img-side:hover{
  background:radial-gradient(ellipse 62% 52% at 50% 68%,rgba(255,255,255,0.06) 0%,transparent 62%);
}
.pdp-img-side:focus-visible{
  outline:1.5px solid rgba(255,255,255,0.4);
  outline-offset:-4px;
}
.pdp-rings{
  position:absolute;width:88%;aspect-ratio:1;
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.dr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.055);top:50%;left:50%;transform:translate(-50%,-50%)}
.dr1{width:100%;height:100%}.dr2{width:80%;height:80%}.dr3{width:61%;height:61%}.dr4{width:43%;height:43%}.dr5{width:27%;height:27%}
.pdp-glow{position:absolute;inset:0;background:radial-gradient(ellipse 55% 40% at 50% 65%,rgba(255,255,255,0.055) 0%,transparent 58%);pointer-events:none}
.pdp-pen{
  position:relative;z-index:2;
  height:min(420px,58vh);width:auto;object-fit:contain;
  filter:drop-shadow(-8px 18px 40px rgba(0,0,0,0.97)) drop-shadow(-3px 5px 12px rgba(0,0,0,0.85));
  }

/* Right: info */
.pdp-info{
  flex:1;padding:52px 60px;
  display:flex;flex-direction:column;justify-content:center;
}
.pdp-name{
  font-size:clamp(2.5rem,5vw,4.2rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.015em;line-height:0.94;
  margin-bottom:18px;
}
.pdp-sub-row{display:flex;align-items:center;gap:18px;margin-bottom:26px}
.pdp-sub-dash{width:28px;height:1.5px;background:#444;flex-shrink:0}
.pdp-sub-text{font-size:0.65rem;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;color:#555}
.pdp-price-row{display:flex;align-items:baseline;gap:10px;margin-bottom:26px}
.pdp-price-n{font-size:3rem;font-weight:700;line-height:1}
.pdp-price-c{font-size:1.15rem;font-weight:400;color:#888}
.pdp-divider{height:1px;background:rgba(255,255,255,0.08);margin-bottom:26px}
.pdp-feats{display:flex;flex-direction:column;gap:16px;margin-bottom:38px}
.pdp-feats li{display:flex;align-items:center;gap:14px;font-size:0.9rem;font-weight:300;color:#ccc}
.pdp-feat-icon{width:28px;height:28px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.pdp-feat-icon svg{width:26px;height:26px}

/* Buy row */
.pdp-buy-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.pdp-qty{
  display:flex;align-items:center;height:54px;
  border:1px solid #2a2a2a;background:#181818;flex-shrink:0;
  border-radius:6px;overflow:hidden;
}
.pdp-qbtn{
  width:50px;height:100%;display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;font-weight:300;color:#fff;transition:background 0.2s;
}
.pdp-qbtn:hover{background:rgba(255,255,255,0.07)}
.pdp-qinp{
  width:54px;height:100%;background:none;border:none;
  border-left:1px solid #2a2a2a;border-right:1px solid #2a2a2a;
  color:#fff;text-align:center;font-size:0.9rem;font-weight:500;outline:none;
}
.pdp-qinp::-webkit-outer-spin-button,.pdp-qinp::-webkit-inner-spin-button{-webkit-appearance:none}
.pdp-atc{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  background:#fff;color:#000;height:54px;flex:1;
  font-size:0.72rem;font-weight:800;letter-spacing:0.18em;text-transform:uppercase;
  transition:background 0.22s;cursor:pointer;border:none;font-family:inherit;
  border-radius:6px;
}
.pdp-atc:hover{background:#ddd}
.pdp-legal{
  margin-top:22px;font-size:0.58rem;font-weight:400;
  letter-spacing:0.1em;text-transform:uppercase;color:#282828;line-height:2;
}

/* ================================================================
   CART PAGE
   ================================================================ */
.cart-pg{background:#0c0c0c;min-height:100vh;padding:96px 64px 80px}
.cart-pg-wrap{max-width:1200px;margin:0 auto}
.cart-pg-hdr{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:36px;padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.cart-pg-title{font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:900;text-transform:uppercase;letter-spacing:0.04em}
.cart-pg-back{font-size:0.65rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#555;transition:color 0.2s}
.cart-pg-back:hover{color:#fff}
.cart-pg-loading{font-size:0.85rem;color:#444;padding:40px 0}

/* Cart layout: items left, summary right */
.cart-main-layout{display:grid;grid-template-columns:1fr 360px;gap:36px;align-items:start}

/* Items column */
.cart-items-hdr{
  display:grid;grid-template-columns:2.6fr 1fr 1.4fr 1fr 32px;
  gap:14px;padding:0 0 14px;
  border-bottom:1px solid rgba(255,255,255,0.07);
  font-size:0.58rem;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;color:#444;
}
.cart-item-row{
  display:grid;grid-template-columns:2.6fr 1fr 1.4fr 1fr 32px;
  gap:14px;align-items:center;
  padding:22px 0;border-bottom:1px solid rgba(255,255,255,0.055);
}
.ci-prod{display:flex;align-items:center;gap:14px}
.ci-img{width:78px;height:78px;background:#181818;border:1px solid rgba(255,255,255,0.06);border-radius:4px;overflow:hidden;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-img img{width:100%;height:100%;object-fit:contain}
.ci-name{font-size:0.78rem;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:4px}
.ci-type{font-size:0.6rem;font-weight:300;color:#444;letter-spacing:0.1em;text-transform:uppercase}
.ci-price{font-size:0.85rem;font-weight:300;color:#888}
.ci-qty-wrap{}
.ci-qty{display:flex;align-items:center;border:1px solid #222;background:#151515;height:38px;width:fit-content;border-radius:4px;overflow:hidden}
.ci-qbtn{width:34px;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;color:#fff;transition:background 0.2s;cursor:pointer}
.ci-qbtn:hover{background:rgba(255,255,255,0.06)}
.ci-qval{min-width:34px;text-align:center;font-size:0.82rem;font-weight:500;border-left:1px solid #222;border-right:1px solid #222;padding:0 8px;line-height:38px}
.ci-total{font-size:0.88rem;font-weight:600;color:#fff}
.ci-rm{}
.ci-rm-btn{color:#333;transition:color 0.2s;padding:4px;cursor:pointer;display:flex;align-items:center;justify-content:center}
.ci-rm-btn:hover{color:#fff}

/* Summary column */
.cart-sum-col{}
.cart-sum-box{
  background:#111;border:1px solid rgba(255,255,255,0.07);
  border-radius:10px;padding:30px;
  position:sticky;top:90px;
}
.cart-sum-title{font-size:0.68rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;margin-bottom:20px;color:#fff}
.cart-sum-line{display:flex;justify-content:space-between;align-items:center;margin-bottom:13px;font-size:0.75rem;font-weight:500;letter-spacing:0.1em;color:#fff}
.cart-sum-ship{color:#444;font-weight:300}
.cart-sum-ship span:last-child{font-size:0.62rem}
.cart-sum-divider{height:1px;background:rgba(255,255,255,0.07);margin-bottom:14px}
.cart-sum-total{font-size:0.85rem;font-weight:800;margin-bottom:22px}
.cart-sum-total span:last-child{font-size:1.1rem}
.cart-checkout-btn{
  display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;background:#fff;color:#000;
  font-size:0.7rem;font-weight:800;letter-spacing:0.18em;text-transform:uppercase;
  padding:16px;margin-bottom:14px;
  transition:background 0.22s;border-radius:4px;
}
.cart-checkout-btn:hover{background:#ddd}
.cart-trust{display:flex;gap:14px;justify-content:center;margin-bottom:14px}
.ct-item{display:flex;align-items:center;gap:6px;font-size:0.58rem;letter-spacing:0.1em;text-transform:uppercase;color:#333}
.ct-item svg{stroke:#333}
.cart-sum-disclaimer{font-size:0.54rem;letter-spacing:0.1em;text-transform:uppercase;color:#242424;text-align:center;line-height:1.7}

/* Empty state */
.cart-empty-state{display:flex;flex-direction:column;align-items:center;min-height:50vh;justify-content:center;gap:20px;text-align:center}
.cart-empty-state p{font-size:1rem;color:#444;font-weight:300}
.cart-shop-btn{display:inline-flex;align-items:center;gap:10px;background:#fff;color:#000;font-size:0.7rem;font-weight:800;letter-spacing:0.16em;text-transform:uppercase;padding:13px 26px;transition:background 0.22s}
.cart-shop-btn:hover{background:#ddd}

/* ================================================================
   CART DRAWER
   ================================================================ */
.cart-overlay{position:fixed;inset:0;z-index:850;background:rgba(0,0,0,0.72);opacity:0;pointer-events:none;transition:opacity 0.3s}
.cart-overlay.open{opacity:1;pointer-events:all}
.cart-drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:900;
  width:min(430px,100vw);background:#141414;
  border-left:1px solid rgba(255,255,255,0.08);
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform 0.36s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open{transform:translateX(0)}
.cd-head{display:flex;align-items:center;justify-content:space-between;padding:22px 26px;border-bottom:1px solid rgba(255,255,255,0.07);flex-shrink:0}
.cd-title{font-size:0.7rem;font-weight:700;letter-spacing:0.24em;text-transform:uppercase}
.cd-close{color:#555;transition:color 0.2s;padding:4px}
.cd-close:hover{color:#fff}
.cd-body{flex:1;overflow-y:auto;padding:20px 26px}
.cd-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:16px;text-align:center}
.cd-empty p{font-size:0.85rem;color:#444}
.cd-empty a{font-size:0.68rem;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:#fff;border-bottom:1px solid #333;padding-bottom:2px}
.cd-item{display:flex;gap:14px;padding:15px 0;border-bottom:1px solid rgba(255,255,255,0.055)}
.cd-item-img img{width:68px;height:68px;object-fit:contain;background:#1a1a1a;border-radius:4px}
.cd-item-info{flex:1}
.cd-item-name{font-size:0.72rem;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:4px}
.cd-item-price{font-size:0.8rem;font-weight:300;color:#888;margin-bottom:9px}
.cd-item-qty{display:flex;align-items:center;gap:9px}
.cd-item-qty button{border:1px solid #2a2a2a;width:26px;height:26px;border-radius:2px;display:flex;align-items:center;justify-content:center;font-size:1rem;color:#fff;transition:background 0.2s;cursor:pointer}
.cd-item-qty button:hover{background:rgba(255,255,255,0.07)}
.cd-item-qty span.qty-n{font-size:0.82rem;min-width:20px;text-align:center}
.cd-rm{font-size:0.58rem;letter-spacing:0.1em;text-transform:uppercase;color:#444;cursor:pointer;transition:color 0.2s;margin-left:4px}
.cd-rm:hover{color:#fff}
.cd-foot{padding:20px 26px;border-top:1px solid rgba(255,255,255,0.07);flex-shrink:0}
.cd-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;font-size:0.7rem;font-weight:600;letter-spacing:0.14em;text-transform:uppercase}
.cd-checkout-btn{display:flex;align-items:center;justify-content:center;width:100%;background:#fff;color:#000;font-size:0.7rem;font-weight:800;letter-spacing:0.18em;text-transform:uppercase;padding:15px;margin-bottom:12px;transition:background 0.22s}
.cd-checkout-btn:hover{background:#ddd}
.cd-note{font-size:0.54rem;letter-spacing:0.1em;text-transform:uppercase;color:#242424;text-align:center;line-height:1.6}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer{background:#000;border-top:1px solid rgba(255,255,255,0.055)}
.footer-main{display:flex;justify-content:space-between;align-items:center;padding:30px 64px;border-bottom:1px solid rgba(255,255,255,0.055);flex-wrap:wrap;gap:16px}
.footer-nav{display:flex;gap:26px;flex-wrap:wrap}
.footer-nav a{font-size:0.62rem;letter-spacing:0.14em;text-transform:uppercase;color:#444;transition:color 0.2s}
.footer-nav a:hover{color:#fff}
.footer-bottom{padding:16px 64px;border-bottom:1px solid rgba(255,255,255,0.04)}
.footer-bottom p{font-size:0.57rem;letter-spacing:0.1em;color:#222;text-align:center}
.footer-strip{padding:13px 64px;text-align:center}
.footer-strip p{font-size:0.55rem;letter-spacing:0.3em;text-transform:uppercase;color:#1a1a1a}

/* ================================================================
   GENERIC / 404
   ================================================================ */
.generic-pg{padding:110px 64px 80px;max-width:820px;margin:0 auto}
.gp-title{font-size:clamp(2rem,4vw,3rem);font-weight:900;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:32px}
.gp-body{font-size:0.95rem;font-weight:300;color:#555;line-height:1.85}
.nf-pg{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:70vh;gap:18px;text-align:center}
.nf-pg h1{font-size:7rem;font-weight:900;color:#1a1a1a}
.nf-pg p{font-size:1rem;color:#444}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1100px){
  .hdr{padding:0 28px}
  .hdr-nav ul{gap:24px}
  .hero-layout{padding:0 40px}
  .products-pg,.pdp,.cart-pg,.generic-pg{padding-left:36px;padding-right:36px}
  .footer-main,.footer-bottom,.footer-strip{padding-left:36px;padding-right:36px}
}
@media(max-width:900px){
  .hdr-nav{display:none}
  .hdr-hamburger{display:flex}
  .mobile-nav{display:block}
  .hero-layout{padding:0 28px;min-height:auto}
  .hero-copy{max-width:100%;padding:44px 0 300px}
  .hero-h1{font-size:clamp(3.6rem,13vw,5.5rem)}
  .hero-h1-line2{font-size:clamp(2.4rem,9vw,3.8rem)}
  .hero-visual{width:100%;height:300px;top:auto;bottom:0;position:absolute}
  .hero-pen{width:48%;transform:rotate(-28deg) translateY(-5%)}
  .hero-rings{width:94%}
  .feat-bar-wrap{display:grid;grid-template-columns:1fr 1fr}
  .feat-line{display:none}
  .feat{border-top:1px solid rgba(255,255,255,0.08)}
  .feat:first-child,.feat:nth-child(2){border-top:none}
  .pp-grid{grid-template-columns:1fr;max-width:500px}
  .pp-card{flex-direction:column}
  .pp-card-left{width:100%;height:230px;padding:20px}
  .pp-card-img{height:190px}
  .pdp-card{flex-direction:column}
  .pdp-img-side{width:100%;height:320px;padding:28px}
  .pdp-pen{height:250px}
  .pdp-info{padding:38px 32px}
  .pdp-name{font-size:clamp(2rem,8vw,3rem)}
  .cart-main-layout{grid-template-columns:1fr}
  .cart-sum-col{order:1}.cart-items-col-wrap{order:2}
  .cart-sum-box{position:static}
  .cart-items-hdr{display:none}
  .cart-item-row{grid-template-columns:1fr;gap:8px;padding:18px 0}
  .footer-main{flex-direction:column;align-items:flex-start;padding:24px 28px}
}
@media(max-width:600px){
  .hero-copy{padding-bottom:320px}
  .hero-h1{font-size:clamp(3rem,14vw,4.2rem)}
  .hero-h1-line2{font-size:clamp(2rem,11vw,3rem)}
  .feat-bar-wrap{grid-template-columns:1fr}
  .feat:nth-child(2){border-top:1px solid rgba(255,255,255,0.08)}
  .pdp-buy-row{flex-direction:column;align-items:stretch}
  .pdp-atc{flex:none}
  .products-pg,.pdp,.cart-pg{padding-left:20px;padding-right:20px;padding-top:90px}
  .footer-main,.footer-bottom,.footer-strip{padding-left:20px;padding-right:20px}
  .cart-pg{padding-left:20px;padding-right:20px}
  .pp-h1{font-size:clamp(2.8rem,13vw,4.5rem)}
}

/* ── Product description block ── */
.pdp-desc {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid rgba(255,255,255,0.2);
}
.pdp-desc-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}
.pdp-desc p {
  font-size: 0.88rem;
  font-weight: 300;
  color: #aaa;
  line-height: 1.75;
}

/* ================================================================
   CLICKABLE PRODUCT CARDS
   ================================================================ */
.pp-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pp-card--clickable {
  transition: transform 0.38s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.38s,
              border-color 0.3s;
}
.pp-card-link:hover .pp-card--clickable {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.pp-card-link:hover .pp-card-img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}
.pp-card-img {
  transition: transform 0.4s ease;
}

/* VIEW PRODUCT button inside card */
.pp-card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s, color 0.25s;
}
.pp-card-link:hover .pp-card-cta-btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ================================================================
   PRODUCT DETAIL PAGE — BADGE
   ================================================================ */
.pdp-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ================================================================
   PRODUCT DETAIL PAGE — DETAILS TABLE
   ================================================================ */
.pdp-details {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(255,255,255,0.1);
}
.pdp-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.pdp-details-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pdp-details-table tr:last-child {
  border-bottom: none;
}
.pdp-details-table td {
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: #888;
  vertical-align: top;
}
.pdp-details-table td:first-child {
  font-weight: 600;
  color: #ccc;
  width: 140px;
  padding-right: 20px;
}

/* ── Card button wrapper (replaces <a> link) ── */
.pp-card-btn-wrap {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

/* ── Clickable card hover ── */
.pp-card--clickable {
  transition: transform 0.38s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.38s,
              border-color 0.3s;
}
.pp-card-btn-wrap:hover .pp-card--clickable,
.pp-card-btn-wrap:focus .pp-card--clickable {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.pp-card-btn-wrap:hover .pp-card-img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}
.pp-card-img {
  transition: transform 0.4s ease;
}

/* ── VIEW PRODUCT button ── */
.pp-card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s, color 0.25s;
}
.pp-card-btn-wrap:hover .pp-card-cta-btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ── Back button ── */
.pdp-back.cp-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

  to   { opacity: 1; transform: translateY(0); }
}

/* ── Badge ── */
.pdp-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ── Details table ── */
.pdp-details {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(255,255,255,0.1);
}
.pdp-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.pdp-details-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pdp-details-table tr:last-child { border-bottom: none; }
.pdp-details-table td {
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: #888;
  vertical-align: top;
}
.pdp-details-table td:first-child {
  font-weight: 600;
  color: #ccc;
  width: 140px;
  padding-right: 20px;
}

/* ================================================================
   BUY NOW BUTTON
   ================================================================ */
.pdp-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-top: 12px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s;
  font-family: inherit;
}
.pdp-buy-now:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.pdp-buy-now:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Description body — real Shopify rich text */
.pdp-desc-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: #aaa;
  line-height: 1.75;
}
.pdp-desc-body p { margin-bottom: 12px; }
.pdp-desc-body p:last-child { margin-bottom: 0; }
.pdp-desc-body ul, .pdp-desc-body ol { padding-left: 20px; margin-bottom: 12px; }
.pdp-desc-body li { margin-bottom: 6px; }

/* Variant button disabled state */
.ret-variant-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ret-variant-btn:disabled:hover {
  transform: none;
  border-color: rgba(255,255,255,0.1);
}

/* Card price tag (used in pp-card listing) */
.pp-card-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ================================================================
   ABOUT PAGE — premium luxury black/white biotech
   ================================================================ */
.ap{background:#0a0a0a;color:#fff;overflow:hidden}

/* Hero foreground logo */
.ap-hero-logo{
  width:64px;height:64px;object-fit:contain;
  margin:0 auto 22px;display:block;
  filter:drop-shadow(0 4px 18px rgba(255,255,255,0.08));
}

/* Shared section header */
.ap-eyebrow{
  font-size:0.62rem;font-weight:700;letter-spacing:0.28em;
  text-transform:uppercase;color:#555;margin-bottom:14px;
}
.ap-h2{
  font-size:clamp(2rem,4.5vw,3.2rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.02em;color:#fff;
  line-height:1.05;
}
.ap-section-hdr{text-align:center;max-width:640px;margin:0 auto 56px}

/* Scroll reveal — JS toggles .in-view */
.ap-reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity 0.8s cubic-bezier(.22,.68,0,1), transform 0.8s cubic-bezier(.22,.68,0,1);
}
.ap-reveal.in-view{opacity:1;transform:translateY(0)}
.ap-fade{
  opacity:0;animation:apFadeUp 0.8s cubic-bezier(.22,.68,0,1) forwards;
}
.ap-fade:nth-child(1){animation-delay:0.05s}
.ap-fade:nth-child(2){animation-delay:0.18s}
.ap-fade:nth-child(3){animation-delay:0.32s}
.ap-fade:nth-child(4){animation-delay:0.46s}
.ap-fade:nth-child(5){animation-delay:0.6s}
@keyframes apFadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* ── HERO ── */
.ap-hero{
  position:relative;min-height:92vh;
  display:flex;align-items:center;justify-content:center;
  padding:140px 6vw 80px;
  overflow:hidden;
}
.ap-hero-bg{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  pointer-events:none;z-index:0;
}
.ap-bg-rings{
  position:absolute;width:min(900px,120vw);aspect-ratio:1;
  top:50%;left:50%;transform:translate(-50%,-50%);
}
.ap-r{
  position:absolute;border-radius:50%;border:1px solid;
  top:50%;left:50%;transform:translate(-50%,-50%);
  animation:apRingPulse 9s ease-in-out infinite;
}
.ap-r1{width:100%;height:100%;border-color:rgba(255,255,255,0.05);animation-delay:0s}
.ap-r2{width:80%; height:80%; border-color:rgba(255,255,255,0.045);animation-delay:0.4s}
.ap-r3{width:60%; height:60%; border-color:rgba(255,255,255,0.04);animation-delay:0.8s}
.ap-r4{width:40%; height:40%; border-color:rgba(255,255,255,0.035);animation-delay:1.2s}
.ap-r5{width:22%; height:22%; border-color:rgba(255,255,255,0.03);animation-delay:1.6s}
@keyframes apRingPulse{
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:1}
  50%{transform:translate(-50%,-50%) scale(1.035);opacity:0.7}
}
.ap-bg-logo{
  position:relative;z-index:1;
  width:min(180px,30vw);height:auto;
  opacity:0.07;
  animation:apLogoFloat 8s ease-in-out infinite;
}
@keyframes apLogoFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-16px) rotate(3deg)}
}

.ap-hero-content{
  position:relative;z-index:2;
  max-width:760px;text-align:center;
}
.ap-h1{
  font-size:clamp(2.6rem,7vw,5.2rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.02em;line-height:0.96;
  color:#fff;margin-bottom:28px;
}
.ap-divider-row{
  display:flex;align-items:center;justify-content:center;gap:18px;
  margin-bottom:30px;
}
.ap-divider-dash{width:36px;height:1.5px;background:#444;flex-shrink:0}
.ap-divider-text{
  font-size:0.68rem;font-weight:600;letter-spacing:0.22em;
  text-transform:uppercase;color:#777;white-space:nowrap;
}
.ap-intro{
  font-size:1.05rem;font-weight:300;color:#aaa;line-height:1.85;
  max-width:600px;margin:0 auto;
}
.ap-intro-2{margin-top:18px}

.ap-scroll-cue{
  position:absolute;bottom:36px;left:50%;transform:translateX(-50%);
  z-index:2;
}
.ap-scroll-cue span{
  display:block;width:1px;height:42px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation:apScrollPulse 2s ease-in-out infinite;
}
@keyframes apScrollPulse{0%,100%{opacity:0.3}50%{opacity:1}}

/* ── SECTION 2: PRINCIPLES ── */
.ap-principles{
  padding:110px 6vw;
  max-width:1200px;margin:0 auto;
}
.ap-principles-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.ap-pcard{
  background:#111;border:1px solid rgba(255,255,255,0.07);
  border-radius:8px;padding:40px 30px;
  position:relative;overflow:hidden;
  transition:transform 0.4s cubic-bezier(.22,.68,0,1.1), border-color 0.3s, box-shadow 0.4s;
}
.ap-pcard:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,0.18);
  box-shadow:0 24px 60px rgba(0,0,0,0.6);
}
.ap-pcard-num{
  position:absolute;top:20px;right:24px;
  font-size:2.4rem;font-weight:800;color:rgba(255,255,255,0.04);
  line-height:1;
}
.ap-pcard-icon{
  width:48px;height:48px;margin-bottom:24px;
  display:flex;align-items:center;justify-content:center;
}
.ap-pcard-icon svg{width:44px;height:44px}
.ap-pcard h3{
  font-size:1.05rem;font-weight:800;text-transform:uppercase;
  letter-spacing:0.02em;color:#fff;margin-bottom:12px;
}
.ap-pcard p{font-size:0.85rem;font-weight:300;color:#888;line-height:1.7}

/* ── SECTION 3: WHY CHOOSE ── */
.ap-why{
  position:relative;
  padding:110px 6vw;
  background:#0c0c0c;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}
.ap-why-rings{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:1100px;height:1100px;pointer-events:none}
.awr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.035);top:50%;left:50%;transform:translate(-50%,-50%)}
.awr1{width:100%;height:100%}
.awr2{width:70%;height:70%}
.awr3{width:42%;height:42%}

.ap-why-grid{
  position:relative;z-index:1;
  max-width:920px;margin:0 auto;
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px;
}
.ap-why-item:last-child:nth-child(odd){
  grid-column:1/-1;max-width:calc(50% - 9px);margin:0 auto;width:100%;
}
.ap-why-item{
  display:flex;align-items:center;gap:16px;
  background:#131313;border:1px solid rgba(255,255,255,0.07);
  border-radius:6px;padding:20px 24px;
  transition:border-color 0.3s, background 0.3s;
}
.ap-why-item:hover{
  border-color:rgba(255,255,255,0.18);
  background:#161616;
}
.ap-why-check{
  width:30px;height:30px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:rgba(255,255,255,0.06);
}
.ap-why-check svg{width:17px;height:17px}
.ap-why-text{font-size:0.9rem;font-weight:400;color:#ddd;letter-spacing:0.01em}

/* ── SECTION 4: VISION ── */
.ap-vision{
  position:relative;
  padding:130px 6vw;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.ap-vision-rings{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:700px;height:700px;pointer-events:none}
.avr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.04);top:50%;left:50%;transform:translate(-50%,-50%)}
.avr1{width:100%;height:100%}
.avr2{width:74%;height:74%}
.avr3{width:48%;height:48%}
.avr4{width:24%;height:24%}

.ap-vision-inner{
  position:relative;z-index:1;
  max-width:680px;text-align:center;
}
.ap-divider-line{width:40px;height:1.5px;background:#444;margin:24px auto 28px}
.ap-vision-text{
  font-size:1.1rem;font-weight:300;color:#aaa;line-height:1.85;
}
.ap-vision-closing{
  font-size:1.05rem;font-weight:500;font-style:italic;
  color:#e5e5e5;line-height:1.7;
  margin-top:28px;padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.08);
}

/* ── FINAL CTA ── */
.ap-cta{
  position:relative;
  padding:140px 6vw 130px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;
  background:#000;
  border-top:1px solid rgba(255,255,255,0.06);
}
.ap-cta-rings{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:900px;height:900px;pointer-events:none}
.acr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.04);top:50%;left:50%;transform:translate(-50%,-50%);animation:apRingPulse 10s ease-in-out infinite}
.acr1{width:100%;height:100%}
.acr2{width:78%;height:78%;animation-delay:0.3s}
.acr3{width:56%;height:56%;animation-delay:0.6s}
.acr4{width:34%;height:34%;animation-delay:0.9s}
.acr5{width:16%;height:16%;animation-delay:1.2s}

.ap-cta-inner{position:relative;z-index:1}
.ap-cta-h2{
  font-size:clamp(2.4rem,6vw,4.4rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.02em;line-height:1;
  color:#fff;margin-bottom:40px;
}
.ap-cta-btn{
  display:inline-flex;align-items:center;gap:14px;
  background:#fff;color:#000;
  font-size:0.78rem;font-weight:800;letter-spacing:0.18em;text-transform:uppercase;
  padding:18px 38px;border-radius:3px;
  transition:background 0.22s, transform 0.18s;
}
.ap-cta-btn:hover{background:#ddd;transform:translateY(-2px)}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .ap-principles-grid{grid-template-columns:1fr;gap:18px}
  .ap-why-grid{grid-template-columns:1fr}
  .ap-why-item:last-child:nth-child(odd){max-width:100%}
  .ap-hero{padding:120px 6vw 70px}
}
@media(max-width:600px){
  .ap-hero{min-height:80vh;padding:110px 6vw 60px}
  .ap-divider-row{flex-direction:column;gap:10px}
  .ap-divider-dash{display:none}
  .ap-principles,.ap-why,.ap-vision,.ap-cta{padding-left:6vw;padding-right:6vw}
  .ap-principles{padding-top:80px;padding-bottom:80px}
  .ap-why{padding-top:80px;padding-bottom:80px}
  .ap-vision{padding-top:90px;padding-bottom:90px}
  .ap-cta{padding-top:100px;padding-bottom:90px}
  .ap-why-item{padding:16px 18px}
  .ap-cta-btn{padding:16px 28px;width:100%;justify-content:center}
}

/* ================================================================
   DOSAGE VARIANT SELECTOR — two premium boxes
   ================================================================ */
.ret-variant-section {
  margin-bottom: 24px;
}
.ret-variant-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}
.ret-variant-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ret-variant-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 14px;
  background: #161616;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.22s, background 0.22s, transform 0.18s, box-shadow 0.22s;
  position: relative;
}
.ret-variant-btn:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  background: #1a1a1a;
}
.ret-variant-btn--active {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.ret-variant-btn--active::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.75;
}
.rvb-dose {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.rvb-price {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #888;
}
.ret-variant-btn--active .rvb-price {
  color: #bbb;
}
.ret-variant-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ret-variant-btn:disabled:hover {
  transform: none;
  border-color: rgba(255,255,255,0.1);
  background: #161616;
}

/* Smooth transition for dynamic price update */
#pdp-price {
  transition: opacity 0.16s ease;
  display: inline-block;
}

@media (max-width: 480px) {
  .ret-variant-btn { padding: 14px 10px; }
  .rvb-dose { font-size: 1rem; }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* Shorter hero for contact (no need for full 92vh) */
.ap-hero--contact {
  min-height: 62vh;
  padding-bottom: 40px;
}

/* Contact cards section */
.ap-contact-cards-section {
  padding: 30px 6vw 110px;
  max-width: 900px;
  margin: 0 auto;
}
.ap-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.ap-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 48px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.1), border-color 0.3s, box-shadow 0.4s, background 0.3s;
  cursor: pointer;
}
.ap-contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 28px 64px rgba(0,0,0,0.6);
  background: #141414;
}
.ap-contact-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: background 0.3s, transform 0.3s;
}
.ap-contact-card:hover .ap-contact-card-icon {
  background: rgba(255,255,255,0.09);
  transform: scale(1.06);
}
.ap-contact-card-icon svg { width: 32px; height: 32px; }
.ap-contact-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
.ap-contact-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  word-break: break-word;
}
.ap-contact-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  width: 100%;
  justify-content: center;
  transition: color 0.25s;
}
.ap-contact-card:hover .ap-contact-card-cta { color: #fff; }

.ap-contact-note {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a2a2a;
}

/* CTA button row (two buttons side by side) */
.ap-cta-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ap-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.ap-cta-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .ap-contact-cards { grid-template-columns: 1fr; gap: 18px; }
  .ap-contact-card { padding: 36px 24px; }
  .ap-cta-btn-row { flex-direction: column; width: 100%; }
  .ap-cta-btn-row .ap-cta-btn { width: 100%; justify-content: center; }
}

/* ── Footer contact info (email + WhatsApp) ── */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-contact-email,
.footer-contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #777;
  transition: color 0.22s;
}
.footer-contact-email:hover,
.footer-contact-whatsapp:hover {
  color: #fff;
}
.footer-contact-whatsapp {
  background: rgba(255,255,255,0.06);
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.footer-contact-whatsapp:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 700px) {
  .footer-contact { width: 100%; }
}

/* ================================================================
   ABOUT ANCHOR SECTION (homepage, #about)
   Guarantees the About nav link always has somewhere real to land,
   independent of whether /pages/about exists in Shopify Admin.
   ================================================================ */
#about{
  scroll-margin-top:124px; /* 36px bar + 72px header + 16px breathing room */
}
.ap-anchor{
  position:relative;
  background:#0a0a0a;
  padding:100px 6vw;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.06);
}
.ap-anchor-rings{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:900px;height:900px;pointer-events:none;
}
.aar{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.035);top:50%;left:50%;transform:translate(-50%,-50%)}
.aar1{width:100%;height:100%}
.aar2{width:70%;height:70%}
.aar3{width:42%;height:42%}

.ap-anchor-inner{
  position:relative;z-index:1;
  max-width:680px;margin:0 auto;
  text-align:center;
}
.ap-h1-sm{
  font-size:clamp(1.8rem,4vw,2.6rem);font-weight:900;
  text-transform:uppercase;letter-spacing:-0.015em;
  color:#fff;margin-bottom:22px;line-height:1.05;
}
.ap-anchor-inner .ap-intro{margin-bottom:36px}

.ap-anchor-principles{
  display:flex;align-items:center;justify-content:center;
  gap:14px;flex-wrap:wrap;margin-bottom:40px;
}
.ap-anchor-pill{
  display:flex;align-items:center;gap:10px;
  background:#131313;border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;padding:10px 20px 10px 14px;
  transition:border-color 0.25s, background 0.25s;
}
.ap-anchor-pill:hover{
  border-color:rgba(255,255,255,0.2);
  background:#171717;
}
.aap-num{
  font-size:0.65rem;font-weight:800;color:#555;
  width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.06);flex-shrink:0;
}
.aap-text{font-size:0.78rem;font-weight:600;letter-spacing:0.04em;color:#ddd}

.ap-anchor-link{
  display:inline-flex;align-items:center;gap:10px;
  font-size:0.72rem;font-weight:800;letter-spacing:0.16em;
  text-transform:uppercase;color:#fff;
  border-bottom:1px solid rgba(255,255,255,0.3);
  padding-bottom:4px;transition:border-color 0.25s, gap 0.25s;
}
.ap-anchor-link:hover{
  border-color:#fff;
  gap:14px;
}

@media(max-width:600px){
  .ap-anchor{padding:80px 6vw}
  .ap-anchor-principles{gap:10px}
  .ap-anchor-pill{padding:8px 16px 8px 12px}
}

/* ================================================================
   AGE VERIFICATION GATE
   ================================================================ */

/* Pre-paint state classes (set by inline <head> script) */
html.age-gate-pending #site-content-wrap{
  filter:blur(18px) brightness(0.45);
  pointer-events:none;
  user-select:none;
  transition:filter 0.5s ease;
}
html.age-verified #age-gate{
  display:none !important;
}
html.age-verified #site-content-wrap{
  filter:none;
  pointer-events:auto;
  user-select:auto;
}

/* When JS confirms/exits, this class drives the unblur transition */
#site-content-wrap.age-unlocking{
  filter:none !important;
  pointer-events:auto !important;
  user-select:auto !important;
}

.age-gate{
  position:fixed;inset:0;z-index:99999;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,0.92);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  padding:24px;
  opacity:1;
  transition:opacity 0.45s ease, visibility 0.45s ease;
}
.age-gate.age-gate-closing{
  opacity:0;
  pointer-events:none;
}
html.age-verified .age-gate{display:none}

/* Decorative background rings */
.age-gate-rings{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:min(820px,140vw);aspect-ratio:1;pointer-events:none;
}
.agr{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,0.05);top:50%;left:50%;transform:translate(-50%,-50%)}
.agr1{width:100%;height:100%}
.agr2{width:70%;height:70%}
.agr3{width:42%;height:42%}

/* Modal box */
.age-gate-box{
  position:relative;z-index:1;
  width:100%;max-width:440px;
  background:#111;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:44px 36px 36px;
  text-align:center;
  box-shadow:0 40px 100px rgba(0,0,0,0.8);
  animation:ageGateIn 0.5s cubic-bezier(.22,.68,0,1.1) both;
}
@keyframes ageGateIn{
  from{opacity:0;transform:translateY(24px) scale(0.97)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

.age-gate-logo{
  width:52px;height:52px;object-fit:contain;
  margin:0 auto 18px;display:block;
}
.age-gate-eyebrow{
  font-size:0.58rem;font-weight:700;letter-spacing:0.28em;
  text-transform:uppercase;color:#555;margin-bottom:14px;
}
.age-gate-title{
  font-size:1.7rem;font-weight:900;
  text-transform:uppercase;letter-spacing:-0.01em;
  color:#fff;margin-bottom:18px;
}
.age-gate-divider{
  width:36px;height:1.5px;background:#3a3a3a;
  margin:0 auto 22px;
}
.age-gate-msg{
  font-size:0.88rem;font-weight:300;color:#999;
  line-height:1.75;margin-bottom:30px;
}
.age-gate-msg strong{color:#fff;font-weight:700}

.age-gate-btns{
  display:flex;flex-direction:column;gap:10px;margin-bottom:22px;
}
.age-gate-btn{
  width:100%;padding:15px;border-radius:5px;
  font-size:0.74rem;font-weight:800;letter-spacing:0.16em;text-transform:uppercase;
  cursor:pointer;font-family:inherit;border:none;
  transition:background 0.22s, color 0.22s, transform 0.18s, border-color 0.22s;
}
.age-gate-btn--confirm{
  background:#fff;color:#000;
}
.age-gate-btn--confirm:hover{
  background:#ddd;transform:translateY(-1px);
}
.age-gate-btn--exit{
  background:transparent;color:#888;
  border:1.5px solid rgba(255,255,255,0.15);
}
.age-gate-btn--exit:hover{
  border-color:rgba(255,255,255,0.35);
  color:#ccc;
}

.age-gate-legal{
  font-size:0.56rem;letter-spacing:0.1em;text-transform:uppercase;
  color:#2a2a2a;
}

@media(max-width:480px){
  .age-gate-box{padding:36px 26px 28px}
  .age-gate-title{font-size:1.4rem}
}

/* ================================================================
   VIAL PRODUCT IMAGE
   For products tagged "vial" — uses the real uploaded photo
   instead of the transparent pen asset. The photo already has a
   true-black background, so it blends seamlessly with no extra
   processing needed.
   ================================================================ */
.pdp-vial-img{
  height:min(420px,58vh);width:auto;object-fit:contain;
  filter:drop-shadow(0 24px 50px rgba(0,0,0,0.9));
  border-radius:4px;
}
.pp-card-img--vial{
  filter:drop-shadow(0 10px 22px rgba(0,0,0,0.85));
}

/* ================================================================
   ZOOM HINT BADGE
   ================================================================ */
.pdp-zoom-hint{
  position:absolute;
  bottom:16px;right:16px;
  display:flex;align-items:center;gap:6px;
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:20px;
  padding:6px 12px;
  font-size:0.6rem;font-weight:700;letter-spacing:0.14em;
  color:#bbb;
  pointer-events:none;
  backdrop-filter:blur(4px);
  z-index:3;
}

/* ================================================================
   ZOOM LIGHTBOX MODAL
   ================================================================ */
.pdp-zoom-modal{
  position:fixed;inset:0;z-index:9000;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,0.94);
  opacity:0;visibility:hidden;
  transition:opacity 0.3s ease, visibility 0.3s ease;
  padding:5vw;
  cursor:zoom-out;
}
.pdp-zoom-modal.open{
  opacity:1;visibility:visible;
}
.pdp-zoom-modal-img{
  max-width:min(900px,90vw);
  max-height:88vh;
  width:auto;height:auto;
  object-fit:contain;
  border-radius:6px;
  box-shadow:0 40px 100px rgba(0,0,0,0.8);
  transform:scale(0.96);
  transition:transform 0.3s ease;
}
.pdp-zoom-modal.open .pdp-zoom-modal-img{
  transform:scale(1);
}
.pdp-zoom-close{
  position:absolute;top:20px;right:20px;
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background 0.22s, transform 0.22s;
}
.pdp-zoom-close:hover{
  background:rgba(255,255,255,0.16);
  transform:scale(1.06);
}

@media(max-width:680px){
  .pdp-zoom-hint{bottom:10px;right:10px;padding:5px 10px;font-size:0.55rem}
  .pdp-zoom-close{top:14px;right:14px;width:38px;height:38px}
  .pdp-vial-img{height:min(320px,45vh)}
}

  .dc-modal-head { padding: 18px 18px 14px; }
  .dc-chart-content { padding: 18px 18px 20px; }
  .dc-table th, .dc-table td { padding: 9px 10px; }
}


/* ================================================================
   THEME VARIABLES — dark (default) and light
   Applied via :root (dark) and html.light-mode (light)
   ================================================================ */
:root {
  --bg:          #0c0c0c;
  --bg-2:        #111;
  --bg-3:        #161616;
  --bg-4:        #1a1a1a;
  --text:        #fff;
  --text-2:      #aaa;
  --text-3:      #666;
  --text-4:      #444;
  --border:      rgba(255,255,255,0.09);
  --border-2:    rgba(255,255,255,0.15);
  --divider:     rgba(255,255,255,0.07);
  --card-bg:     #111;
  --card-hover:  #141414;
  --header-bg:   rgba(12,12,12,0.88);
  --ann-bg:      #0e0e0e;
  --ann-border:  rgba(255,255,255,0.06);
  --badge-bg:    #fff;
  --badge-text:  #000;
  --btn-primary-bg:    #fff;
  --btn-primary-text:  #000;
  --btn-primary-hover: #ddd;
  --input-bg:    #1a1a1a;
  --scrollbar:   #2a2a2a;
  --overlay-bg:  rgba(0,0,0,0.82);
  --shadow:      rgba(0,0,0,0.8);
}

html.light-mode {
  --bg:          #f9f9f9;
  --bg-2:        #fff;
  --bg-3:        #f3f3f3;
  --bg-4:        #ececec;
  --text:        #0a0a0a;
  --text-2:      #444;
  --text-3:      #888;
  --text-4:      #bbb;
  --border:      rgba(0,0,0,0.1);
  --border-2:    rgba(0,0,0,0.2);
  --divider:     rgba(0,0,0,0.07);
  --card-bg:     #fff;
  --card-hover:  #f7f7f7;
  --header-bg:   rgba(255,255,255,0.94);
  --ann-bg:      #f0f0f0;
  --ann-border:  rgba(0,0,0,0.08);
  --badge-bg:    #111;
  --badge-text:  #fff;
  --btn-primary-bg:    #111;
  --btn-primary-text:  #fff;
  --btn-primary-hover: #333;
  --input-bg:    #f0f0f0;
  --scrollbar:   #ccc;
  --overlay-bg:  rgba(0,0,0,0.5);
  --shadow:      rgba(0,0,0,0.15);
}

/* Apply variables to key elements */
html.light-mode body                { background: var(--bg); color: var(--text); }
html.light-mode .ann-bar            { background: var(--ann-bg); border-color: var(--ann-border); color: var(--text-3); }
html.light-mode .site-header        { background: var(--header-bg); border-color: var(--border); backdrop-filter: blur(20px); }
html.light-mode .hdr-logo-icon      { filter: invert(1); }
html.light-mode .hlt-core           { color: var(--text); }
html.light-mode .hlt-peptides       { color: var(--text-3); }
html.light-mode .hn                 { color: var(--text-3); }
html.light-mode .hn:hover,
html.light-mode .hn-on              { color: var(--text); }
html.light-mode .hdr-icon           { color: var(--text-2); }
html.light-mode .hdr-icon:hover     { color: var(--text); }
html.light-mode .hdr-hamburger svg  { stroke: var(--text); }
html.light-mode .cart-count-badge   { background: var(--badge-bg); color: var(--badge-text); }
html.light-mode .mobile-nav         { background: #fff; border-color: var(--border); }
html.light-mode .mobile-nav a       { color: var(--text); border-color: var(--border); }

/* Hero section */
html.light-mode .features-bar       { background: var(--ann-bg); border-color: var(--border); }
html.light-mode .feat-num           { color: var(--text-4); }
html.light-mode .feat-txt h3        { color: var(--text); }
html.light-mode .feat-txt p         { color: var(--text-3); }

/* Products page */
html.light-mode .products-pg        { background: var(--bg); }
html.light-mode .pp-h1              { color: var(--text); }
html.light-mode .pp-tag-text        { color: var(--text-3); }
html.light-mode .pp-tag-dash        { background: #ccc; }
html.light-mode .pp-sub             { color: var(--text-2); }
html.light-mode .pp-card            { background: var(--card-bg); border-color: var(--border); box-shadow: 0 2px 20px var(--shadow); }
html.light-mode .pp-card:hover      { background: var(--card-hover); border-color: var(--border-2); }
html.light-mode .pp-card-left       { background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0,0,0,0.03) 0%, transparent 70%); }
html.light-mode .pp-card-rings .pcr { border-color: rgba(0,0,0,0.05); }
html.light-mode .pp-card-tag        { color: var(--text-3); border-color: var(--border); }
html.light-mode .pp-card-name       { color: var(--text); }
html.light-mode .pp-card-dash       { background: #e0e0e0; }
html.light-mode .pp-card-type       { color: var(--text-3); }
html.light-mode .pp-price-n         { color: var(--text); }
html.light-mode .pp-price-c         { color: var(--text-3); }
html.light-mode .pp-card-feats li   { color: var(--text-2); }
html.light-mode .pp-card-cta-btn    { background: var(--btn-primary-bg); color: var(--btn-primary-text); }

/* Product detail page */
html.light-mode .pdp-card           { background: var(--card-bg); border-color: var(--border); }
html.light-mode .pdp-img-side       { background: radial-gradient(ellipse 62% 52% at 50% 68%, rgba(0,0,0,0.04) 0%, transparent 62%); }
html.light-mode .pdp-rings .dr      { border-color: rgba(0,0,0,0.06); }
html.light-mode .pdp-badge          { color: var(--text-3); border-color: var(--border); }
html.light-mode .pdp-name           { color: var(--text); }
html.light-mode .pdp-sub-dash       { background: #ddd; }
html.light-mode .pdp-sub-text       { color: var(--text-3); }
html.light-mode .pdp-price-n        { color: var(--text); }
html.light-mode .pdp-price-c        { color: var(--text-3); }
html.light-mode .pdp-divider        { background: var(--divider); }
html.light-mode .ret-variant-btn    { background: var(--bg-3); border-color: var(--border); }
html.light-mode .ret-variant-btn--active { background: #111; border-color: #111; }
html.light-mode .ret-variant-btn--active .rvb-dose  { color: #fff; }
html.light-mode .ret-variant-btn--active .rvb-price { color: #aaa; }
html.light-mode .rvb-dose           { color: var(--text); }
html.light-mode .rvb-price          { color: var(--text-3); }
html.light-mode .pdp-feats li       { color: var(--text-2); }
html.light-mode .pdp-atc            { background: var(--btn-primary-bg); color: var(--btn-primary-text); }
html.light-mode .pdp-atc:hover      { background: var(--btn-primary-hover); }
html.light-mode .pdp-buy-now        { color: var(--text); border-color: var(--border-2); }
html.light-mode .pdp-buy-now:hover  { background: var(--bg-3); }
html.light-mode .pdp-qty            { background: var(--bg-3); border-color: var(--border); }
html.light-mode .pdp-qbtn           { color: var(--text-2); }
html.light-mode .pdp-qinp           { color: var(--text); background: transparent; }
html.light-mode .pdp-desc-title     { color: var(--text); border-color: var(--border); }
html.light-mode .pdp-desc-body      { color: var(--text-2); }
html.light-mode .pdp-details-table td { color: var(--text-2); border-color: var(--border); }
html.light-mode .pdp-details-table td:first-child { color: var(--text-3); }
html.light-mode .pdp-legal          { color: var(--text-4); }
html.light-mode .pdp-back           { color: var(--text-3); }
html.light-mode .pdp-back:hover     { color: var(--text); }
html.light-mode .pdp-zoom-hint      { background: rgba(0,0,0,0.08); border-color: var(--border); color: var(--text-3); }

/* Cart drawer & cart page */
html.light-mode .cart-drawer        { background: #fff; border-color: var(--border); }
html.light-mode .cd-head            { border-color: var(--border); }
html.light-mode .cd-title           { color: var(--text); }
html.light-mode .cd-close           { color: var(--text-2); }
html.light-mode .cd-close:hover     { color: var(--text); }
html.light-mode .cd-item-name       { color: var(--text); }
html.light-mode .cd-item-variant    { color: var(--text-3); }
html.light-mode .cd-item-price      { color: var(--text-2); }
html.light-mode .cd-item-qty button { color: var(--text-3); border-color: var(--border); }
html.light-mode .cd-rm              { color: var(--text-4); }
html.light-mode .cd-foot            { border-color: var(--border); background: var(--bg-3); }
html.light-mode .cd-row span        { color: var(--text); }
html.light-mode .cd-checkout-btn    { background: #111; color: #fff; }
html.light-mode .cd-note            { color: var(--text-4); }
html.light-mode .cart-overlay       { background: var(--overlay-bg); }
html.light-mode .ci-section         { background: var(--bg); }
html.light-mode .ci-img             { background: var(--bg-3); border-color: var(--border); }
html.light-mode .ci-name            { color: var(--text); }
html.light-mode .ci-type            { color: var(--text-3); }
html.light-mode .ci-price           { color: var(--text-2); }
html.light-mode .ci-total           { color: var(--text); }
html.light-mode .ci-qbtn            { background: var(--bg-3); color: var(--text-2); border-color: var(--border); }
html.light-mode .ci-rm-btn          { color: var(--text-4); }
html.light-mode .cart-summary       { background: var(--bg-2); border-color: var(--border); }

/* Footer */
html.light-mode .site-footer        { background: #f0f0f0; border-color: var(--border); }
html.light-mode .footer-logo .hdr-logo-icon { filter: invert(1); }
html.light-mode .hlt-core           { color: var(--text); }
html.light-mode .footer-nav a       { color: var(--text-3); }
html.light-mode .footer-nav a:hover { color: var(--text); }
html.light-mode .footer-contact-email,
html.light-mode .footer-contact-whatsapp { color: var(--text-3); }
html.light-mode .footer-contact-email:hover,
html.light-mode .footer-contact-whatsapp:hover { color: var(--text); }
html.light-mode .footer-contact-whatsapp { background: var(--border); }
html.light-mode .footer-copy        { color: var(--text-4); border-color: var(--border); }

/* About & Contact pages */
html.light-mode .ap                 { background: var(--bg); }
html.light-mode .ap-hero            { background: var(--bg); }
html.light-mode .ap-bg-rings .ap-r  { border-color: rgba(0,0,0,0.04); }
html.light-mode .ap-bg-logo         { filter: invert(1); opacity: 0.06; }
html.light-mode .ap-h1,
html.light-mode .ap-h2              { color: var(--text); }
html.light-mode .ap-eyebrow         { color: var(--text-4); }
html.light-mode .ap-divider-dash    { background: #ddd; }
html.light-mode .ap-divider-text    { color: var(--text-3); }
html.light-mode .ap-intro           { color: var(--text-2); }
html.light-mode .ap-pcard           { background: var(--card-bg); border-color: var(--border); }
html.light-mode .ap-pcard:hover     { border-color: var(--border-2); }
html.light-mode .ap-pcard-num       { color: var(--text-4); }
html.light-mode .ap-pcard h3        { color: var(--text); }
html.light-mode .ap-pcard p         { color: var(--text-2); }
html.light-mode .ap-why             { background: var(--bg-3); border-color: var(--border); }
html.light-mode .awr                { border-color: rgba(0,0,0,0.04); }
html.light-mode .ap-why-item        { background: var(--card-bg); border-color: var(--border); }
html.light-mode .ap-why-item:hover  { border-color: var(--border-2); background: var(--bg-3); }
html.light-mode .ap-why-check       { background: var(--bg-3); }
html.light-mode .ap-why-check svg   { stroke: var(--text); }
html.light-mode .ap-why-text        { color: var(--text); }
html.light-mode .ap-vision          { background: var(--bg); }
html.light-mode .avr                { border-color: rgba(0,0,0,0.04); }
html.light-mode .ap-divider-line    { background: #ddd; }
html.light-mode .ap-vision-text,
html.light-mode .ap-vision-closing  { color: var(--text-2); }
html.light-mode .ap-cta             { background: #f0f0f0; border-color: var(--border); }
html.light-mode .acr                { border-color: rgba(0,0,0,0.04); }
html.light-mode .ap-cta-h2         { color: var(--text); }
html.light-mode .ap-cta-btn        { background: #111; color: #fff; }
html.light-mode .ap-cta-btn:hover  { background: #333; }
html.light-mode .ap-cta-btn--outline{ background: transparent; color: var(--text); border-color: var(--border-2); }
html.light-mode .ap-cta-btn--outline:hover { background: var(--bg-3); }
html.light-mode .ap-contact-card    { background: var(--card-bg); border-color: var(--border); color: var(--text); }
html.light-mode .ap-contact-card:hover { border-color: var(--border-2); }
html.light-mode .ap-contact-card-icon { background: var(--bg-3); }
html.light-mode .ap-contact-card-icon svg { stroke: var(--text); }
html.light-mode .ap-contact-card-label { color: var(--text-3); }
html.light-mode .ap-contact-card-value { color: var(--text); }
html.light-mode .ap-contact-card-cta { color: var(--text-3); border-color: var(--border); }

/* Age gate */
html.light-mode .age-gate           { background: rgba(200,200,200,0.7); }
html.light-mode .age-gate-box       { background: #fff; border-color: var(--border); }
html.light-mode .age-gate-eyebrow   { color: var(--text-3); }
html.light-mode .age-gate-title     { color: var(--text); }
html.light-mode .age-gate-divider   { background: #ddd; }
html.light-mode .age-gate-msg       { color: var(--text-2); }
html.light-mode .age-gate-msg strong{ color: var(--text); }
html.light-mode .age-gate-btn--confirm { background: #111; color: #fff; }
html.light-mode .age-gate-btn--confirm:hover { background: #333; }
html.light-mode .age-gate-btn--exit { border-color: var(--border-2); color: var(--text-3); }
html.light-mode .age-gate-legal     { color: var(--text-4); }
html.light-mode .agr                { border-color: rgba(0,0,0,0.04); }

/* Scrollbar */
html.light-mode ::-webkit-scrollbar-track { background: #f0f0f0; }
html.light-mode ::-webkit-scrollbar-thumb { background: var(--scrollbar); }

/* ================================================================
   THEME TOGGLE BUTTON
   ================================================================ */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.22s, transform 0.18s;
}
.theme-toggle-btn:hover {
  background: rgba(128,128,128,0.15);
  transform: scale(1.08);
}
.theme-toggle-btn .icon-moon { display: block; }
.theme-toggle-btn .icon-sun  { display: none; }
html.light-mode .theme-toggle-btn .icon-moon { display: none; }
html.light-mode .theme-toggle-btn .icon-sun  { display: block; }

/* ================================================================
   DOSE CHART MODAL — theme-aware HTML table
   ================================================================ */
.dc-modal {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.dc-modal.open { opacity: 1; visibility: visible; }

.dc-modal-box {
  position: relative;
  width: 100%; max-width: 420px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,0,0,0.9);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.1);
}
.dc-modal.open .dc-modal-box { transform: translateY(0) scale(1); }

html.light-mode .dc-modal-box {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.dc-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
html.light-mode .dc-modal-head { border-color: rgba(0,0,0,0.1); }

.dc-eyebrow {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: #555; margin-bottom: 4px;
}
html.light-mode .dc-eyebrow { color: #aaa; }

.dc-title {
  font-size: 1.05rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em; color: #fff; line-height: 1.15;
}
html.light-mode .dc-title { color: #111; }

.dc-close {
  flex-shrink: 0; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.07);
  color: #aaa; margin-left: 10px; margin-top: 2px;
  transition: background 0.2s, color 0.2s;
}
.dc-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
html.light-mode .dc-close { background: rgba(0,0,0,0.06); color: #666; }
html.light-mode .dc-close:hover { background: rgba(0,0,0,0.12); color: #111; }

.dc-body { padding: 8px 0; }

.dc-table {
  width: 100%; border-collapse: collapse;
}
.dc-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
html.light-mode .dc-table thead tr { border-color: rgba(0,0,0,0.1); }

.dc-table th {
  padding: 11px 22px; text-align: left;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #666;
}
html.light-mode .dc-table th { color: #aaa; }

.dc-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
html.light-mode .dc-table tbody tr { border-color: rgba(0,0,0,0.07); }
.dc-table tbody tr:last-child { border-bottom: none; }
.dc-table tbody tr:hover { background: rgba(255,255,255,0.03); }
html.light-mode .dc-table tbody tr:hover { background: rgba(0,0,0,0.03); }

.dc-table td {
  padding: 13px 22px; font-size: 0.9rem; color: #ccc;
}
html.light-mode .dc-table td { color: #333; }

.dc-table td:first-child { font-weight: 700; color: #fff; }
html.light-mode .dc-table td:first-child { color: #111; }

.dc-footer {
  text-align: center;
  padding: 14px 22px 18px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #333;
  border-top: 1px solid rgba(255,255,255,0.06);
}
html.light-mode .dc-footer { color: #bbb; border-color: rgba(0,0,0,0.08); }

/* Dose chart trigger button */
.pdp-dose-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 9px 18px;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px; font-family: inherit;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.pdp-dose-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
html.light-mode .pdp-dose-btn { color: #111; border-color: rgba(0,0,0,0.2); background: #fff; }
html.light-mode .pdp-dose-btn:hover { background: #f5f5f5; border-color: rgba(0,0,0,0.4); }

@media (max-width: 520px) {
  .dc-modal { padding: 14px; }
  .dc-modal-box { max-width: 100%; }
  .dc-table th, .dc-table td { padding: 10px 16px; }
}

/* ================================================================
   LIGHT MODE — HERO SECTION (was missing, causing dark hero in light mode)
   ================================================================ */
html.light-mode .hero {
  background: #f8f8f8;
}
html.light-mode .hero-badge {
  background: #fff;
  border-color: #ddd;
  color: #888;
}
html.light-mode .hero-h1,
html.light-mode .hero-h1-line1,
html.light-mode .hero-h1-line2 {
  color: #0a0a0a;
}
html.light-mode .hero-disclaim     { color: #ccc; }
html.light-mode .hr1 { border-color: rgba(0,0,0,0.05); }
html.light-mode .hr2 { border-color: rgba(0,0,0,0.045); }
html.light-mode .hr3 { border-color: rgba(0,0,0,0.04); }
html.light-mode .hr4 { border-color: rgba(0,0,0,0.035); }
html.light-mode .hr5 { border-color: rgba(0,0,0,0.03); }
html.light-mode .hr6 { border-color: rgba(0,0,0,0.025); }
html.light-mode .hr7 { border-color: rgba(0,0,0,0.02); }
html.light-mode .hero-pen {
  filter: drop-shadow(-8px 20px 40px rgba(0,0,0,0.18))
          drop-shadow(-2px 6px 12px rgba(0,0,0,0.12));
}

/* ================================================================
   LIGHT MODE — FEATURES BAR (the 4-column strip at bottom of hero)
   ================================================================ */
html.light-mode .feat-bar          { background: #fff; border-color: #e5e5e5; }
html.light-mode .feat:hover        { background: rgba(0,0,0,0.02); }
html.light-mode .feat-line         { background: #e5e5e5; }
html.light-mode .feat-ico          { color: #555; }
html.light-mode .feat-num          { color: #ccc; }
html.light-mode .feat-txt h3       { color: #0a0a0a; }
html.light-mode .feat-txt p        { color: #888; }

/* ================================================================
   LIGHT MODE — ABOUT ANCHOR SECTION (homepage about strip)
   ================================================================ */
html.light-mode .ap-anchor         { background: #f2f2f2; border-color: #e5e5e5; }
html.light-mode .aar               { border-color: rgba(0,0,0,0.04); }
html.light-mode .ap-hero-logo      { filter: invert(1); opacity: 0.08; }
html.light-mode .ap-h1-sm          { color: #0a0a0a; }
html.light-mode .ap-anchor-inner .ap-intro { color: #555; }
html.light-mode .ap-anchor-pill    {
  background: #fff;
  border-color: #e0e0e0;
}
html.light-mode .ap-anchor-pill:hover {
  border-color: #bbb;
  background: #f9f9f9;
}
html.light-mode .aap-num           { color: #bbb; background: rgba(0,0,0,0.06); }
html.light-mode .aap-text          { color: #333; }
html.light-mode .ap-anchor-link    { color: #0a0a0a; border-color: #ccc; }
html.light-mode .ap-anchor-link:hover { border-color: #0a0a0a; }

/* ── Hero ring, tagline, desc, btn — corrected selectors ── */
html.light-mode .hero-rings .hr { border-color: rgba(0,0,0,0.04); }
html.light-mode .hr1 { border-color: rgba(0,0,0,0.05); }
html.light-mode .hr2 { border-color: rgba(0,0,0,0.045); }
html.light-mode .hr3 { border-color: rgba(0,0,0,0.04); }
html.light-mode .hr4 { border-color: rgba(0,0,0,0.035); }
html.light-mode .hr5 { border-color: rgba(0,0,0,0.03); }
html.light-mode .hr6 { border-color: rgba(0,0,0,0.025); }
html.light-mode .hr7 { border-color: rgba(0,0,0,0.02); }
html.light-mode .hero-tagline-dash { background: #ccc; }
html.light-mode .hero-tagline-text { color: #888; }
html.light-mode .hero-desc         { color: #555; }
html.light-mode .hero-desc strong  { color: #0a0a0a; }
html.light-mode .hero-btn          { background: #111; color: #fff; }
html.light-mode .hero-btn:hover    { background: #333; }

/* ================================================================
   PRODUCT IMAGE GALLERY
   ================================================================ */

/* Container — replaces old pdp-img-side */
.pdp-gallery {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: flex-start;
  position: sticky;
  top: 88px; /* below fixed header */
}

/* Gallery wrap — the visible frame */
.pgal-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 3/4;
  cursor: pointer;
}
html.light-mode .pgal-wrap {
  background: #f4f4f4;
  border-color: #e0e0e0;
}

/* Track holds all slides */
.pgal-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.pgal-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pgal-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide 0: product shot — keep rings + glow */
.pdp-rings-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgal-rings {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Gallery images */
.pgal-img {
  position: relative;
  z-index: 2;
  display: block;
}
.pgal-img--pen {
  width: min(72%, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(-12px 20px 40px rgba(0,0,0,0.9));
  animation: penFloat 7s ease-in-out infinite;
}
.pgal-img-wrap--marketing {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgal-img--marketing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}
.pgal-img--marketing:hover {
  transform: scale(1.018);
}

/* Arrows */
.pgal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.pgal-arrow:hover { background: rgba(0,0,0,0.82); transform: translateY(-50%) scale(1.06); }
.pgal-arrow--prev { left: 12px; }
.pgal-arrow--next { right: 12px; }
html.light-mode .pgal-arrow { background: rgba(255,255,255,0.75); color: #111; border-color: rgba(0,0,0,0.12); }
html.light-mode .pgal-arrow:hover { background: rgba(255,255,255,0.95); }

/* Zoom hint */
.pgal-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

/* Dots */
.pgal-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 0;
}
.pgal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.pgal-dot--active {
  background: #fff;
  transform: scale(1.25);
}
html.light-mode .pgal-dot { background: rgba(0,0,0,0.18); }
html.light-mode .pgal-dot--active { background: #111; }

/* Fullscreen lightbox */
.pgal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pgal-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.pgal-lb-img {
  max-width: min(700px, 88vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.1);
}
.pgal-lightbox.open .pgal-lb-img { transform: scale(1); }
.pgal-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.pgal-lb-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .pdp-gallery {
    width: 100%;
    position: static;
  }
  .pgal-wrap {
    aspect-ratio: 1 / 1;
  }
  .pgal-img--pen {
    width: min(60%, 220px);
  }
}
@media (max-width: 500px) {
  .pgal-wrap { border-radius: 8px; }
  .pgal-arrow { width: 32px; height: 32px; }
  .pgal-lb-close { top: 14px; right: 14px; }
}

/* ================================================================
   DOSE CHART — premium black luxury modal
   ================================================================ */

/* Scroll lock — no layout shift */

/* Backdrop */
#dose-chart-modal {
  position: fixed !important;
  inset: 0;
  z-index: 99999 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
#dose-chart-modal.open {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Modal box */
.dc-modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0, 0, 0, 0.95);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.24s cubic-bezier(.22, .68, 0, 1.1);
}
#dose-chart-modal.open .dc-modal-box {
  transform: scale(1) translateY(0);
}

/* Header */
.dc-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.dc-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 5px;
}
.dc-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}

/* Close button */
.dc-close {
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.dc-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: scale(1.08);
}

/* Body */
.dc-body { padding: 6px 0; }

/* Table */
.dc-table {
  width: 100%;
  border-collapse: collapse;
}
.dc-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dc-table th {
  padding: 12px 24px;
  text-align: left;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
}
.dc-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.14s;
}
.dc-table tbody tr:last-child { border-bottom: none; }
.dc-table tbody tr:hover { background: rgba(255, 255, 255, 0.025); }
.dc-table td {
  padding: 13px 24px;
  font-size: 0.9rem;
  color: #ccc;
}
.dc-table td:first-child {
  font-weight: 600;
  color: #fff;
}

/* Footer */
.dc-footer {
  text-align: center;
  padding: 14px 24px 18px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a2a2a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dose Chart trigger button */
.pdp-dose-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  margin-top: 10px;
  background: transparent;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
}
.pdp-dose-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  #dose-chart-modal { padding: 14px; }
  .dc-modal-box { border-radius: 10px; }
  .dc-modal-head { padding: 18px 18px 14px; }
  .dc-table th, .dc-table td { padding: 11px 18px; }
  .dc-footer { padding: 12px 18px 16px; }
}


/* ================================================================
   DOSE CHART — premium black luxury modal
   ================================================================ */

/* Block background scroll without scrollbar layout shift */
html[data-modal-open] { overflow: hidden; }

/* Button — above price, black luxury */
.pdp-dose-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-bottom: 14px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.pdp-dose-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}
.pdp-dose-btn svg { flex-shrink: 0; }

/* Overlay */
#dose-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none; /* JS sets flex on open */
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
#dose-chart-modal.open {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.dc-modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 88vh;
  overflow-y: auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.95);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.22s cubic-bezier(.22,.68,0,1.1);
}
#dose-chart-modal.open .dc-modal-box {
  transform: scale(1) translateY(0);
}

/* Header */
.dc-modal-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dc-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
}
.dc-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}

/* Close button */
.dc-close-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.dc-close-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: scale(1.1);
}

/* Table */
.dc-body { padding: 6px 0; }

.dc-table {
  width: 100%;
  border-collapse: collapse;
}
.dc-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dc-table th {
  padding: 11px 22px;
  text-align: left;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
}
.dc-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.dc-table tbody tr:last-child { border-bottom: none; }
.dc-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.dc-table td {
  padding: 13px 22px;
  font-size: 0.88rem;
  color: #ccc;
}
.dc-table td:first-child {
  font-weight: 700;
  color: #fff;
}

/* Footer */
.dc-foot {
  text-align: center;
  padding: 14px 22px 18px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a2a2a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 520px) {
  #dose-chart-modal { padding: 12px; }
  .dc-modal-box { max-width: 100%; border-radius: 8px; }
  .dc-modal-hd { padding: 16px 16px 12px; }
  .dc-table th, .dc-table td { padding: 10px 16px; font-size: 0.82rem; }
}

/* Non-hero pages: push content below fixed bar + header */
#main { padding-top: 108px; }
/* Hero handles its own offset with padding-top:108px on .hero */
.tpl-index #main { padding-top: 0; }
@media(max-width:600px){
  #main { padding-top: 104px; }
  .tpl-index #main { padding-top: 0; }
  .hero { padding-top: 104px !important; }
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 14px;
  background: #25D366;
  border-radius: 50px;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0,0,0,0.25);
  animation: waFloat 3s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.18s ease;
}
.wa-float:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.6),
    0 4px 12px rgba(0,0,0,0.3);
  animation: none;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-label {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

/* Mobile — smaller, icon only */
@media (max-width: 600px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .wa-label { display: none; }
  .wa-icon  { width: 28px; height: 28px; }
}

/* ================================================================
   FORMAT DROPDOWN — premium expandable variant selector
   ================================================================ */
.fmt-drop {
  margin-bottom: 20px;
}
.fmt-drop-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

/* Trigger button */
.fmt-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  z-index: 2;
}
.fmt-trigger:hover {
  border-color: rgba(255,255,255,0.28);
  background: #1a1a1a;
}
.fmt-trigger--open {
  border-color: rgba(255,255,255,0.35);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fmt-trigger-text {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fmt-trigger-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  flex-shrink: 0;
}
.fmt-chevron {
  flex-shrink: 0;
  color: #666;
  transition: transform 0.25s ease;
}
.fmt-trigger--open .fmt-chevron {
  transform: rotate(180deg);
}

/* Dropdown list */
.fmt-list {
  display: none;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
}

/* Option rows */
.fmt-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.18s;
}
.fmt-option:last-child { border-bottom: none; }
.fmt-option:hover { background: rgba(255,255,255,0.05); }
.fmt-option--active { background: rgba(255,255,255,0.04); }
.fmt-option--active .fmt-option-title { color: #fff; }
.fmt-option[data-sold-out] { opacity: 0.45; cursor: not-allowed; }

.fmt-option-title {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 600;
  color: #ddd;
}
.fmt-option--active .fmt-option-title::before {
  content: '✓ ';
  color: #fff;
  font-size: 0.75rem;
}
.fmt-option-price {
  font-size: 0.76rem;
  font-weight: 600;
  color: #777;
  flex-shrink: 0;
}
.fmt-option--active .fmt-option-price { color: #aaa; }
.fmt-option-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .fmt-trigger { padding: 12px 14px; }
  .fmt-option  { padding: 12px 14px; }
  .fmt-trigger-text { font-size: 0.82rem; }
}

/* ── GHK-Cu tabbed dose chart ── */
.dc-tabs { width: 100%; }

.dc-tab-btns {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 22px;
}
.dc-tab-btn {
  flex: 1;
  padding: 12px 8px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.dc-tab-btn:hover { color: #888; }
.dc-tab-btn--active {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.5);
}

.dc-tab-panel { display: none; }
.dc-tab-panel--active { display: block; }
