/* ============================================================
   STIMULUS LABS — Main Stylesheet
   v1.0.0
   ============================================================ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --w:       #FFFFFF;
  --warm:    #F9F7F4;
  --warm2:   #F2EFE9;
  --warm3:   #E8E4DC;
  --ink:     #111111;
  --mid:     #5A5A56;
  --faint:   #A0A09A;
  --ghost:   #D0CEC8;
  --gold:    #A8832A;
  --gold2:   #C9A84C;
  --border:  #E8E5DF;
  --border2: #D4D0C8;
  --green:      #2D6A4F;
  --green-pale: #E8F4EE;
}

html { scroll-behavior: smooth; }

body {
  background: var(--w);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

/* ── SCROLL PROGRESS ── */
#sl-prog {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  width: 0%; z-index: 8888;
  transition: width .06s linear;
}

/* ── AGE GATE ── */
#sl-age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
#sl-age-gate .ag-panel {
  background: #fff; max-width: 480px; width: 90%;
  padding: 52px 48px; text-align: center; position: relative;
}
.ag-mark   { margin: 0 auto 24px; display: block; }
.ag-brand  { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.ag-title  { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.ag-line   { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 20px; }
.ag-body   { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 32px; font-weight: 300; }
.ag-body b { color: var(--ink); font-weight: 500; }
.ag-confirm { width: 100%; background: var(--ink); color: #fff; border: none; padding: 16px; font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; margin-bottom: 12px; transition: background .15s; }
.ag-confirm:hover { background: var(--gold); }
.ag-deny  { display: block; font-size: 11px; color: var(--faint); text-decoration: none; cursor: pointer; letter-spacing: .04em; transition: color .15s; }
.ag-deny:hover { color: var(--ink); }
.ag-note  { font-size: 10px; color: var(--ghost); margin-top: 24px; line-height: 1.65; border-top: 1px solid var(--border); padding-top: 16px; text-align: left; }
#sl-age-gate.hidden { display: none; }

/* ── ANNOUNCE BAR ── */
.sl-announce {
  background: var(--ink); height: 38px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.ann-item {
  position: absolute;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .14em; color: rgba(255,255,255,.5);
  text-transform: uppercase;
  opacity: 0; transform: translateY(100%);
  transition: opacity .5s, transform .5s;
  white-space: nowrap;
}
.ann-item.active { opacity: 1; transform: none; }
.ann-item.out    { opacity: 0; transform: translateY(-100%); }
.ann-item b      { color: var(--gold2); }

/* ── NAVIGATION ── */
.sl-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 48px; height: 64px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; text-decoration: none; }
.nav-wm .n1 { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; letter-spacing: .2em; color: var(--ink); display: block; line-height: 1; }
.nav-wm .n2 { font-family: 'JetBrains Mono', monospace; font-size: 7.5px; letter-spacing: .38em; color: var(--gold); display: block; margin-top: 3px; }
.nav-links { display: flex; gap: 28px; justify-content: center; list-style: none; }
.nav-links a { font-size: 14px; color: var(--faint); text-decoration: none; letter-spacing: .07em;transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-right a { font-size: 14px; color: var(--faint); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.nav-right a:hover { color: var(--ink); }
.nav-cart-btn {
  background: var(--gold) !important; color: #000 !important;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 20px; cursor: pointer; transition: background .15s; border: none;line-height: 0;border-radius: 6px;
}
.nav-cart-btn:hover { background: var(--gold); }
.nav-cart-btn .cart-count{ border: 1px solid #fff; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .25s; }

/* ── HERO ── */
.sl-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 102px);
}
.hero-left { position: relative; overflow: hidden; }
.hero-left img { width: 100%; height: 100%; object-fit: cover; object-position: right; 
/* 	filter: grayscale(45%) brightness(.75);  */
	display: block; }
.hero-left-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,17,11,.25) 0%, transparent 60%); }
.hero-right {
  padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--w);
/*   border-left: 1px solid var(--border); */
  position: relative; overflow: hidden;
}
.hero-right-mark { position: absolute; right: -80px; bottom: -60px; opacity: .035; pointer-events: none; }
.hr-eye { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; display:none; }
.hr-eye-line { width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hr-h1 { font-family: 'Cinzel', serif; font-size: 62px; font-weight: 600; line-height: .97; letter-spacing: -.025em; color: var(--ink); margin-bottom: 20px; }
.hr-h1 em { font-style: italic; font-weight: 400; display: block; color: var(--gold); }
.hr-sub { font-size: 14px; color: var(--mid); line-height: 1.85; max-width: 400px; margin-bottom: 32px; font-weight: 300; }
.hr-cta-group { display: flex; gap: 10px; margin-bottom: 32px; }
.btn-primary { background: var(--ink); color: #fff;  font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; border: none; transition: background .15s; display: inline-block; text-decoration: none; }
.btn-primary:hover { background: var(--gold); }
.btn-secondary { border: 1px solid var(--border2); color: var(--ink); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; padding: 14px 28px; cursor: pointer; background: transparent; transition: all .2s; text-decoration: none; display: inline-block; font-weight: 500; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hr-trust { display: flex; gap: 0; border: 1px solid var(--border); display:none; }
.ht { padding: 11px 16px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--mid); }
.ht:last-child { border-right: none; }
.ht-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--warm2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
	display:flex; gap:5rem; justify-content:center;

}
.ts { padding: 20px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.ts:last-child { border-right: none; }
.ts-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--w); border: 1px solid var(--border); color: var(--gold); }
.ts-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ts-text { font-size: 12px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.ts-sub { font-size: 10px; color: var(--faint); display: block; margin-top: 2px; font-weight: 300; }

/* ── SOCIAL PROOF STRIP ── */
.social-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--warm);
}
.sp { padding: 24px; border-right: 1px solid var(--border); text-align: center; }
.sp:last-child { border-right: none; }
.sp-num { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.sp-num .g { color: var(--gold); }
.sp-lbl { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .14em; color: var(--faint); text-transform: uppercase; }

/* ── SECTION COMMON ── */
.sl-section { padding: 80px 48px; }
.sec-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-family: 'Cinzel', serif; font-size: 42px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; color: var(--ink); }
.sec-title em { font-style: italic; font-weight: 400; }

