/* =========================================================
   ASSURION LABS — Main Stylesheet
   Design system: dark/cyan, Orbitron + Rajdhani
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
  --bg:      #090c10;
  --bg-2:    #0e1318;
  --bg-3:    #131820;
  --bg-4:    #1a2030;
  --bg-5:    #212840;

  --cyan:      #00e5ff;
  --cyan-2:    #00b8d9;
  --cyan-dim:  rgba(0,229,255,0.10);
  --cyan-glow: rgba(0,229,255,0.35);
  --cyan-glow-sm: rgba(0,229,255,0.18);

  --white:   #ffffff;
  --text:    #e8edf5;
  --text-2:  #c2d0e0;
  --text-3:  #8fa3ba;
  --border:  rgba(255,255,255,0.07);
  --border-cyan: rgba(0,229,255,0.20);

  --silver:  #8899aa;
  --danger:  #ff4444;
  --success: #00e5a0;

  --font-display: 'Orbitron', monospace;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-cyan: 0 0 40px rgba(0,229,255,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.5);

  --header-h: 90px;
  --container: 1240px;
  --gap:       28px;
}

/* ─────────────────────────────────────────
   RESET
   ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.gate-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--white); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--cyan); color: var(--bg); }

/* ─────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  opacity: .5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   COMPLIANCE GATE
   ───────────────────────────────────────── */
#compliance-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,12,16,0.97);
  backdrop-filter: blur(8px);
  padding: 24px;
  overflow-y: auto;
  transition: opacity .42s ease;
}
#compliance-gate.gate-dismissed {
  opacity: 0;
  pointer-events: none;
}
.gate-modal {
  background: var(--bg-2);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-lg);
  box-shadow: 0 0 60px var(--cyan-glow-sm), var(--shadow-lg);
  max-width: 560px;
  width: 100%;
  padding: 44px 40px;
  animation: gate-in .45s cubic-bezier(.22,.9,.36,1) both;
  margin: auto;
}
.gate-logo { justify-content: center; }
.gate-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 4px;
}
@keyframes gate-in {
  from { opacity:0; transform:translateY(18px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.gate-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.gate-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
}
.gate-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.gate-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gate-icon-wrap svg { width:20px; height:20px; color: var(--cyan); }
.gate-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.gate-subheading {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.gate-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.gate-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .2s, background .2s;
}
.gate-check-item:has(.gate-checkbox:checked) {
  border-color: var(--border-cyan);
  background: var(--cyan-dim);
}
.gate-checkbox { display: none; }
.gate-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-3);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  position: relative;
}
.gate-check-item:has(.gate-checkbox:checked) .gate-check-box {
  border-color: var(--cyan);
  background: var(--cyan);
}
.gate-check-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--bg);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform .15s .05s;
  margin-top: -2px;
}
.gate-check-item:has(.gate-checkbox:checked) .gate-check-box::after {
  transform: rotate(45deg) scale(1);
}
.gate-check-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}
.gate-check-label strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.gate-check-label ul {
  margin-top: 6px;
  padding-left: 0;
}
.gate-check-label ul li {
  font-size: 12px;
  color: var(--text-3);
  padding: 1px 0 1px 14px;
  position: relative;
}
.gate-check-label ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-3);
}
#gate-submit {
  width: 100%;
  padding: 15px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  background: var(--cyan);
  color: var(--bg);
  border-radius: var(--r-md);
  font-weight: 700;
  transition: opacity .2s, box-shadow .2s, transform .1s;
}
#gate-submit:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  box-shadow: none;
}
#gate-submit:not(:disabled):hover {
  box-shadow: 0 0 28px var(--cyan-glow);
  transform: translateY(-1px);
}
.gate-legal {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 16px;
  line-height: 1.5;
}
.gate-legal a {
  color: var(--cyan);
  text-decoration: underline;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   LEGAL VIEWER (in-gate document popup)
   ───────────────────────────────────────── */
#legal-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,12,16,0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#legal-viewer.is-open {
  opacity: 1;
  pointer-events: all;
}
.legal-viewer-panel {
  background: var(--bg-2);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-lg);
  width: min(720px, 92vw);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(0,229,255,0.08);
}
.legal-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.legal-viewer-head-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.legal-viewer-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.legal-viewer-close:hover { color: var(--white); border-color: var(--text-3); }
.legal-viewer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.75;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.legal-viewer-body::-webkit-scrollbar { width: 4px; }
.legal-viewer-body::-webkit-scrollbar-track { background: transparent; }
.legal-viewer-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.legal-viewer-body h2 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.legal-viewer-body h2:first-child { margin-top: 0; }
.legal-viewer-body h3 { font-size: 12px; color: var(--white); margin: 14px 0 5px; }
.legal-viewer-body p { margin: 0 0 10px; }
.legal-viewer-body ul, .legal-viewer-body ol { padding-left: 18px; margin: 0 0 10px; }
.legal-viewer-body li { margin-bottom: 4px; }
.legal-viewer-body strong { color: var(--white); }
.legal-viewer-body a { color: var(--cyan); }
.legal-viewer-body .lv-notice {
  background: var(--bg-3);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.legal-viewer-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.legal-viewer-foot .btn {
  min-width: 220px;
}

/* ─────────────────────────────────────────
   HEADER
   ───────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(9,12,16,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s, transform .3s;
}
#site-header.is-scrolled {
  background: rgba(9,12,16,0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
#site-header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width:18px; height:18px; color: var(--bg); }
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1.1;
}
.logo-tagline {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
#site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--cyan); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--text-2);
  transition: color .2s, background .2s;
  position: relative;
}
.header-icon-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.header-icon-btn svg { width:20px; height:20px; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  border-radius: 9px;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px var(--cyan-glow);
}
#menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-sm);
  color: var(--text);
}
.menu-bar {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
#menu-toggle.is-open .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.is-open .menu-bar:nth-child(2) { opacity: 0; width: 0; }
#menu-toggle.is-open .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search drawer */
#search-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
#search-drawer.is-open { transform: translateY(0); opacity: 1; }
.search-form { display: flex; gap: 10px; align-items: center; }
.search-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--border-cyan); }
.search-input::placeholder { color: var(--text-3); }

