/* ============================================================
   PurityWhip — N2O Cream Charger Export Store
   Shared design system (prototype + mirrors WordPress theme)
   Palette: deep ink / teal accent / coral sale
   ============================================================ */

:root{
  --ink:#0E1B2A;
  --ink-2:#16263B;
  --teal:#16B8A6;
  --teal-d:#0E8C7E;
  --coral:#FF5A3C;
  --amber:#F4A300;
  --bg:#ffffff;
  --bg-soft:#F6F8FB;
  --bg-dark:#0E1B2A;
  --text:#1F2A37;
  --muted:#6B7785;
  --line:#E6EBF1;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 10px 30px rgba(14,27,42,.08);
  --shadow-lg:0 18px 50px rgba(14,27,42,.16);
  --maxw:1240px;
  --font:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,"PingFang SC","Microsoft YaHei",sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.container{max-width:var(--maxw);margin:0 auto;padding:0 22px}
.section{padding:78px 0}
.section-sm{padding:54px 0}
.bg-soft{background:var(--bg-soft)}
.bg-dark{background:var(--bg-dark);color:#fff}

/* ---------- Typography ---------- */
h1,h2,h3,h4{line-height:1.18;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
h1{font-size:clamp(34px,5vw,58px)}
h2{font-size:clamp(26px,3.4vw,40px)}
h3{font-size:20px}
.lead{font-size:18px;color:var(--muted);max-width:640px}
.text-center{text-align:center}
.muted{color:var(--muted)}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:13px 26px;border-radius:999px;font-weight:700;font-size:15px;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--teal);color:#fff;box-shadow:0 8px 20px rgba(22,184,166,.35)}
.btn-primary:hover{background:var(--teal-d)}
.btn-coral{background:var(--coral);color:#fff;box-shadow:0 8px 20px rgba(255,90,60,.35)}
.btn-coral:hover{filter:brightness(.95)}
.btn-ghost{background:transparent;color:var(--ink);border:1.5px solid var(--line)}
.btn-ghost:hover{border-color:var(--ink)}
.btn-light{background:#fff;color:var(--ink)}
.btn-light:hover{background:#eef3f7}
.btn-block{width:100%;justify-content:center}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:70px}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:21px;color:var(--ink);letter-spacing:-.03em}
.logo .mark{width:34px;height:34px;border-radius:9px;background:linear-gradient(135deg,var(--teal),var(--teal-d));display:grid;place-items:center;color:#fff;font-weight:900}
.logo-img{height:38px;width:auto;display:block}
.logo-text{font-weight:800;font-size:36px;line-height:1;letter-spacing:-.03em;white-space:nowrap}
.logo span{color:var(--teal)}
.nav-links{display:flex;gap:28px;font-weight:600;font-size:15px}
.nav-links a{position:relative;padding:6px 0;color:var(--ink)}
.nav-links a:hover{color:var(--teal-d)}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--teal);transition:width .2s}
.nav-links a:hover::after{width:100%}
.nav-actions{display:flex;align-items:center;gap:14px}
.icon-btn{position:relative;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--bg-soft);color:var(--ink);transition:background .15s}
.icon-btn:hover{background:#e9eff4}
.cart-count{position:absolute;top:-3px;right:-3px;background:var(--coral);color:#fff;font-size:11px;font-weight:800;min-width:19px;height:19px;border-radius:99px;display:grid;place-items:center;padding:0 5px}
.burger{display:none;flex-direction:column;gap:5px;width:42px;height:42px;border-radius:10px;background:var(--bg-soft);place-items:center}
.burger span{width:20px;height:2px;background:var(--ink);border-radius:2px}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;background:radial-gradient(1200px 600px at 80% -10%,rgba(22,184,166,.18),transparent 60%),linear-gradient(180deg,#fff,#F6F8FB)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center;padding:70px 0 84px}
.hero h1{margin-bottom:18px}
.hero h1 em{font-style:normal;color:var(--teal)}
.hero .lead{margin-bottom:28px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-stats{display:flex;gap:30px;margin-top:34px}
.hero-stats .n{font-size:26px;font-weight:800;color:var(--ink)}
.hero-stats .l{font-size:13px;color:var(--muted)}
.hero-art{position:relative;display:grid;place-items:center}
.hero-badge{position:absolute;top:6%;right:2%;background:#fff;border-radius:14px;padding:12px 16px;box-shadow:var(--shadow);font-size:13px;font-weight:700;color:var(--ink);max-width:180px}
.hero-badge b{color:var(--coral)}

/* ---------- USP bar ---------- */
.usp{background:var(--ink);color:#fff}
.usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;padding:26px 0}
.usp-item{display:flex;align-items:center;gap:13px;font-size:14.5px;font-weight:600}
.usp-item .ic{width:40px;height:40px;border-radius:11px;background:rgba(22,184,166,.18);color:var(--teal);display:grid;place-items:center;flex:none}
.usp-item small{display:block;font-weight:400;color:#9fb0c0;font-size:12.5px}

/* ---------- Section heading ---------- */
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:38px;flex-wrap:wrap}
.sec-head .eyebrow{display:inline-block;color:var(--teal-d);font-weight:800;letter-spacing:.08em;text-transform:uppercase;font-size:12.5px;margin-bottom:8px}

/* ---------- Category cards ---------- */
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.cat-card{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--bg-soft);border:1px solid var(--line);padding:26px;min-height:230px;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .2s,box-shadow .2s}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.cat-card .tag{position:absolute;top:18px;left:18px;background:#fff;border:1px solid var(--line);color:var(--muted);font-size:12px;font-weight:700;padding:5px 11px;border-radius:99px}
.cat-card h3{margin-bottom:6px}
.cat-card p{font-size:14px;color:var(--muted);margin-bottom:14px}
.cat-card .more{color:var(--teal-d);font-weight:700;font-size:14px}
.cat-card .deco{position:absolute;top:-30px;right:-20px;width:150px;opacity:.9}

/* ---------- Product grid ---------- */
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s}
.product:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.product .thumb{position:relative;aspect-ratio:1/1;background:linear-gradient(160deg,#eef3f7,#dfe8ef);display:grid;place-items:center;padding:0;overflow:hidden}
.product .thumb img{width:100%;height:100%;object-fit:cover;filter:none;border-radius:0}
.product .badges{position:absolute;top:12px;left:12px;display:flex;flex-direction:column;gap:6px}
.badge{font-size:11.5px;font-weight:800;padding:4px 9px;border-radius:7px;letter-spacing:.02em}
.badge-sale{background:var(--coral);color:#fff}
.badge-new{background:var(--teal);color:#fff}
.badge-hot{background:var(--amber);color:#fff}
.product .tools{position:absolute;top:12px;right:12px;display:flex;flex-direction:column;gap:8px}
.product .tools button{width:34px;height:34px;border-radius:9px;background:#fff;box-shadow:var(--shadow);display:grid;place-items:center;color:var(--ink);transition:color .15s}
.product .tools button:hover{color:var(--teal-d)}
.product .body{padding:16px 16px 18px;display:flex;flex-direction:column;gap:8px;flex:1}
.product .cat{font-size:12px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.product h3{font-size:15.5px;font-weight:700;line-height:1.35}
.product .stars{color:var(--amber);font-size:13px;display:flex;align-items:center;gap:6px}
.product .stars small{color:var(--muted);font-weight:600}
.product .price{margin-top:auto;display:flex;align-items:baseline;gap:9px}
.product .price .now{font-size:19px;font-weight:800;color:var(--ink)}
.product .price .was{font-size:14px;color:var(--muted);text-decoration:line-through}
.product .price .from{font-size:12px;color:var(--muted);font-weight:600}
.product .atc{margin-top:10px}

/* ---------- Testimonials ---------- */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tcard{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow)}
.tcard .stars{color:var(--amber);margin-bottom:12px;letter-spacing:2px}
.tcard p{font-size:15px;color:var(--text);margin-bottom:18px}
.tcard .who{display:flex;align-items:center;gap:12px}
.tcard .ava{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--teal-d));color:#fff;display:grid;place-items:center;font-weight:800}
.tcard .who b{display:block;font-size:14.5px}
.tcard .who small{color:var(--muted);font-size:13px}

/* ---------- Blog teaser ---------- */
.blogrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.bcard{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;transition:transform .18s,box-shadow .18s}
.bcard:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.bcard .cover{aspect-ratio:16/9;background:linear-gradient(135deg,var(--ink),var(--teal-d));display:grid;place-items:center;color:#fff;font-weight:800;font-size:14px;padding:18px;text-align:center}
.bcard .meta{padding:18px}
.bcard .meta .d{font-size:12.5px;color:var(--muted);font-weight:600;margin-bottom:8px}
.bcard .meta h3{font-size:16.5px;line-height:1.35;margin-bottom:10px}
.bcard .meta a{color:var(--teal-d);font-weight:700;font-size:14px}

/* ---------- Newsletter / CTA ---------- */
.cta-box{background:linear-gradient(135deg,var(--ink),var(--ink-2));border-radius:22px;padding:50px;color:#fff;display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:center;overflow:hidden;position:relative}
.cta-box h2{color:#fff}
.cta-box p{color:#c7d3df}
.news-form{display:flex;gap:10px;background:#fff;padding:7px;border-radius:999px}
.news-form input{flex:1;border:none;outline:none;padding:10px 16px;font-size:15px;border-radius:999px;color:var(--ink)}
.news-form .btn{border-radius:999px}

/* ---------- Footer ---------- */
.footer{background:var(--ink);color:#c7d3df;padding:60px 0 26px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:34px}
.footer .logo{color:#fff;margin-bottom:14px}
.footer p{font-size:14px;max-width:300px}
.footer h4{color:#fff;font-size:15px;margin-bottom:16px;letter-spacing:.02em}
.footer ul li{margin-bottom:10px}
.footer ul a{font-size:14px;color:#c7d3df}
.footer ul a:hover{color:var(--teal)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:42px;padding-top:22px;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:13px;color:#8ba0b3}
.foot-bottom a{color:#8ba0b3}
.foot-bottom a:hover{color:var(--teal)}
.certs{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.cert{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:#fff;font-size:12px;font-weight:700;padding:6px 11px;border-radius:8px}

/* compliance disclaimer strip in footer */
.disclaimer{margin-top:22px;background:rgba(255,90,60,.1);border:1px solid rgba(255,90,60,.3);color:#ffd9cf;font-size:12.5px;padding:12px 14px;border-radius:10px;line-height:1.5}

/* ---------- Age verification modal ---------- */
.age-overlay{position:fixed;inset:0;z-index:999;background:rgba(8,16,26,.78);backdrop-filter:blur(4px);display:grid;place-items:center;padding:20px}
.age-modal{background:#fff;border-radius:20px;max-width:480px;width:100%;padding:38px 34px;text-align:center;box-shadow:var(--shadow-lg)}
.age-modal .ic{width:64px;height:64px;border-radius:16px;background:rgba(22,184,166,.14);color:var(--teal);display:grid;place-items:center;margin:0 auto 18px;font-size:30px}
.age-modal h2{font-size:24px;margin-bottom:10px}
.age-modal p{font-size:14.5px;color:var(--muted);margin-bottom:22px}
.age-modal .row{display:flex;gap:12px}
.age-modal .btn{flex:1;justify-content:center}
.age-note{margin-top:16px;font-size:12px;color:var(--muted)}

/* ---------- Shop page ---------- */
.shop-grid{display:grid;grid-template-columns:260px 1fr;gap:34px;align-items:start}
.shop-side{position:sticky;top:90px;display:flex;flex-direction:column;gap:22px}
.widget{background:var(--bg-soft);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.widget h4{font-size:15px;margin-bottom:14px}
.widget label{display:flex;align-items:center;gap:10px;font-size:14px;margin-bottom:11px;color:var(--text);cursor:pointer}
.widget input[type=checkbox]{width:17px;height:17px;accent-color:var(--teal)}
.widget .price-range{width:100%;accent-color:var(--teal)}
.widget .range-val{display:flex;justify-content:space-between;font-size:13px;color:var(--muted);margin-top:6px}
.shop-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:22px;flex-wrap:wrap;gap:12px}
.shop-top select{padding:10px 14px;border:1px solid var(--line);border-radius:10px;font-family:inherit;font-size:14px}

/* ---------- Product detail ---------- */
.pdp{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.pdp-gallery .main{background:linear-gradient(160deg,#eef3f7,#dfe8ef);border-radius:var(--radius);aspect-ratio:1/1;display:grid;place-items:center;padding:30px}
.pdp-gallery .main img{width:58%;filter:drop-shadow(0 20px 26px rgba(14,27,42,.2))}
.pdp-thumbs{display:flex;gap:12px;margin-top:14px}
.pdp-thumbs .t{width:74px;height:74px;border:1px solid var(--line);border-radius:12px;background:var(--bg-soft);display:grid;place-items:center;padding:8px;cursor:pointer}
.pdp-thumbs .t.active{border-color:var(--teal);box-shadow:0 0 0 2px rgba(22,184,166,.25)}
.pdp-info h1{font-size:32px;margin-bottom:10px}
.pdp-info .cat{color:var(--muted);font-weight:700;text-transform:uppercase;font-size:13px;letter-spacing:.05em;margin-bottom:8px}
.pdp-info .stars{display:flex;align-items:center;gap:8px;color:var(--amber);margin-bottom:14px;font-size:14px}
.pdp-info .stars small{color:var(--muted)}
.pdp-info .price{font-size:30px;font-weight:800;color:var(--ink);margin-bottom:6px}
.pdp-info .price .was{font-size:18px;color:var(--muted);text-decoration:line-through;margin-left:10px;font-weight:600}
.pdp-info .stock{color:var(--teal-d);font-weight:700;font-size:14px;margin-bottom:18px;display:flex;align-items:center;gap:7px}
.pdp-info .desc{color:var(--text);margin-bottom:22px}
.variations{display:flex;flex-direction:column;gap:16px;margin-bottom:22px}
.var-row .vl{font-size:13px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.04em;margin-bottom:9px}
.var-opts{display:flex;gap:10px;flex-wrap:wrap}
.var-opts button{padding:10px 16px;border:1.5px solid var(--line);border-radius:10px;font-weight:700;font-size:14px;background:#fff;transition:all .15s}
.var-opts button:hover{border-color:var(--ink)}
.var-opts button.active{border-color:var(--teal);background:rgba(22,184,166,.1);color:var(--teal-d)}
.qty-row{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.qty{display:flex;align-items:center;border:1.5px solid var(--line);border-radius:10px;overflow:hidden}
.qty button{width:42px;height:46px;font-size:20px;color:var(--ink);background:#fff}
.qty input{width:52px;height:46px;text-align:center;border:none;outline:none;font-size:16px;font-weight:700}
.pdp-cta{display:flex;gap:12px;margin-bottom:20px}
.pdp-meta{font-size:13.5px;color:var(--muted);display:flex;flex-direction:column;gap:8px;border-top:1px solid var(--line);padding-top:18px}
.pdp-meta div{display:flex;gap:9px;align-items:center}
.tabs{margin-top:54px}
.tab-head{display:flex;gap:6px;border-bottom:1px solid var(--line);margin-bottom:24px;flex-wrap:wrap}
.tab-head button{padding:13px 20px;font-weight:700;font-size:15px;color:var(--muted);border-bottom:2px solid transparent}
.tab-head button.active{color:var(--ink);border-color:var(--teal)}
.tab-panel{display:none;color:var(--text);font-size:15px}
.tab-panel.active{display:block}
.tab-panel ul{margin:10px 0 10px 18px;list-style:disc}
.spec-table{width:100%;border-collapse:collapse;margin-top:8px}
.spec-table td{padding:11px 14px;border-bottom:1px solid var(--line);font-size:14.5px}
.spec-table td:first-child{color:var(--muted);font-weight:600;width:42%}
.review{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}
.review .ava{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--teal-d));color:#fff;display:grid;place-items:center;font-weight:800;flex:none}
.review b{display:block}
.review .stars{color:var(--amber);font-size:13px;margin:3px 0}

/* ---------- Trust / feature band ---------- */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.fcard{text-align:center;padding:14px}
.fcard .ic{width:60px;height:60px;border-radius:16px;background:rgba(22,184,166,.12);color:var(--teal);display:grid;place-items:center;margin:0 auto 16px;font-size:26px}
.fcard h3{margin-bottom:8px;font-size:18px}
.fcard p{font-size:14.5px;color:var(--muted)}

/* ---------- About page ---------- */
.about-hero{background:linear-gradient(135deg,var(--ink),var(--ink-2));color:#fff;padding:80px 0}
.about-hero h1{color:#fff}
.stats-band{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}
.stat{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:22px;text-align:center}
.stat .n{font-size:32px;font-weight:800;color:#fff}
.stat .l{color:#9fb0c0;font-size:13.5px;margin-top:4px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:center}
.cert-grid{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:start}
.form-field{margin-bottom:18px}
.form-field label{display:block;font-weight:700;font-size:14px;margin-bottom:8px}
.form-field input,.form-field textarea,.form-field select{width:100%;padding:13px 15px;border:1.5px solid var(--line);border-radius:11px;font-family:inherit;font-size:15px;outline:none;transition:border .15s}
.form-field input:focus,.form-field textarea:focus{border-color:var(--teal)}
.form-field textarea{min-height:130px;resize:vertical}
.info-card{background:var(--bg-soft);border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.info-card .row{display:flex;gap:14px;margin-bottom:20px}
.info-card .ic{width:46px;height:46px;border-radius:12px;background:#fff;color:var(--teal-d);display:grid;place-items:center;flex:none;box-shadow:var(--shadow)}
.info-card h4{margin-bottom:3px;font-size:15px}
.info-card p{color:var(--muted);font-size:14.5px}

/* ---------- Breadcrumb ---------- */
.crumb{font-size:13.5px;color:var(--muted);margin-bottom:18px}
.crumb a:hover{color:var(--teal-d)}

/* ---------- Toast (cart) ---------- */
.toast{position:fixed;bottom:26px;left:50%;transform:translateX(-50%) translateY(120px);background:var(--ink);color:#fff;padding:14px 22px;border-radius:12px;font-weight:600;font-size:14.5px;box-shadow:var(--shadow-lg);z-index:200;transition:transform .3s;display:flex;align-items:center;gap:10px}
.toast.show{transform:translateX(-50%) translateY(0)}

/* ---------- Homepage compliance warning strip (under hero banner) ---------- */
.warn-strip{
  background:#FFE100;
  border-top:4px solid #E4002B;
  border-bottom:4px solid #E4002B;
  padding:26px 18px;
  text-align:center;
}
.warn-strip .warn-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  max-width:100%;
  background:#FFE100;
  border:4px solid #E4002B;
  border-radius:22px;
  padding:12px 40px;
}
.warn-strip .warn-icon{
  width:48px;height:48px;flex:none;display:block;
}
.warn-strip .warn-title{
  font-weight:900;
  color:#111;
  font-size:clamp(22px,4.2vw,44px);
  line-height:1.15;
  letter-spacing:.005em;
}
.warn-strip .warn-sub{
  margin-top:14px;
  font-weight:900;
  color:#E4002B;
  font-size:clamp(16px,2.6vw,26px);
  letter-spacing:.1em;
  text-transform:uppercase;
}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .hero-grid,.cta-box,.pdp,.two-col,.contact-grid,.shop-grid{grid-template-columns:1fr}
  .cat-grid,.prod-grid,.tgrid,.blogrid,.feature-grid{grid-template-columns:repeat(2,1fr)}
  .usp-grid{grid-template-columns:repeat(2,1fr)}
  .stats-band{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
  .shop-side{position:static}
}
@media(max-width:680px){
  .nav-links{display:none}
  .burger{display:flex}
  .cat-grid,.prod-grid,.tgrid,.blogrid,.feature-grid,.usp-grid,.stats-band,.foot-grid{grid-template-columns:1fr}
  .section{padding:54px 0}
  .cta-box{padding:32px}
  .warn-strip{padding:20px 14px}
  .warn-strip .warn-pill{width:100%;padding:12px 16px;gap:12px;border-radius:16px}
  .warn-strip .warn-icon{width:34px;height:34px}
  .warn-strip .warn-sub{letter-spacing:.05em}
}

/* ---------- Header search box ---------- */
.nav-search{display:flex;align-items:center;gap:4px;height:42px;padding:0 6px 0 16px;border-radius:21px;background:var(--bg-soft);border:1px solid transparent;transition:border-color .15s,background .15s}
.nav-search:focus-within{border-color:var(--teal);background:#fff}
.nav-search input{border:none;outline:none;background:transparent;width:160px;font:inherit;font-size:14px;color:var(--ink)}
.nav-search input::placeholder{color:#8a97a5}
.nav-search button{border:none;background:transparent;cursor:pointer;font-size:15px;width:32px;height:32px;border-radius:50%;display:grid;place-items:center;flex:none;color:var(--ink)}
.nav-search button:hover{background:#e9eff4}
@media(max-width:1024px){.nav-search input{width:110px}}
@media(max-width:680px){.nav-search input{width:80px;font-size:13px;padding:0}}

/* Mobile nav open state */
@media(max-width:680px){
  .nav-links.open{display:flex;position:absolute;top:70px;left:0;right:0;flex-direction:column;background:#fff;padding:18px 24px;gap:14px;box-shadow:0 12px 30px rgba(14,27,42,.12);z-index:60}
}


/* ---------- v1.0.7: kill click outlines on links/buttons (keep keyboard focus ring) ---------- */
a:focus,button:focus{outline:none}
a:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none;box-shadow:none;border-bottom-color:transparent}
a:focus-visible,button:focus-visible{outline:2px solid var(--teal,#00a6a6);outline-offset:2px}
.main-navigation ul.menu li a:focus,.main-navigation ul.nav-menu li a:focus{outline:none;border-bottom:0}


/* ===== v1.0.12: Delivery & Return page ===== */
.dr-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:8px}
.dr-step{background:#fff;border:1px solid var(--line,#e7ebf0);border-radius:14px;padding:20px 18px}
.dr-num{display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%;background:var(--teal,#00a6a6);color:#fff;font-weight:800;font-size:14px;margin-bottom:12px}
.dr-step h3{font-size:15px;line-height:1.4;margin-bottom:8px;color:var(--ink,#101f30)}
.dr-step p{font-size:13.5px;line-height:1.6}
.dr-table{border:1px solid var(--line,#e7ebf0);border-radius:12px;overflow:hidden;background:#fff;margin-bottom:22px}
.dr-tr{display:flex;justify-content:space-between;gap:16px;padding:14px 18px;border-bottom:1px solid var(--line,#e7ebf0);font-size:14px}
.dr-tr:last-child{border-bottom:0}
.dr-th{background:var(--bg-soft,#f5f8fa);font-weight:700;color:var(--ink,#101f30)}
.dr-tr > div:first-child{flex:1;min-width:0}
.dr-price{flex:none;font-weight:700;color:var(--ink,#101f30);white-space:nowrap}
.dr-price.free{color:var(--teal-d,#007c7c)}
.dr-list{margin:0;padding-left:20px;color:var(--muted,#6b7684);font-size:14.5px;line-height:1.9}
.dr-note{margin-top:18px;padding:14px 18px;border-radius:12px;background:#e6f5f5;color:var(--teal-d,#007c7c);font-size:14px;line-height:1.65}
.dr-faq{display:flex;flex-direction:column;gap:10px}
.dr-faq details{background:#fff;border:1px solid var(--line,#e7ebf0);border-radius:12px;padding:0 18px}
.dr-faq summary{cursor:pointer;padding:16px 0;font-weight:700;font-size:15px;color:var(--ink,#101f30);list-style:none}
.dr-faq summary::-webkit-details-marker{display:none}
.dr-faq summary::after{content:"+";float:right;color:var(--teal,#00a6a6);font-weight:700}
.dr-faq details[open] summary::after{content:"–"}
.dr-faq details p{padding:0 0 16px;margin:0;color:var(--muted,#6b7684);font-size:14px;line-height:1.7}
@media(max-width:900px){.dr-steps{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.dr-steps{grid-template-columns:1fr}.dr-tr{flex-direction:column;gap:6px}}


/* ===== v1.0.13: Delivery page two-column layout + "Need a Help?" card ===== */
.dr-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:30px;align-items:start;max-width:1200px;margin:0 auto;padding:0 22px}
.dr-layout .dr-main{min-width:0}
.dr-layout .dr-main > .section{padding-left:0;padding-right:0}
.dr-layout .dr-main .container{padding:0}
.pw-help-card{position:sticky;top:90px;background:#fff;border:1px solid var(--line,#e7ebf0);border-radius:16px;padding:22px 20px 20px;box-shadow:0 6px 24px rgba(14,27,42,.06)}
.pw-help-card h3{font-size:19px;font-weight:800;color:var(--ink,#101f30);margin-bottom:16px}
.pw-help-tip{display:flex;align-items:center;gap:12px;background:#e3f3fb;border-radius:12px;padding:14px 14px;margin-bottom:18px}
.pw-help-tip svg{flex:none}
.pw-help-tip p{margin:0;font-size:14px;line-height:1.5;color:#2b6a8a}
.pw-help-qr{display:block;width:220px;max-width:100%;margin:0 auto 18px;padding:10px;background:#fff;border:1px solid #e7ebf0;border-radius:14px;box-shadow:0 4px 16px rgba(14,27,42,.08);transition:transform .15s ease}
.pw-help-qr:hover{transform:translateY(-2px)}
.pw-help-qr img{display:block;width:100%;height:auto;border-radius:6px}
.pw-help-mail{display:flex;align-items:center;gap:10px;font-size:14.5px;color:var(--ink,#101f30);font-weight:600}
.pw-mail-ic{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#f5a623;flex:none}
.pw-help-mail a{color:var(--ink,#101f30);text-decoration:none}
.pw-help-mail a:hover{color:var(--teal,#00a6a6)}
@media(max-width:1024px){.dr-layout{grid-template-columns:1fr}.pw-help-card{position:static;max-width:420px;margin:0 auto}}


/* ===== v1.0.21: keep only the Storefront breadcrumb (hide the hard-coded one) ===== */
.crumb{display:none!important}


/* ===== v1.0.25: product card image fills the tile (cover, no inset) ===== */
.product .thumb{padding:0}
.product .thumb img{width:100%;height:100%;object-fit:cover;filter:none;border-radius:0}
.pw-shop ul.products.pw-v-list li.product .thumb img{height:auto}


/* ===== v1.0.27: circular brand logo image (contains its own text) ===== */
.logo-img{height:52px;width:auto;display:block}
.footer .logo-img{height:56px}
