/* ============================================================
   ABSORB & EVOLVE — SHARED STYLES
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #7A9E8A;
  --green-h: #91b5a0;
  --gdim: rgba(122,158,138,0.12);
  --gborder: rgba(122,158,138,0.22);
  --bg: #090909;
  --bg2: #0f0f0f;
  --bg3: #171717;
  --bg4: #1e1e1e;
  --bd: #1c1c1c;
  --bd2: #272727;
  --txt: #e5e5e5;
  --muted: #686868;
  --muted2: #3c3c3c;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   AGE GATE — HOMEPAGE VARIANT (full form)
   ============================================================ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 1.5rem;
  background: #050505;
}

.ag-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(122,158,138,0.09) 0%, transparent 65%);
}

.ag-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(122,158,138,0.07);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ag-pulse 6s ease-in-out infinite;
}
.ag-ring-1 { width: 720px; height: 720px; }
.ag-ring-2 { width: 460px; height: 460px; animation-delay: 2s; }

@keyframes ag-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .5; }
  50%      { transform: translate(-50%,-50%) scale(1.07); opacity: .15; }
}

.ag-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px; text-align: center;
}

.ag-logo { display: flex; flex-direction: column; align-items: center; gap: .625rem; margin-bottom: 2rem; }
.ag-logo-icon { width: 76px; height: 76px; }
.ag-logo-name { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.ag-logo-top  { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -.01em; }
.ag-logo-amp  { font-size: .7rem; color: var(--muted); margin: .15rem 0; }
.ag-logo-bot  { font-size: 1.2rem; font-weight: 700; color: var(--green); letter-spacing: .05em; }

.ag-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .35rem; }
.ag-title { font-size: 1.8rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: .5rem; }
.ag-sub   { font-size: .83rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }

.ag-perks { display: flex; flex-direction: column; gap: .45rem; text-align: left; margin-bottom: 1.5rem; }
.ag-perk  { display: flex; align-items: center; gap: .6rem; font-size: .82rem; }
.ag-perk-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--gdim); border: 1px solid var(--gborder);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--green);
}
.ag-perk strong { color: var(--green); }

.ag-tabs {
  display: flex; background: var(--bg3); border-radius: 8px; padding: 3px; margin-bottom: 1.25rem;
}
.ag-tab {
  flex: 1; padding: .55rem 1rem; border-radius: 6px;
  font-size: .82rem; font-weight: 600; color: var(--muted); transition: all .2s;
}
.ag-tab.active { background: var(--green); color: white; }

.ag-form { display: none; flex-direction: column; gap: .7rem; }
.ag-form.active { display: flex; }

/* Age gate — simple variant (non-home pages) */
#age-gate-simple {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #050505; padding: 2rem;
}
.ags-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px; text-align: center;
  background: var(--bg2); border: 1px solid var(--bd);
  border-radius: 16px; padding: 3rem 2.5rem;
}
.ags-logo { display: flex; flex-direction: column; align-items: center; gap: .625rem; margin-bottom: 2rem; }
.ags-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: .5rem; font-weight: 600; }
.ags-title { font-size: 1.75rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -.02em; }
.ags-sub   { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
.ags-btns  { display: flex; flex-direction: column; gap: .625rem; }
.ags-btn-yes {
  background: var(--green); color: white;
  padding: .9rem; border-radius: 8px; font-size: .9rem; font-weight: 700;
  transition: background .2s;
}
.ags-btn-yes:hover { background: var(--green-h); }
.ags-btn-no {
  background: var(--bg3); color: var(--muted);
  padding: .9rem; border-radius: 8px; font-size: .9rem; font-weight: 600;
  border: 1px solid var(--bd2); transition: all .2s;
}
.ags-btn-no:hover { color: var(--txt); border-color: var(--bd); }
.ags-note { font-size: .68rem; color: var(--muted2); margin-top: 1.5rem; line-height: 1.6; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: .3rem; text-align: left; }
.field label { font-size: .72rem; color: var(--muted); font-weight: 500; }
.field input {
  background: var(--bg3); border: 1px solid var(--bd2);
  border-radius: 7px; padding: .7rem .875rem;
  color: var(--txt); font-size: .875rem; outline: none;
  transition: border-color .2s; width: 100%;
}
.field input:focus { border-color: var(--green); }

.check { display: flex; align-items: flex-start; gap: .6rem; text-align: left; }
.check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.check label { font-size: .74rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-green {
  background: var(--green); color: white;
  padding: .875rem 2rem; border-radius: 8px;
  font-size: .875rem; font-weight: 700;
  transition: background .2s, transform .1s;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-green:hover { background: var(--green-h); }
.btn-green:active { transform: scale(.99); }
.btn-green.full { width: 100%; }

.btn-outline {
  padding: .875rem 2rem; border-radius: 8px;
  font-size: .875rem; font-weight: 600;
  border: 1px solid var(--bd2); color: var(--txt);
  background: transparent; transition: all .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-ghost {
  padding: .8rem 1.75rem; border-radius: 8px;
  font-size: .85rem; font-weight: 600;
  border: 1px solid var(--bd2); color: var(--txt);
  background: transparent; transition: all .2s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-sm {
  padding: .575rem .875rem; border-radius: 6px;
  font-size: .78rem; font-weight: 700;
}

/* ============================================================
   INFO BAR + HEADER
   ============================================================ */
.info-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; padding: .5rem 2rem;
  background: var(--bg2); border-bottom: 1px solid var(--bd);
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .065em;
}
.info-bar-item { display: flex; align-items: center; gap: .4rem; }
.info-bar-item span { color: var(--green); font-weight: 700; }
@media (max-width: 640px) { .info-bar { display: none; } }

#site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(9,9,9,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bd);
}

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2rem; max-width: 1440px; margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo-icon { width: 50px; height: 50px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-a { font-weight: 900; font-size: 1.2rem; color: var(--white); letter-spacing: -.01em; white-space: nowrap; }
.logo-b { font-weight: 700; font-size: .82rem; color: var(--green); letter-spacing: .055em; white-space: nowrap; }

.header-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.header-nav a { font-size: .83rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.header-nav a:hover, .header-nav a.active { color: var(--white); }

.header-right { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  width: 36px; height: 36px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .2s, background .2s; position: relative;
}
.icon-btn:hover { color: var(--white); background: var(--bg3); }

.cart-badge {
  position: absolute; top: -3px; right: -3px;
  width: 15px; height: 15px; background: var(--green);
  border-radius: 50%; font-size: .55rem; font-weight: 800;
  color: white; display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none; width: 36px; height: 36px; border-radius: 7px;
  align-items: center; justify-content: center;
  color: var(--txt); background: var(--bg3);
}
@media (max-width: 768px) { .header-nav { display: none; } .hamburger { display: flex; } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden; background: var(--bg2);
  border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd);
  padding: .8rem 0;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.tick {
  display: inline-flex; align-items: center; gap: .875rem;
  padding: 0 2rem; font-size: .7rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .07em;
}
.tick-dot { width: 4px; height: 4px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.sec  { padding: 6rem 0; }
.sec-sm { padding: 4rem 0; }

.eyebrow {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--green); margin-bottom: .875rem;
}
.sec-h {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.08; color: var(--white); margin-bottom: 1rem;
}
.sec-p { font-size: .9rem; color: var(--muted); line-height: 1.75; max-width: 480px; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px; background: var(--bd); border: 1px solid var(--bd);
  border-radius: 14px; overflow: hidden;
}

.prod-card {
  background: var(--bg); padding: 1.375rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .2s; cursor: pointer;
}
.prod-card:hover { background: var(--bg2); }

.prod-img {
  width: 100%; aspect-ratio: 1; background: var(--bg3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(122,158,138,0.09), transparent 60%);
}
.prod-tag {
  position: absolute; top: .625rem; left: .625rem;
  background: var(--gdim); border: 1px solid var(--gborder);
  border-radius: 4px; padding: .15rem .45rem;
  font-size: .6rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .07em;
}
.prod-icon { width: 56px; height: 56px; opacity: .2; }
.prod-name { font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: .2rem; }
.prod-price { font-size: .85rem; color: var(--muted); }
.prod-actions { display: flex; gap: .5rem; }
.prod-add {
  flex: 1; background: var(--green); color: white;
  padding: .575rem .875rem; border-radius: 6px;
  font-size: .78rem; font-weight: 700; transition: background .2s;
}
.prod-add:hover { background: var(--green-h); }
.prod-coa {
  padding: .575rem .75rem; border-radius: 6px;
  font-size: .75rem; font-weight: 600;
  border: 1px solid var(--bd2); color: var(--muted);
  background: transparent; transition: all .2s; white-space: nowrap;
}
.prod-coa:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--bd);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card { background: var(--bg2); padding: 2.5rem 2rem; }
.feat-num  { font-size: .7rem; color: var(--green); font-weight: 700; letter-spacing: .1em; margin-bottom: 1.25rem; }
.feat-h    { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; line-height: 1.3; }
.feat-p    { font-size: .85rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; padding: 5rem 2rem; max-width: 1440px; margin: 0 auto;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-box {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid var(--bd); border-radius: 12px;
}
.stat-val { font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: .4rem; }
.stat-val em { color: var(--green); font-style: normal; }
.stat-lbl { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-sub { font-size: .62rem; color: var(--muted2); text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 3rem; } }

.faq-cta-box {
  margin-top: 2.5rem; padding: 1.75rem;
  background: var(--bg2); border: 1px solid var(--bd); border-radius: 12px;
}
.faq-cta-box p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.faq-cta-box strong { color: var(--txt); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--bd); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0; font-weight: 600; font-size: .9rem;
  color: var(--txt); text-align: left; width: 100%; transition: color .2s;
}
.faq-q:hover { color: var(--white); }
.faq-icon {
  width: 22px; height: 22px; border: 1px solid var(--bd2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; color: var(--muted); flex-shrink: 0;
  transition: transform .25s, border-color .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--green); color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding-bottom: 1.25rem; font-size: .875rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 240px; }

/* ============================================================
   EU SECTION
   ============================================================ */
.eu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 860px) { .eu-grid { grid-template-columns: 1fr; gap: 3rem; } }

.eu-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gdim); border: 1px solid var(--gborder);
  border-radius: 6px; padding: .3rem .625rem;
  font-size: .68rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem;
}
.eu-feats { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.eu-feat  { display: flex; gap: 1rem; align-items: flex-start; }
.eu-feat-ico {
  width: 34px; height: 34px; background: var(--gdim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0;
}
.eu-feat h4 { font-size: .875rem; font-weight: 700; margin-bottom: .2rem; }
.eu-feat p  { font-size: .8rem; color: var(--muted); line-height: 1.6; }

.eu-card {
  background: var(--bg3); border: 1px solid var(--bd);
  border-radius: 16px; padding: 3rem 2.5rem; text-align: center;
}
.eu-flag { font-size: 4.5rem; display: block; margin-bottom: 1rem; }
.eu-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.eu-card p  { font-size: .82rem; color: var(--muted); }

.eu-tags { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.eu-tag {
  background: var(--gdim); border: 1px solid var(--gborder);
  border-radius: 4px; padding: .2rem .5rem;
  font-size: .65rem; color: var(--green); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bg); border-top: 1px solid var(--bd); }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 2rem 3rem; max-width: 1440px; margin: 0 auto;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-desc { font-size: .82rem; color: var(--muted); line-height: 1.75; margin-top: 1rem; max-width: 310px; }

.footer-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-tag {
  background: var(--bg3); border: 1px solid var(--bd2);
  border-radius: 4px; padding: .15rem .45rem;
  font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}

.footer-col h4 {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--txt); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.footer-col strong { color: var(--txt); display: block; margin-bottom: .25rem; }

.footer-bottom { border-top: 1px solid var(--bd); padding: 2rem; max-width: 1440px; margin: 0 auto; }
.disclaimer { font-size: .68rem; color: var(--muted2); line-height: 1.75; margin-bottom: 1.25rem; }
.copyright { font-size: .72rem; color: var(--muted2); }
.copyright strong { color: var(--muted); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 500;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-sidebar {
  position: fixed; right: 0; top: 0; height: 100%;
  width: 420px; max-width: 100vw;
  background: var(--bg2); border-left: 1px solid var(--bd);
  z-index: 501; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
#cart-sidebar.open { transform: translateX(0); }

.cart-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 1.5rem; border-bottom: 1px solid var(--bd);
}
.cart-hd h3 { font-size: .95rem; font-weight: 700; }

.cart-body { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--muted); }
.cart-empty-ico { font-size: 2.5rem; opacity: .25; }
.cart-empty p { font-size: .875rem; }

.cart-footer { padding: 1.5rem; border-top: 1px solid var(--bd); display: flex; flex-direction: column; gap: .875rem; }
.cart-total  { display: flex; justify-content: space-between; font-size: .9rem; }
.cart-total span:last-child { font-weight: 700; color: var(--white); }

.coupon-row { display: flex; gap: .5rem; }
.coupon-row input {
  flex: 1; background: var(--bg3); border: 1px solid var(--bd2);
  border-radius: 7px; padding: .65rem .875rem; color: var(--txt);
  font-size: .82rem; outline: none; transition: border-color .2s;
}
.coupon-row input:focus { border-color: var(--green); }
.coupon-row button {
  padding: .65rem 1rem; border-radius: 7px; font-size: .8rem; font-weight: 600;
  border: 1px solid var(--bd2); color: var(--muted); transition: all .2s;
}
.coupon-row button:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   NEWSLETTER POPUP
   ============================================================ */
#nl-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 800;
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
#nl-overlay.open { display: flex; }

.nl-modal {
  background: var(--bg2); border: 1px solid var(--bd);
  border-radius: 16px; padding: 2.5rem;
  max-width: 460px; width: 100%; position: relative;
}
.nl-modal h3 { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: .625rem; }
.nl-modal > p { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.65; }

.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.nl-grid input {
  background: var(--bg3); border: 1px solid var(--bd2); border-radius: 7px;
  padding: .7rem .875rem; color: var(--txt); font-size: .85rem; outline: none;
  transition: border-color .2s; width: 100%;
}
.nl-grid input:focus { border-color: var(--green); }
.nl-grid input[type="email"] { grid-column: 1 / -1; }
.nl-grid button {
  grid-column: 1 / -1; background: var(--green); color: white;
  padding: .875rem; border-radius: 8px; font-size: .875rem; font-weight: 700;
  transition: background .2s;
}
.nl-grid button:hover { background: var(--green-h); }
.nl-note { font-size: .68rem; color: var(--muted2); text-align: center; margin-top: .625rem; }

/* ============================================================
   COA MODAL
   ============================================================ */
#coa-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 900;
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
#coa-overlay.open { display: flex; }
.coa-modal {
  background: var(--bg2); border: 1px solid var(--bd); border-radius: 16px;
  padding: 2.5rem; max-width: 500px; width: 100%; position: relative;
}
.coa-modal h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.coa-badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem;
  background: var(--gdim); border: 1px solid var(--gborder); border-radius: 6px;
  padding: .35rem .75rem; font-size: .7rem; font-weight: 700;
  color: var(--green); text-transform: uppercase; letter-spacing: .08em;
}
.coa-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0; border-bottom: 1px solid var(--bd); font-size: .85rem;
}
.coa-row:last-of-type { border: none; }
.coa-row span:first-child { color: var(--muted); }
.coa-row span:last-child  { color: var(--white); font-weight: 600; }

/* ============================================================
   CLOSE BUTTON (shared)
   ============================================================ */
.close-btn {
  width: 30px; height: 30px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.1rem; transition: all .2s;
}
.close-btn:hover { color: var(--white); background: var(--bg3); }
.close-abs { position: absolute; top: 1rem; right: 1rem; }

/* ============================================================
   PAGE HERO (shop, about, contact)
   ============================================================ */
.page-hero {
  padding: 5rem 2rem 4rem; background: var(--bg);
  border-bottom: 1px solid var(--bd); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(122,158,138,0.05) 0%, transparent 60%);
}
.breadcrumb { font-size: .72rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 .4rem; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-sidebar {
  background: var(--bg2); border: 1px solid var(--bd);
  border-radius: 12px; padding: 1.5rem; position: sticky; top: 100px;
}
.sidebar-group { margin-bottom: 1.5rem; }
.sidebar-group:last-child { margin-bottom: 0; }
.sidebar-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .875rem; }
.sidebar-opt {
  display: flex; align-items: center; gap: .5rem; padding: .45rem 0;
  font-size: .83rem; color: var(--muted); cursor: pointer; transition: color .2s;
  width: 100%; text-align: left;
}
.sidebar-opt:hover, .sidebar-opt.active { color: var(--green); }
.sidebar-dot { width: 6px; height: 6px; border-radius: 50%; border: 1.5px solid currentColor; }
.sidebar-opt.active .sidebar-dot { background: var(--green); border-color: var(--green); }