/* ─────────────────────────────────────────
   CART DRAWER
   ───────────────────────────────────────── */
#cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
#cart-drawer.is-open { pointer-events: all; }
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s;
}
#cart-drawer.is-open .cart-drawer-overlay { background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.5);
}
#cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.cart-item-total-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: 8px;
}
.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.cart-drawer-close:hover { color: var(--white); background: var(--bg-3); }
.cart-drawer-close svg { width: 18px; height: 18px; }
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-empty {
  color: var(--text-3);
  font-size: 14px;
  text-align: center;
  padding: 48px 0;
  font-family: var(--font-body);
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--bg-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.cart-item-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-4);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-icon svg { width: 20px; height: 20px; color: var(--cyan); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; color: var(--white); font-size: 14px; margin-bottom: 2px; font-family: var(--font-body); }
.cart-item-variant { font-size: 12px; color: var(--text-3); margin-bottom: 4px; }
.cart-item-price { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--r-xs);
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--danger); }
.cart-item-remove svg { width: 14px; height: 14px; }
.cart-drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-2);
  font-family: var(--font-body);
}
.cart-subtotal-row strong {
  font-family: var(--font-mono);
  color: var(--white);
  font-size: 18px;
}
.btn--checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
}
.btn--continue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color .2s;
  font-family: var(--font-body);
}
.btn--continue:hover { color: var(--white); }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,68,68,0.06);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer-trust { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.footer-trust-item svg { width:14px; height:14px; color: var(--cyan); flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--text-3);
}
.footer-legal-links a:hover { color: var(--white); }

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all .2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width:16px; height:16px; flex-shrink: 0; }
.btn--primary {
  background: var(--cyan);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 0 28px var(--cyan-glow);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}