/* ── PRODUCTS ── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.pc { background: var(--w); border: 1px solid var(--border); cursor: pointer; transition: border-color .2s, box-shadow .2s; display: flex; flex-direction: column; }
.pc:hover { border-color: var(--border2); box-shadow: 0 4px 24px rgba(17,17,11,.06); }
.pc-head { padding: 20px 20px 0; }
.pc-brand-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pc-brand-mark { flex-shrink: 0; }
.pc-brand-name { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 400; color: var(--ink); letter-spacing: .02em; }
.pc-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.pc-stars-val { font-size: 11px; color: #F59E0B; letter-spacing: 2px; }
.pc-stars-count { font-size: 11px; color: var(--faint); font-weight: 300; }
.pc-cat { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.pc-name { font-family: 'Cinzel', serif; font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pc-purity-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--green-pale); border: 1px solid rgba(45,106,79,.15); padding: 4px 10px; margin-bottom: 0; }
.pc-purity-badge span { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--green); font-weight: 500; letter-spacing: .06em; }
.pc-vial-zone { height: 250px; display: flex; align-items: center; justify-content: center; background: #fff; margin: 0px 0 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pc-ruo-bar { padding: 7px 20px; background: var(--warm2); border-bottom: 1px solid var(--border); }
.pc-ruo-text { font-size: 9.5px; color: var(--ghost); letter-spacing: .03em; }
.pc-pricing { padding: 14px 20px 0; margin-top: auto; }
.pc-stock { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #B45309; letter-spacing: .06em; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.pc-stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #B45309; flex-shrink: 0; }
.pc-price-row { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 4px; justify-content: space-between; }
.pc-price-row a{ text-decoration:none; }
.pc-price { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 600; color: var(--ink); }
.pc-per { font-size: 11px; color: var(--faint); font-weight: 300; }
.pc-coa { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; cursor: pointer; margin-bottom: 14px; display: inline-block; text-decoration: none; }
.pc-add,
.wc-forward{ width: 100%; background: var(--ink); color: #fff; border: none; padding: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .15s; text-decoration:none; text-align:center; }
.pc-add:hover { background: var(--gold); }
.pc-price span.fm{ display:block; font-size: 13px; color: #999; }

.viewcoaBtn{ margin-top:1rem; text-align:center; }
.csp-wrap{ margin-top:1rem; background:transparent; }
.csp-table thead th{ background: #000000; color: #ffffff; }
.csp-table tr.is-active td{ background: var(--gold); color: #fff; }
.csp-table td:last-child{ color:#000; }
.csp-summary{ background: #f1f1f1; }
.csp-btn-outline{ border-color: var(--gold); color:#000; }
.csp-btn-primary{ background: var(--gold); border: 1px solid var(--gold); }
.csp-pill.is-active{ background: var(--ink); border-color: var(--ink); }
.csp-label{ color: #000; }


.btnAlign{ display: flex; gap: 10px; margin: 0px 0 20px; align-items: center; }
/* .btnAlign a+a{ flex-shrink:0; } */
.woocommerce .quantity .qty{ height: 35px; border: 1px solid #000; }
.woocommerce div.product p.stock{ margin: 10px 0; }

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product{ width:100%; padding:10px 10px; }

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{ display:none; }
/* .nav-cart-btn{ display:none !important; } */
.fc ul{ list-style:none; }
.nav-cart-btn{ position:relative; }
.nav-cart-btn .cart-count{ 
position: absolute;
    top: -6px;
    right: -6px;
    border-radius: 100%;
    font-size: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
}

/* ── GUARANTEE ── */
.sl-guarantee {
  background: var(--ink); padding: 56px 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 64px;
  align-items: center; border-top: 1px solid rgba(255,255,255,.06);
}
.guarantee-badge { flex-shrink: 0; text-align: center; }
.guarantee-shield {
  width: 100px; height: 100px;
  border: 2px solid rgba(201,168,76,.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; position: relative;
}
.guarantee-shield::before { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(201,168,76,.15); }
.gs-top  { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: .14em; color: var(--gold2); text-transform: uppercase; }
.gs-main { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.gs-sub  { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: .1em; color: var(--gold2); text-transform: uppercase; }
.guarantee-text .g-title { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 12px; letter-spacing: -.01em; }
.guarantee-text .g-body  { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.85; font-weight: 300; max-width: 640px; }
.g-pills { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.g-pill  { border: 1px solid rgba(255,255,255,.1); padding: 7px 14px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; }

/* ── COA SECTION ── */
.coa-search-wrap { max-width: 480px; margin: 28px auto 0; display: flex; }
.coa-input {
  flex: 1; border: 1px solid var(--border2); border-right: none;
  padding: 14px 16px; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink); background: #fff; outline: none; letter-spacing: .06em;
}
.coa-btn {
  background: var(--ink); color: #fff; border: none;
  padding: 14px 20px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer;
}
.coa-links { display: flex; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.coa-link { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gold); cursor: pointer; letter-spacing: .06em; background: none; border: none; }


/* ── DEDICATED COA / LAB RESULTS PAGE ── */
.coa-results-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
@media (max-width: 900px) { .coa-results-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .coa-results-grid { grid-template-columns: 1fr; } }
.coa-card { border: 1px solid var(--border); padding: 24px; background: var(--w); transition: border-color .2s, box-shadow .2s; }
.coa-card:hover { border-color: var(--border2); box-shadow: 0 4px 24px rgba(17,17,11,.06); }
.coa-card-name { font-family: 'Cinzel', serif; font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.coa-card-batch { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--faint); letter-spacing: .06em; margin-bottom: 14px; }
.coa-card-link { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: .06em; text-decoration: none; }
.coa-card-link:hover { color: var(--gold2); }
.coa-card-link--pending { color: var(--ghost); cursor: default; }
.coa-no-results { grid-column: 1 / -1; text-align: center; color: var(--mid); font-size: 14px; padding: 40px 0; }


/* ── REVIEWS ── */
.sl-reviews { background: var(--w); padding: 80px 48px; border-top: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.review { border: 1px solid var(--border); padding: 28px; transition: border-color .2s; }
.review:hover { border-color: var(--border2); }
.rv-stars { font-size: 12px; color: #F59E0B; letter-spacing: 3px; margin-bottom: 14px; }
.rv-body  { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 18px; }
.rv-meta  { display: flex; justify-content: space-between; align-items: flex-end; }
.rv-name  { font-size: 13px; font-weight: 500; color: var(--ink); }
.rv-role  { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.rv-date  { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--ghost); letter-spacing: .06em; }
.rv-verified { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--green); letter-spacing: .06em; margin-top: 3px; }

/* ── FAQ ── */
.sl-faq { background: #0f100f; border-top: 1px solid var(--border); padding: 80px 48px; position:relative; overflow:hidden; }
/* .sl-faq .sec-label{ color:#fff; } */
.sl-faq .sec-title{ color:#fff; }
.sl-faq .faq-q-text{ color:#fff; }
.sl-faq .faq-a{ color:#fff; }
.sl-faq .btn-primary{ background:var(--gold); border:1px solid var(--gold); }
.faq-wrap  { max-width: 760px; margin: 48px auto 0; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; gap: 20px; }
.faq-q-text { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.faq-icon  { font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .3s; width: 24px; text-align: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.85; overflow: hidden; max-height: 0; transition: max-height .4s ease, padding-bottom .3s; font-weight: 300; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

.faq-support h3,
.faq-support p{ color:#fff; }
.faq-support .sl-btn{ color:#fff; }
.sl-faq .btn-primary:hover{  background: var(--ink); color: var(--gold); }

/* ── EMAIL CTA ── */
.sl-email-cta {
  background: #0f100f; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; overflow: hidden;
}
.es-bg { position: absolute; right: -80px; bottom: -60px; opacity: .05; pointer-events: none; }
.es-label    { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; color: var(--gold2); text-transform: uppercase; margin-bottom: 12px; }
.es-title    { font-family: 'Cinzel', serif; font-size: 42px; font-weight: 600; color: #fff; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 12px; }
.es-title em { font-style: italic; font-weight: 400; color: var(--gold2); }
.es-form-lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.3); text-transform: uppercase; display: block; margin-bottom: 11px; }
.es-row  { display: flex; }
.es-inp  { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-right: none; padding: 14px 18px; font-size: 13px; color: #fff; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .2s; }
.es-inp:focus { border-color: rgba(255,255,255,.4); }
.es-inp::placeholder { color: rgba(255,255,255,.2); }
.es-sub-btn  { background: #fff; color: var(--ink); border: none; padding: 14px 22px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .15s; white-space: nowrap; }
.es-sub-btn:hover { background: var(--gold2); }
.es-note  { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 11px; }
.es-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.es-perk  { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); }
.es-perk-check { width: 18px; height: 18px; border: 1px solid rgba(201,168,76,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--gold2); }

/* ── FOOTER ── */
.sl-footer { background: var(--warm); border-top: 1px solid var(--border); padding: 52px 48px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo-row  { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.footer-desc      {font-size: 14px;color: var(--mid);line-height: 1.85;max-width: 210px;font-weight: 300;}
.footer-payments  { margin-top: 20px; display:none; }
.fp-label         { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .14em; color: var(--faint); text-transform: uppercase; margin-bottom: 8px; }
.fp-methods       { display: flex; gap: 6px; flex-wrap: wrap; }
.fp-method        { border: 1px solid var(--border); padding: 4px 10px; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--mid); letter-spacing: .06em; text-transform: uppercase; }
.fc h4  { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.fc a   {display: inline-block;font-size: 14px;color: var(--mid);text-decoration: none;margin-bottom: 8px;font-weight: 300;transition: color .15s;}
.fc a:hover { color: var(--ink); }
.footer-bottom    { border-top: 1px solid var(--border); padding-top: 20px; }
.footer-disc      { font-size: 12px; color: var(--black); line-height: 1.8; max-width: 760px; margin-bottom: 14px; margin: auto; }
.footer-copy      { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--black); letter-spacing: .08em; }

/* ── SCROLL REVEALS ── */
.reveal       { opacity: 0; transform: translateY(20px);  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.in    { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-20px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal-left.in  { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(20px);  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }
.mt-5{ margin-top:1rem; }

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .06em;
  color: var(--mid); border-color: var(--border);
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--ink) !important; color: #fff !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 0 !important; padding: 12px 24px !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold) !important;
}
.woocommerce .price { font-family: 'Cinzel', serif; color: var(--ink); }
.woocommerce .star-rating span::before { color: #F59E0B; }
.woocommerce .product_title { font-family: 'Cinzel', serif; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.woocommerce form .form-row .input-text {
  border: 1px solid var(--border); border-radius: 0;
  font-family: 'DM Sans', sans-serif; color: var(--ink);
}
.woocommerce .cart_totals, .woocommerce .checkout { font-family: 'DM Sans', sans-serif; }

.woocommerce ul.products{ grid-template-columns: repeat(4, 1fr) !important; }
.woocommerce .related.products h2{ margin-bottom:2rem; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{ width:100%; }
.woocommerce .related.products ul.products li.product{ padding: 15px 16px; }
.woocommerce .related.products ul.products li.product a.add_to_cart_button{ margin:0 16px 10px; }
.woocommerce .woocommerce-ordering select{ padding:10px 10px; }

#qv-popup{
    position:fixed;
    inset:0;
    display:none;
    z-index:99999;
}

#qv-popup.active{
    display:block;
}

.qv-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
}

.qv-modal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:900px;
    max-width:95%;
    background:#fff;
    padding:25px;
    border-radius:12px;
    max-height:90vh;
    overflow:auto;
}

.qv-wrapper{
    display:flex;
    gap:30px;
}
.qv-left{ flex-shrink: 0; }

.qv-left img{
    width:100%;
    height:auto;
	max-width: 300px;
}

.qv-related{
    margin-top:30px;
}

.qv-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}
.qv-desc{ margin-bottom:1rem; font-size: 13px; }
.qv-modal .product.qv-right { padding: 20px; }
.productdesc{ margin-bottom:1rem; }
.woocommerce div.product form.cart .button{ border:none; }

.instant-buy{ display:none; }
.pc-purity-badge{ display:none; }

.menu-item-has-children {
  position: relative;
}


.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 999;
}


.menu-item-has-children:hover .sub-menu {
  display: block;
}


.menu-item-has-children .sub-menu li {
  width: 100%;
}

.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.menu-item-has-children .sub-menu li a:hover {
  background: var(--gold);
  color:#fff;
}


.menu-item-has-children::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 100%;
  bottom: -12px;
  left: 0;
}



.sl-free-shipping-text{
	margin-top:12px;
	padding:12px 14px;
	font-size:14px;
	line-height:1.5;
	background:#f5f5f5;
	border-left:4px solid #00b894;
	border-radius:6px;
}

.sl-free-shipping-text strong{
	color:#00b894;
}

.sl-free-shipping-text.success{
	background:#ecfff7;
	color:#00b894;
	font-weight:600;
}


.wp-block-heading{ margin:1rem 0; }
h2.wp-block-heading{ color:#000; }
.wp-block-list{ padding-left:20px; }

/* =========================
   SHOP FILTERS
========================= */

.sl-shop-toolbar{
    margin:0 0 40px;
}

.sl-toolbar-top{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.sl-toolbar-top h2{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.sl-toolbar-right{
    display:flex;
    gap:15px;
    align-items:center;
}

.sl-toolbar-right .woocommerce-ordering{ display:block; }
.woocommerce-ordering{ display:none; }

#sl-product-search{
    width:280px;
    height:48px;
    border:1px solid #ddd;
    border-radius:30px;
    padding:0 20px;
    font-size:15px;
}

.sl-category-pills{
    display:flex;
    gap:4px;
    overflow-x:auto;
    padding-bottom:10px;
    scrollbar-width:none;
	flex-flow:wrap;
}

.sl-category-pills::-webkit-scrollbar{
    display:none;
}

.sl-category-pills a{
    text-decoration:none;
    white-space:nowrap;
    padding:12px 20px;
    border-radius:999px;
    border:1px solid #ddd;
    color:#111;
    font-weight:600;
    transition:.25s;
	font-size: 14px;
}

.sl-category-pills a:hover,
.sl-category-pills a.active{
    background:#111;
    color:#fff;
    border-color:#111;
}

.sl-search{
    position:relative;
}

.sl-search svg{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
}

#sl-product-search{
    padding-left:48px;
}

.footer-help{
    text-align:right;
}

.footer-help .help-text{
    color:#8f97a6;
    font-size:15px;
    line-height:1.5;
    margin-bottom:18px;
    max-width:260px;
    margin-left:auto;
}

.footer-help .help-phone,
.footer-help .help-email{
    display:block;
    color:var(--gold2);
    font-weight:700;
    font-size:18px;
    text-decoration:none;
    margin-bottom:8px;
    transition:.3s;
}

.footer-help .help-phone:hover,
.footer-help .help-email:hover{
    opacity:.8;
}

.ag-field{
    margin:25px 0;
}

.ag-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
}

.ag-field label span{
    color:#e53935;
}

.ag-select{
    width:100%;
    height:50px;
    padding:0 16px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    font-size:16px;
    color:#444;
    outline:none;
}

.ag-select:focus{
    border-color:#A8832A;
}

.sl-faq .hr-cta-group{ margin: 32px auto; justify-content: center; }


.promiseHeading {
    text-align: center;
    margin-bottom: 2rem;
}

.promiseHeading span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    color: #a8832a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.promiseHeading h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.05;
    color: var(--ink);
    margin: 10px 0;
}

.promiseHeading p {
    color: var(--ink);
}

.promiseSec .container {
    max-width: 1300px;
    margin: auto;
}

.promiseSec .row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.promiseBox {
    background: #f9f9f9;
    border-radius: 30px;
    padding: 2rem 1rem;
    max-width: 400px;
    min-height: 259px;
}

.promiseBox h3 {
    text-transform: capitalize;
}

.promiseBox span {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin: 10px 0;
}

.promiseBox p {
    margin: 0;
}

.promiseBox figure img {
    max-height: 30px;
}

.promiseBox figure {
    background: #efefef;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.promiseSec {
    padding: 3rem 0 6rem 0;
}

.sl-email-cta{ text-align: center; display:block; }
.sl-email-cta .reveal-left img{ margin:auto; max-height: 700px; }
.reveal-right{ text-align: left; max-width: 800px; margin: 1rem auto; }
.sl-faq{  overflow:initial; }
.es-bg{ z-index:1; }
.product-ribbon{ position: absolute; top: 10px; left: 10px; background: var(--gold); padding: 5px 15px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.sold-out{ background: var(--gold); color: #000; }

.woocommerce-account .woocommerce{ display: flex; flex-flow:wrap; }
.woocommerce-account .post-14 .reveal.in{ max-width:100% !important; }
.woocommerce-account .woocommerce{ max-width:100%; }
#sl-age-gate{ z-index:9999999; }

.sl-section .product-grid .pc-stock{ display:none; }
.woocommerce-product-details__short-description p{ font-size:16px; margin-bottom:10px; }
.woocommerce-product-details__short-description p strong{ font-weight:700; }
a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart, a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout, a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue{ background-color: var(--gold) !important; }
a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:hover, a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover, a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue:hover{ color:#fff !important; border-color: var(--gold) !important;  }
#billing_phone_field label .optional {
    display: none !important;
}

#billing_phone_field label::after {
    content: " *";
	color: var(--wc-red);
    font-weight: 700;
    border: 0 !important;
    text-decoration: none;
}

#billing_phone_field label abbr.required {
    display: inline !important;
}

.woocommerce span.onsale{ line-height:normal; display: flex; align-items: center; justify-content: center; }

/* =========================================
Stimulus Laboratories - CF7 Form
========================================= */

.contact-form {
width: 100%;
max-width: 900px;
margin: 0 auto;
font-family: inherit;
}

.contact-form .form-row {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
margin-bottom: 22px;
}

.contact-form .form-field {
margin-bottom: 22px;
}

.contact-form label {
display: block;
margin-bottom: 9px;
font-size: 14px;
font-weight: 600;
line-height: 1.5;
letter-spacing: 0.02em;
color: #171717;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
width: 100%;
box-sizing: border-box;
border: 1px solid #d8d8d8;
border-radius: 4px;
background: #ffffff;
color: #171717;
padding: 14px 16px;
font-family: inherit;
font-size: 15px;
line-height: 1.5;
outline: none;
transition:
border-color 0.25s ease,
box-shadow 0.25s ease,
background-color 0.25s ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
min-height: 52px;
}

.contact-form textarea {
min-height: 160px;
resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #999999;
opacity: 1;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
border-color: #171717;
background: #ffffff;
box-shadow: 0 0 0 2px rgba(23, 23, 23, 0.06);
}

/* Acceptance checkbox */

.contact-form .wpcf7-acceptance {
display: block;
}

.contact-form .wpcf7-acceptance label {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 0;
font-size: 13px;
font-weight: 400;
line-height: 1.6;
color: #666666;
cursor: pointer;
}

.contact-form .wpcf7-acceptance input[type="checkbox"] {
width: 17px;
height: 17px;
min-width: 17px;
margin: 2px 0 0;
accent-color: #171717;
cursor: pointer;
}

.contact-form .wpcf7-acceptance a {
color: #171717;
text-decoration: underline;
text-underline-offset: 3px;
}

/* Submit button */

.contact-form .form-submit {
margin-top: 28px;
}

.contact-form input[type="submit"] {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 170px;
min-height: 52px;
padding: 14px 28px;
border: 1px solid #171717;
border-radius: 4px;
background: #171717;
color: #ffffff;
font-family: inherit;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
cursor: pointer;
transition:
background-color 0.25s ease,
color 0.25s ease,
border-color 0.25s ease,
transform 0.25s ease;
}

.contact-form input[type="submit"]:hover {
background: #ffffff;
color: #171717;
border-color: #171717;
transform: translateY(-1px);
}

/* CF7 validation */

.contact-form .wpcf7-not-valid {
border-color: #c62828 !important;
}

.contact-form .wpcf7-not-valid-tip {
margin-top: 6px;
font-size: 12px;
color: #c62828;
}

.contact-form .wpcf7-response-output {
margin: 22px 0 0 !important;
padding: 12px 15px !important;
border-radius: 4px;
font-size: 13px;
line-height: 1.5;
}

/* Remove default CF7 spacing */

.contact-form .wpcf7-form-control-wrap {
display: block;
}

.contact-form p {
margin: 0;
}

.yith-wcwl-share{ display:none !important; }
.wishlist-title-with-form h2{ color:#000; }

.wishlist-title a.show-title-form {
    visibility: visible !important;
}

.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3{ color:#000; }
.lgd-acc-hero .lgd-acc-hero__title{ color:#fff; }
.woocommerce-MyAccount-content > p:has(a[href*="/my-account/orders/"]) {
    display: none !important;
}
.orderby option[value="menu_order"],
.orderby option[value="popularity"],
.orderby option[value="rating"],
.orderby option[value="date"] {
    display: none !important;
}




/* =========================================
   CSP PREMIUM PRODUCT WIDGET
   ========================================= */

.csp-wrap {
    width: 100%;
    box-sizing: border-box;
}

/* Groups */

.csp-wrap .csp-group {
    margin-bottom: 24px;
}

.csp-wrap .csp-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111;
}

/* =========================================
   SIZE / OPTION
   ========================================= */

.csp-wrap .csp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.csp-wrap .csp-pill {
    min-width: 74px;
    min-height: 40px;
    padding: 9px 18px;
    border: 1px solid #111;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.csp-wrap .csp-pill:hover,
.csp-wrap .csp-pill.is-active {
    background: #b18a28;
    border-color: #b18a28;
    color: #fff;
}

/* =========================================
   QUANTITY
   ========================================= */

.csp-wrap .csp-qty {
    display: flex;
    align-items: center;
    width: fit-content;
    min-width: 108px;
    height: 44px;
    overflow: hidden;
    border: 1px solid #d8dfd4;
    border-radius: 10px;
    background: #fff;
}

.csp-wrap .csp-qty-btn {
    width: 38px;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.csp-wrap .csp-qty-btn:hover {
    background: #f7f5ef;
}

.csp-wrap .csp-qty-val {
    min-width: 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* =========================================
   STOCK CARD
   ========================================= */

.csp-wrap .csp-stock-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 86px;
    margin: 22px 0 18px;
    padding: 14px 20px;
    box-sizing: border-box;
    border: 1px solid #eee7d8;
    border-radius: 14px;
    background: linear-gradient(135deg, #fffdf8 0%, #faf8f2 100%);
}

.csp-wrap .csp-stock-item {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.csp-wrap .csp-stock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-right: 14px;
    border: 1px solid #e7d9b8;
    border-radius: 50%;
    background: #fff;
}

.csp-wrap .csp-stock-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #b18a28;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.csp-wrap .csp-stock-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.csp-wrap .csp-stock-title {
    display: block;
    color: #222;
    font-size: 13px;
    line-height: 1.3;
}

.csp-wrap .csp-stock-number {
    display: block;
    color: #111;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
}

.csp-wrap .csp-stock-divider {
    width: 1px;
    height: 52px;
    margin: 0 24px;
    background: #ddd8cc;
}

/* =========================================
   TIER TABLE
   ========================================= */

.csp-wrap .csp-table {
    width: 100%;
    margin: 8px 0 20px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 0;
    font-size: 14px;
}

.csp-wrap .csp-table thead th {
    padding: 12px 16px;
    border: 0;
    background: #080808;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.csp-wrap .csp-table thead th:first-child {
    border-radius: 10px 0 0 0;
    text-align: left;
}

.csp-wrap .csp-table thead th:last-child {
    border-radius: 0 10px 0 0;
    text-align: right;
}

.csp-wrap .csp-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e6de;
    background: #fff;
    color: #111;
    vertical-align: middle;
}

.csp-wrap .csp-table tbody td:nth-child(2) {
    font-weight: 700;
}

.csp-wrap .csp-table tbody td:last-child {
    text-align: right;
}

.csp-wrap .csp-table tbody tr.is-active td {
    background: #b18a28;
    color: #fff;
    font-weight: 700;
}

.csp-wrap .csp-table tbody tr.is-active td:first-child {
    border-radius: 0 0 0 12px;
}

.csp-wrap .csp-table tbody tr.is-active td:last-child {
    border-radius: 0 0 12px 0;
}

/* =========================================
   SUMMARY
   ========================================= */

.csp-wrap .csp-summary {
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #f7f7f7;
}

.csp-wrap .csp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #333;
    font-size: 14px;
}

.csp-wrap .csp-total {
    font-size: 16px;
    font-weight: 700;
}

.csp-wrap .csp-hr {
    height: 1px;
    margin: 14px 0;
    border: 0;
    background: #ddd;
}

/* =========================================
   MESSAGES
   ========================================= */

.csp-wrap .csp-msg {
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.csp-wrap .csp-msg.error {
    background: #fff1f1;
    color: #a40000;
}

.csp-wrap .csp-msg.success {
    background: #f0f8f0;
    color: #236b2c;
}

/* =========================================
   ACTION BUTTONS
   ========================================= */

.csp-wrap .csp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.csp-wrap .csp-btn {
    min-height: 52px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}

.csp-wrap .csp-btn-primary {
    border: 1px solid #111;
    background: #111;
    color: #fff;
}

.csp-wrap .csp-btn-primary:hover {
    background: #b18a28;
    border-color: #b18a28;
}

.csp-wrap .csp-btn-ghost {
    border: 1px solid #222;
    background: #fff;
    color: #222;
}

.csp-wrap .csp-btn-ghost:hover {
    background: #f7f7f7;
}

.csp-wrap .viewcoaBtn {
    margin-top: 16px;
    text-align: center;
}

.csp-wrap .viewcoaBtn a {
    color: #b18a28;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.csp-wrap .viewcoaBtn a:hover {
    text-decoration: underline;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .csp-wrap .csp-stock-card {
        padding: 12px;
    }

    .csp-wrap .csp-stock-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        margin-right: 9px;
        font-size: 18px;
    }

    .csp-wrap .csp-stock-divider {
        margin: 0 10px;
        height: 45px;
    }

    .csp-wrap .csp-stock-title {
        font-size: 11px;
    }

    .csp-wrap .csp-stock-number {
        font-size: 21px;
    }

    .csp-wrap .csp-table thead th,
    .csp-wrap .csp-table tbody td {
        padding: 12px 10px;
    }

    .csp-wrap .csp-actions {
        grid-template-columns: 1fr;
    }
}





/* =========================================
Mobile
========================================= */

@media (max-width: 767px) {

.contact-form {
    max-width: 100%;
}

.contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

.contact-form .form-field {
    margin-bottom: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    min-height: 50px;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form input[type="submit"] {
    width: 100%;
}

}



@media(max-width:991px){

    .footer-help{
        text-align:left;
        margin-top:40px;
    }

    .footer-help .help-text{
        margin-left:0;
    }

    .footer-help .help-phone,
    .footer-help .help-email{
        font-size:22px;
    }

}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid  { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .trust-strip   { grid-template-columns: repeat(3,1fr); }
  .sl-hero       { grid-template-columns: 1fr; min-height: auto; }
  .hero-left     { height: 50vw; }
  .hero-right    { padding: 30px 20px; }
  .hr-h1         { font-size: 48px; }
  .sl-guarantee  { grid-template-columns: 1fr; gap: 32px; }
  .sl-email-cta  { grid-template-columns: 1fr; gap: 40px; }
	.promiseSec .row{ flex-flow:wrap; }
}

@media (max-width: 768px) {
  .sl-nav { padding: 15px 20px; grid-template-columns: auto; height: initial; gap: 10px; text-align: center; }
  .nav-logo{ justify-content: center; }
  .nav-right { justify-content: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 20px; gap: 16px; z-index: 300; }
  .sl-section, .sl-reviews, .sl-faq, .sl-guarantee, .sl-email-cta, .sl-footer { padding: 48px 20px; }
  .product-grid  { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .social-strip  { grid-template-columns: repeat(2,1fr); }
  .trust-strip   { grid-template-columns: repeat(3,1fr); }
  .hr-h1         { font-size: 36px; }
  .sec-title     { font-size: 25px !important; }
  .es-title      { font-size: 30px; }
  .btn-primary { padding: 10px 10px; }	
  .btn-secondary { padding: 10px 10px; }
  .hr-cta-group{ margin-bottom:0; }	
	.pc-price-row{ flex-flow: wrap; }
	.pc-price{ font-size: 18px; }
	.sl-section > div a{ flex-shrink:0; font-size: 11px; }
	.sec-title { font-size: 25px; }
	.es-row{ flex-flow: wrap; }
	.es-inp{ border-right: 1px solid rgba(255, 255, 255, .12); margin-bottom:10px; }
	.ann-item{ font-size: 5px; }
	.ts{ padding: 5px; gap: 5px; flex-flow: column; text-align: center; }
	.ts-icon{ width: 22px; height: 22px; }
	.ts-icon svg{ width: 15px; height: 15px; }
	#sl-age-gate .ag-panel{ padding: 20px 15px; }
	.ag-mark{ margin: 0 auto 15px; }
	.ag-line{ margin: 0 auto 10px; }
	.ag-body{ margin-bottom: 10px; }
	.ag-note{ margin-top: 10px; }
	.ag-title{ font-size: 16px; }
	.ag-confirm{ padding: 10px; font-size: 10px; }
	.sp{ padding: 8px; }
	.sp:nth-child(3),
	.sp:nth-child(4){ border-top: 1px solid var(--border); }
	.sp:nth-child(4){ border-right: 1px solid var(--border); }
	.sp-num{ font-size: 20px; }
	.pc-ruo-text{ line-height: 14px; display: block; }
	.ts-text{ font-size: 9px; }
	.sl-shop-toolbar{ display: block; clear: both; }
	.sl-category-pills{ gap: 5px;  }
	.sl-category-pills a{ padding: 10px 10px; }
	.woocommerce-page.woocommerce ul.products{ grid-template-columns: repeat(2, 1fr) !important; gap: 5px !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title{ font-size: 14px !important; padding: 0px 0px 2px !important; }
	.woocommerce ul.products li.product a{ padding: 10px 10px !important; }
	.woocommerce ul.products li.product .price{ font-size: 15px !important; padding: 0 0px 0px !important; }
	.woocommerce ul.products li.product{ width: 100% !important; padding: 0px 0px !important; margin: 0 0 1em !important; }
	.woocommerce ul.products li.product a.product_type_simple{ margin: 0 10px 10px !important; }
	.footer-grid{  gap: 25px; margin-bottom: 10px; }
	.footer-help{  margin-top: 10px; }
	.footer-copy{ flex-flow: wrap; margin-top: 1rem; }
	.footer-help .help-phone, .footer-help .help-email{ font-size:18px; }
	
	.woocommerce div.product .product_title{ font-size: 20px !important; }
	.woocommerce div.product{ padding: 0 !important; }
	.nav-cart-btn{ line-height: 0; }
	.nav-cart-btn svg{ width:20px; height:20px; }
	.ag-select{  height: 35px; font-size: 14px; }
	.product-ribbon{ padding: 3px 5px; font-size: 8px; }
	.sl-toolbar-top{  justify-content: flex-start; }
	.hero-right .btn-primary,
	.hero-right .btn-secondary{ padding: 10px 10px; font-size: 10px; }
	.sl-faq{ overflow:hidden; }
	.promiseHeading h2{     font-size: 25px; }
	.promiseHeading p{ font-size:14px; }
	.promiseSec{     padding: 3rem 15px 6rem 15px; }
	.woocommerce-account .woocommerce{ display:block; }
	
	.woocommerce-account .woocommerce {
		display:block;
		margin:20px 0px;
	}

	.woocommerce-MyAccount-navigation {
		width:auto;
		margin-bottom:30px;
	}

	.woocommerce-MyAccount-content {
		padding:0px;
	}
	.xoo-wsc-bki{ font-size: 20px !important; }
	.xoo-wsc-basket{ width: 40px !important; height: 40px !important; }
	.xoo-wsc-items-count{ left: 0px !important; height: 20px !important; line-height: 20px !important; width: 20px !important; font-size: 10px !important; }
	.trust-strip{ gap: 10px; }
	.product-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	
	.pc-vial-zone img {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        max-height: 140px !important;
    }
	.pc-pricing{ padding: 14px 10px 0; }
	.pc-name{font-size: 15px; }
	.pc-ruo-bar{ padding: 7px 10px; }
	
}



.woocommerce div.product form.cart .variations select {
    color: #000 !important;
    font-size: 13px !important;
    padding: 8px;
    max-width: 100%;
    min-width: 25%;
    display: inline-block;
    margin-right: 1em;
    border-radius: 3px;
    border-color: #ababab;
}

.woocommerce div.product form.cart .variations tbody th {
    width: 8%;
    text-align: start;
}

.woocommerce div.product form.cart .variations tbody th label {font-weight: 500;color: #101010;}

.woocommerce div.product form.cart .variations {
    margin-block: 2rem 1rem;
}

.type-product .summary p.price {
    margin-block: 1rem 2rem;
    font-weight: 500;
}

.woocommerce-tabs #tab-description > h2{
    display: none;
}

.woocommerce-tabs #tab-description p{
    line-height: 1.5
}

.sl-shop-toolbar .sl-category-pills a:nth-child(2) {
    display: none;
}