.shop-main {}
.shop-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.shop-count { font-size: .82rem; color: var(--muted); }
.shop-sort {
  background: var(--bg3); border: 1px solid var(--bd2); border-radius: 7px;
  padding: .5rem .875rem; font-size: .82rem; color: var(--txt);
  outline: none; cursor: pointer; transition: border-color .2s;
}
.shop-sort:focus { border-color: var(--green); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--bg2); border: 1px solid var(--bd); border-radius: 12px; padding: 2rem;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--gborder); }
.why-icon {
  width: 40px; height: 40px; background: var(--gdim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--green);
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.why-card p  { font-size: .85rem; color: var(--muted); line-height: 1.7; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

.img-placeholder {
  background: var(--bg3); border: 1px solid var(--bd);
  border-radius: 16px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; flex-direction: column; gap: 1rem;
}
.img-placeholder svg { opacity: .3; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-info-ico {
  width: 38px; height: 38px; background: var(--gdim); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.contact-info-item h4 { font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.contact-info-item p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }

.contact-form { background: var(--bg2); border: 1px solid var(--bd); border-radius: 14px; padding: 2rem; }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.form-grid .field:last-child { grid-column: 1 / -1; }

.field textarea {
  background: var(--bg3); border: 1px solid var(--bd2);
  border-radius: 7px; padding: .7rem .875rem;
  color: var(--txt); font-size: .875rem; outline: none;
  transition: border-color .2s; width: 100%; resize: vertical; min-height: 130px;
}
.field textarea:focus { border-color: var(--green); }
.field select {
  background: var(--bg3); border: 1px solid var(--bd2);
  border-radius: 7px; padding: .7rem .875rem;
  color: var(--txt); font-size: .875rem; outline: none;
  transition: border-color .2s; width: 100%; cursor: pointer;
}
.field select:focus { border-color: var(--green); }

/* ============================================================
   ANIMATIONS / UTILITIES
   ============================================================ */
.fi { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .05s; }
.fi-d2 { transition-delay: .14s; }
.fi-d3 { transition-delay: .23s; }
.fi-d4 { transition-delay: .32s; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gdim); border: 1px solid var(--gborder); border-radius: 100px;
  padding: .35rem .875rem; font-size: .7rem; color: var(--green);
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.divider { border: none; border-top: 1px solid var(--bd); }

/* shared section bg colors */
.bg2-section { background: var(--bg2); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.bg-section   { background: var(--bg);  border-top: 1px solid var(--bd); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Gallery */
.pdp-gallery { position: sticky; top: 100px; }
@media (max-width: 900px) { .pdp-gallery { position: static; } }
.pdp-main-img {
  width: 100%; aspect-ratio: 1; background: var(--bg3); border: 1px solid var(--bd);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin-bottom: .875rem;
}
.pdp-main-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(122,158,138,0.1), transparent 60%);
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; position: relative; z-index: 1; }
.pdp-main-img.has-photo { background: linear-gradient(180deg,#eef1ef,#dde3de); }
.pdp-main-img.has-photo::before { display: none; }
.pdp-main-img .prod-icon { width: 128px; height: 128px; opacity: .18; position: relative; z-index: 1; }
.pdp-main-img .prod-tag { position: absolute; top: .875rem; left: .875rem; z-index: 2; }
.pdp-badge-sale {
  position: absolute; top: .875rem; right: .875rem; z-index: 2;
  background: var(--green); color: #fff; font-size: .65rem; font-weight: 800;
  padding: .3rem .6rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .05em;
}
.pdp-thumbs { display: flex; gap: .625rem; }
.pdp-thumb {
  width: 68px; height: 68px; border-radius: 9px; background: var(--bg3);
  border: 1px solid var(--bd); cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .4rem; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--green); }

.pdp-trust-row {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.pdp-trust {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg2); border: 1px solid var(--bd); border-radius: 7px;
  padding: .5rem .75rem; font-size: .72rem; color: var(--muted);
}
.pdp-trust svg { color: var(--green); flex-shrink: 0; }

/* Info column */
.pdp-info { max-width: 560px; }
.pdp-name { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1.1; margin: .5rem 0 .625rem; }
.pdp-sub { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.pdp-rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.pdp-stars { color: var(--green); font-size: .8rem; letter-spacing: .1em; }
.pdp-rating-txt { font-size: .76rem; color: var(--muted); }

.pdp-price-row { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.5rem; }
.pdp-price { font-size: 2rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.pdp-price-was { font-size: 1.1rem; color: var(--muted2); text-decoration: line-through; }
.pdp-price-save { font-size: .72rem; font-weight: 700; color: var(--green); background: var(--gdim); border: 1px solid var(--gborder); padding: .25rem .55rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .04em; }

.pdp-block { margin-bottom: 1.5rem; }
.pdp-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: .75rem; }
.pdp-label strong { color: var(--txt); font-weight: 700; text-transform: none; letter-spacing: 0; }

.pdp-sizes { display: flex; gap: .625rem; flex-wrap: wrap; }
.pdp-size-opt {
  padding: .65rem 1.25rem; border-radius: 8px; border: 1px solid var(--bd2);
  font-size: .85rem; font-weight: 600; color: var(--txt); background: var(--bg2);
  transition: all .2s; cursor: pointer;
}
.pdp-size-opt:hover { border-color: var(--green); }
.pdp-size-opt.active { border-color: var(--green); background: var(--gdim); color: var(--green); }

/* Bundle / quantity discount cards — dropshipping style */
.pdp-bundles { display: flex; flex-direction: column; gap: .7rem; }
.pdp-bundle {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.15rem; border-radius: 11px; border: 1.5px solid var(--bd2);
  background: var(--bg2); cursor: pointer; transition: all .2s;
}
.pdp-bundle:hover { border-color: var(--gborder); }
.pdp-bundle.active { border-color: var(--green); background: var(--gdim); }
.pdp-bundle-radio {
  width: 19px; height: 19px; border-radius: 50%; border: 2px solid var(--bd2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.pdp-bundle.active .pdp-bundle-radio { border-color: var(--green); }
.pdp-bundle.active .pdp-bundle-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.pdp-bundle-left { display: flex; align-items: center; gap: .875rem; }
.pdp-bundle-qty { font-size: .9rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.pdp-bundle-per { font-size: .72rem; color: var(--muted); }
.pdp-bundle-tag {
  font-size: .62rem; font-weight: 800; color: var(--green); background: var(--gdim);
  border: 1px solid var(--gborder); padding: .18rem .5rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .05em; margin-left: .6rem;
}
.pdp-bundle-right { text-align: right; flex-shrink: 0; }
.pdp-bundle-price { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.pdp-bundle-was { font-size: .72rem; color: var(--muted2); text-decoration: line-through; }
.pdp-bundle-badge {
  position: absolute; top: -9px; right: 1.1rem;
  background: var(--green); color: #fff; font-size: .6rem; font-weight: 800;
  padding: .2rem .55rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em;
}

.pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.pdp-stepper { display: flex; align-items: center; border: 1px solid var(--bd2); border-radius: 8px; overflow: hidden; }
.pdp-stepper button { width: 36px; height: 40px; color: var(--txt); font-size: 1rem; transition: background .2s; }
.pdp-stepper button:hover { background: var(--bg3); }
.pdp-stepper span { width: 42px; text-align: center; font-size: .9rem; font-weight: 700; color: var(--white); }

.pdp-ctas { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.pdp-ctas .btn-green { flex: 1; }

.pdp-guarantees { display: flex; flex-direction: column; gap: .625rem; padding: 1.25rem; background: var(--bg2); border: 1px solid var(--bd); border-radius: 12px; }
.pdp-guarantee { display: flex; align-items: center; gap: .625rem; font-size: .8rem; color: var(--muted); }
.pdp-guarantee svg { color: var(--green); flex-shrink: 0; }

/* Tabs */
.pdp-tabs-nav { display: flex; gap: 2rem; border-bottom: 1px solid var(--bd); margin-bottom: 2rem; flex-wrap: wrap; }
.pdp-tab-btn {
  padding: 1rem 0; font-size: .85rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s;
}
.pdp-tab-btn:hover { color: var(--txt); }
.pdp-tab-btn.active { color: var(--white); border-color: var(--green); }
.pdp-tab-panel { display: none; }
.pdp-tab-panel.active { display: block; }
.pdp-tab-panel p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; max-width: 760px; }
.pdp-tab-panel h4 { font-size: .95rem; color: var(--white); font-weight: 700; margin: 1.5rem 0 .75rem; }
.pdp-bullets { display: flex; flex-direction: column; gap: .75rem; max-width: 760px; }
.pdp-bullet { display: flex; gap: .75rem; align-items: flex-start; font-size: .85rem; color: var(--muted); line-height: 1.65; }
.pdp-bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: .5rem; flex-shrink: 0; }

.pdp-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--bd); border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; max-width: 760px; }
@media (max-width: 560px) { .pdp-spec-grid { grid-template-columns: 1fr; } }
.pdp-spec { background: var(--bg2); padding: 1rem 1.25rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .82rem; }
.pdp-spec span:first-child { color: var(--muted); }
.pdp-spec span:last-child { color: var(--white); font-weight: 600; text-align: right; }

.pdp-notice {
  margin-top: 2rem; padding: 1rem 1.25rem; background: var(--bg2); border: 1px solid var(--bd);
  border-left: 3px solid var(--green); border-radius: 8px; font-size: .78rem; color: var(--muted); line-height: 1.7; max-width: 760px;
}