.btn--outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
}
.btn--outline-cyan:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--lg { padding: 17px 34px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--danger { background: var(--danger); color: var(--white); }

/* ─────────────────────────────────────────
   FORMS
   ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6a80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.form-select option { background: var(--bg-3); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-check-input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-label { font-size: 15px; color: var(--text-2); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { color: var(--text-3); opacity: .5; }

/* ─────────────────────────────────────────
   HOMEPAGE HERO
   ───────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,229,255,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,180,255,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(0,229,255,0.04) 0%, transparent 60%),
    linear-gradient(to right, rgba(8,10,14,0.82) 30%, rgba(8,10,14,0.35) 100%),
    url('../images/lab-hero.jpg') center center / cover no-repeat;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-badge svg { width:12px; height:12px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--cyan); }
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(8,10,14,0.72) 30%, transparent 75%);
  border-radius: 50%;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-cyan);
}
.hero-ring-1 {
  inset: 0;
  border-color: rgba(0,229,255,0.40);
  animation: ring-spin 24s linear infinite;
}
.hero-ring-2 {
  inset: 40px;
  border-color: rgba(0,229,255,0.22);
  animation: ring-spin 18s linear infinite reverse;
}
.hero-ring-3 {
  inset: 80px;
  border-color: rgba(0,229,255,0.14);
  animation: ring-spin 30s linear infinite;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}
.hero-ring-1::before,
.hero-ring-1::after,
.hero-ring-2::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.hero-ring-1::before { top: 50%; left: -4px; transform: translateY(-50%); }
.hero-ring-1::after  { top: -4px; left: 50%; transform: translateX(-50%); }
.hero-ring-2::before { bottom: -4px; right: 20%; }
.hero-center {
  position: absolute;
  inset: 120px;
  background: var(--bg-2);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.hero-center svg { width:48px; height:48px; color: var(--cyan); }
.hero-center-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}
.hero-stat-item {
  text-align: center;
  font-family: var(--font-mono);
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
}
/* Floating dots on ring */
.hero-ring-1 .ring-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

/* ─────────────────────────────────────────
   TRUST BAR
   ───────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  flex: 1;
}
.trust-bar-item + .trust-bar-item {
  border-left: 1px solid var(--border);
}
.trust-bar-item svg { width:18px; height:18px; color: var(--cyan); flex-shrink: 0; }
.trust-bar-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
}
.trust-bar-item-text span {
  font-size: 13px;
  color: var(--text-2);
}

/* ─────────────────────────────────────────
   PRODUCT CARDS
   ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 0 30px rgba(0,229,255,0.08), var(--shadow-card);
  transform: translateY(-3px);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-3);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-3);
}
.product-card-placeholder svg { width:48px; height:48px; color: var(--text-3); }
.product-card-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  font-weight: 700;
}
.badge--new { background: var(--cyan); color: var(--bg); }
.badge--sale { background: var(--danger); color: var(--white); }
.badge--popular { background: rgba(255,200,0,0.15); border: 1px solid rgba(255,200,0,0.3); color: #ffc800; }
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--cyan); }
.product-card-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.product-card-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}
.product-card-price .price-from {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 400;
  margin-right: 2px;
}
.product-purity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--success);
  margin-bottom: 10px;
}
.product-purity svg { width:12px; height:12px; }

/* ─────────────────────────────────────────
   PROCESS STEPS
   ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
}
.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--bg-3);
  border: 1px solid var(--border-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 auto 20px;
  position: relative;
}
.process-step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--border-cyan);
  opacity: .4;
}
.process-step-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step-icon svg { width:24px; height:24px; color: var(--cyan); }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.process-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.process-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
  color: var(--border-cyan);
}
.process-connector svg { width:24px; height:24px; }

/* ─────────────────────────────────────────
   ABOUT TEASER / STATS
   ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.about-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .3s;
}
.stat-card:hover { border-color: var(--border-cyan); }
.stat-card-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────── */
.cta-banner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 20% 50%, rgba(0,229,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-content { position: relative; }
.cta-banner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.cta-banner p { font-size: 15px; color: var(--text-2); }
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}

/* ─────────────────────────────────────────
   SHOP PAGE
   ───────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sidebar-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.sidebar-cat-link:hover,
.sidebar-cat-link.active { color: var(--cyan); background: var(--cyan-dim); }
.sidebar-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.sidebar-filter { display: flex; flex-direction: column; gap: 10px; }
.sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s;
}
.sidebar-filter-item:hover { color: var(--white); }
.sidebar-filter-cb { accent-color: var(--cyan); width:16px; height:16px; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.shop-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.shop-count strong { color: var(--text); }
.shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-sort label {
  font-size: 13px;
  color: var(--text-2);
}
.shop-sort-select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 32px 7px 12px;
  color: var(--text);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6a80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}
.research-notice {
  background: rgba(0,229,255,0.05);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.research-notice svg { width:16px; height:16px; color: var(--cyan); flex-shrink: 0; }
.research-notice strong { color: var(--cyan); }

/* ─────────────────────────────────────────
   SINGLE PRODUCT
   ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.product-main-img {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-main-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product-main-placeholder svg { width:72px; height:72px; color: var(--text-3); }
.product-main-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.product-thumbs {
  display: flex;
  gap: 10px;
}
.product-thumb {
  width: 70px;
  height: 70px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb:hover,
.product-thumb.active { border-color: var(--border-cyan); }
.product-thumb svg { width:24px; height:24px; color: var(--text-3); }
.product-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.product-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.product-meta-item svg { width:14px; height:14px; color: var(--cyan); }
.product-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.product-price-big {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.product-price-note {
  font-size: 13px;
  color: var(--text-3);
}
.variant-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.variants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.variant-btn {
  padding: 9px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
}
.variant-btn:hover { border-color: var(--border-cyan); color: var(--white); }
.variant-btn.active {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  color: var(--cyan);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.qty-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.qty-control {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.qty-btn:hover { color: var(--cyan); background: var(--cyan-dim); }
.qty-input {
  width: 50px;
  height: 38px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  outline: none;
}
.add-to-cart-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.add-to-cart-row .btn { flex: 1; }
.product-guarantee {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--bg-3);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.guarantee-item svg { width:14px; height:14px; color: var(--success); flex-shrink: 0; }
.product-research-alert {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,68,68,0.06);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.product-research-alert svg { width:16px; height:16px; color: var(--danger); flex-shrink: 0; margin-top: 1px; }
/* Product tabs */
.product-tabs {
  margin-top: 60px;
}
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  gap: 4px;
}
.tab-btn {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 10px;
  letter-spacing: .04em;
}
.tab-panel p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.tab-panel ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.tab-panel ul li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.tab-panel ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.coa-download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  transition: border-color .2s;
}
.coa-download:hover { border-color: var(--border-cyan); }
.coa-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coa-icon svg { width:20px; height:20px; color: var(--cyan); }
.coa-info { flex: 1; }
.coa-name { font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.coa-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }

/* ─────────────────────────────────────────
   CART PAGE
   ───────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}
.cart-table-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.cart-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-table tr:last-child td { border-bottom: none; }
.cart-product-cell { display: flex; align-items: center; gap: 16px; }
.cart-product-img {
  width: 72px;
  height: 72px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-product-img svg { width:28px; height:28px; color: var(--text-3); }
.cart-product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.cart-product-variant {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.cart-price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text);
}
.cart-total-price {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
}
.cart-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.cart-remove:hover { color: var(--danger); background: rgba(255,68,68,0.08); }
.cart-remove svg { width:16px; height:16px; }
.cart-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-3);
}
.coupon-form { display: flex; gap: 8px; flex: 1; }
.coupon-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 14px;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.coupon-input:focus { border-color: var(--border-cyan); }
.coupon-input::placeholder { color: var(--text-3); }
.cart-summary-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.cart-summary-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-2);
}
.cart-summary-row.total {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.cart-summary-row.total span:last-child { color: var(--cyan); }
.cart-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  text-align: center;
  justify-content: center;
}
.cart-secure-note svg { width:12px; height:12px; color: var(--success); }

/* ─────────────────────────────────────────
   CHECKOUT PAGE
   ───────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.checkout-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-section-title svg { width:16px; height:16px; color: var(--cyan); }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .2s;
}
.payment-option:has(.payment-radio:checked) { border-color: var(--border-cyan); background: var(--cyan-dim); }
.payment-radio { accent-color: var(--cyan); }
.payment-name { font-size: 15px; color: var(--text); font-weight: 500; flex: 1; }
.payment-icons { display: flex; gap: 6px; }
.payment-icon {
  padding: 4px 8px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}
.card-fields {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-placeholder {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  padding: 16px;
}
.order-summary-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.order-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.order-item { display: flex; gap: 12px; align-items: center; }
.order-item-img {
  width: 52px;
  height: 52px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.order-item-img svg { width:20px; height:20px; color: var(--text-3); }
.order-item-info { flex: 1; }
.order-item-name { font-size: 14px; color: var(--text); margin-bottom: 2px; font-weight: 500; }
.order-item-variant { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.order-item-price { font-family: var(--font-mono); font-size: 15px; color: var(--cyan); font-weight: 700; }

/* ─────────────────────────────────────────
   ACCOUNT PAGE
   ───────────────────────────────────────── */
.account-tabs {
  display: flex;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.account-tab-btn {
  flex: 1;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.account-tab-btn.active {
  background: var(--cyan);
  color: var(--bg);
}
.account-panel { display: none; }
.account-panel.active { display: block; }
.account-form-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.account-form-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.account-form-sub {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.account-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-3);
  font-size: 13px;
}
.account-divider::before,
.account-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.my-account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
.account-sidebar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.account-user-info {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.account-avatar {
  width: 48px;
  height: 48px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 10px;
}
.account-name { font-size: 15px; font-weight: 600; color: var(--white); }
.account-email { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.account-nav { display: flex; flex-direction: column; }
.account-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.account-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.account-nav-link.active { color: var(--cyan); border-left-color: var(--cyan); background: var(--cyan-dim); }
.account-nav-link svg { width:16px; height:16px; flex-shrink: 0; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.orders-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
}
.order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
}
.status--processing { background: rgba(255,200,0,0.1); color: #ffc800; }
.status--completed  { background: rgba(0,229,160,0.1); color: var(--success); }
.status--shipped    { background: rgba(0,229,255,0.1); color: var(--cyan); }

/* ─────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────── */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quality-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .3s, transform .3s;
}
.quality-card:hover { border-color: var(--border-cyan); transform: translateY(-3px); }
.quality-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.quality-icon svg { width:20px; height:20px; color: var(--cyan); }
.quality-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.quality-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.legal-box {
  background: rgba(255,68,68,0.04);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.legal-box h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #ff8888;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.legal-box p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 8px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  transition: border-color .3s;
}
.team-card:hover { border-color: var(--border-cyan); }
.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--bg-3);
  border: 2px solid var(--border-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-avatar svg { width:32px; height:32px; color: var(--cyan); }
.team-name { font-family: var(--font-display); font-size: 14px; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--cyan); margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ─────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.contact-form-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.contact-sidebar-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-sidebar-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-info-items { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 12px; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width:16px; height:16px; color: var(--cyan); }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.contact-info-val { font-size: 14px; color: var(--text); }

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover,
.faq-item[open] { border-color: var(--border-cyan); }
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  transition: color .2s;
}
.faq-item[open] summary { color: var(--cyan); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.faq-item[open] .faq-toggle { background: var(--cyan); border-color: var(--cyan); }
.faq-toggle-icon {
  width: 12px;
  height: 12px;
  position: relative;
}
.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--text-2);
  border-radius: 2px;
}
.faq-toggle-icon::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.faq-toggle-icon::after  { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); transition: transform .2s, opacity .2s; }
.faq-item[open] .faq-toggle-icon::before,
.faq-item[open] .faq-toggle-icon::after { background: var(--bg); }
.faq-item[open] .faq-toggle-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   404 PAGE
   ───────────────────────────────────────── */
.not-found-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found-num {
  font-family: var(--font-mono);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .2;
}
.not-found-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.not-found-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 380px;
}
.not-found-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}
.page-btn:hover { border-color: var(--border-cyan); color: var(--cyan); }
.page-btn.active { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.page-btn svg { width:16px; height:16px; }

/* ─────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────── */
.al-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s, transform .55s;
}
.al-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   UTILITY
   ───────────────────────────────────────── */
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-2); }
.text-mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
}
.notification-bar {
  background: var(--cyan);
  color: var(--bg);
  text-align: center;
  padding: 9px 24px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .06em;
  font-weight: 600;
}
.notification-bar a { color: var(--bg); text-decoration: underline; }

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-ring-wrap { width: 340px; height: 340px; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .order-summary-box,
  .cart-summary-box { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .process-connector { display: none; }
  .process-step-num,
  .process-step-icon { margin: 0 0 12px 0; }
  .cta-banner { flex-direction: column; padding: 40px; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item { flex-basis: 50%; border-left: none !important; border-top: 1px solid var(--border); padding: 14px 20px; }
  .trust-bar-item:nth-child(1),
  .trust-bar-item:nth-child(2) { border-top: none; }
  .my-account-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Compliance gate — mobile scroll fix */
  #compliance-gate { align-items: flex-start; padding: 16px; }
  .gate-modal { padding: 28px 20px; }
  .gate-logo-img { height: 80px; }

  #site-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 850;
    border-top: 1px solid var(--border);
  }
  #site-nav.is-open { display: flex; }
  .nav-link { font-size: 18px; padding: 12px 16px; width: 100%; }
  #menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-cards-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row--3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-banner { padding: 28px 24px; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; }
}

/* ── WooCommerce Blocks: Quantity badge on order summary thumbnails ── */
.wc-block-components-order-summary-item__quantity,
.wc-block-cart-items__header-quantity,
[class*="order-summary"] [class*="quantity"],
[class*="order-summary"] [class*="badge"],
.wc-block-components-product-badge,
[class*="quantity-badge"] {
  background-color: var(--cyan) !important;
  color: #080a0e !important;
  font-weight: 800 !important;
  border: 2px solid #080a0e !important;
  border-radius: 50% !important;
}

/* ── WooCommerce: Single Product Add to Cart Form ── */
.al-atc-wrap { margin-bottom: 24px; }

form.cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form.cart .quantity {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  width: fit-content;
}

form.cart input.qty {
  width: 64px;
  height: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  outline: none;
  padding: 0 8px;
}

form.cart input.qty::-webkit-inner-spin-button,
form.cart input.qty::-webkit-outer-spin-button { opacity: 0; }

/* WooCommerce Add to Cart button → matches .btn--primary */
form.cart .single_add_to_cart_button,
form.cart button.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 34px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  background: var(--cyan);
  color: var(--bg);
  transition: all .2s;
}

form.cart .single_add_to_cart_button:hover,
form.cart button.button:hover {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 0 28px var(--cyan-glow);
  transform: translateY(-1px);
}

form.cart .single_add_to_cart_button.loading { opacity: .6; pointer-events: none; }

/* Buy Now ghost button */
.al-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 34px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  margin-top: 10px;
  box-sizing: border-box;
}
.al-buy-now:hover {
  border-color: var(--border-cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}

/* Product image column fills grid row height */
.product-image-col { min-height: 400px; }
.product-single-img { width: 100%; height: 100%; object-fit: cover; display: block; }
