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

:root {
  /* Helios palette — gold + black premium */
  --gold: #D4AF37;
  --gold-light: #E8C962;
  --gold-soft: #C9A43A;
  --gold-dark: #A88729;
  --gold-faint: rgba(212,175,55,.12);
  --gold-border: rgba(212,175,55,.25);

  --black: #050505;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --bg-4: #1f1f1f;
  --line: #2a2a2a;
  --line-strong: #353535;

  --text: #f4f1ea;
  --text-dim: #a8a39a;
  --text-faint: #6f6a62;
  --white: #ffffff;

  --green: #5fb47d;
  --red: #d96565;

  /* Legacy var aliases (keep HTML working without rewrites) */
  --blue: var(--gold);
  --blue-light: var(--gold-light);
  --blue-dark: var(--black);
  --grey-50: var(--bg-2);
  --grey-100: var(--bg-3);
  --grey-200: var(--line);
  --grey-300: var(--line-strong);
  --grey-400: var(--text-faint);
  --grey-500: var(--text-dim);
  --grey-600: var(--text-dim);
  --grey-700: var(--text);
  --grey-800: var(--text);

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --max-w: 1200px;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.6), 0 4px 12px rgba(0,0,0,.4);
  --shadow-gold: 0 0 24px rgba(212,175,55,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

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

::selection { background: var(--gold); color: var(--black); }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== DISCLAIMER BANNER ===== */
.ruo-banner {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-border);
}

/* ===== HEADER — FULL STRIP BANNER ===== */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 100;
  background-image:
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 140px;
  width: auto;
  display: block;
}

.logo-footer img { height: 80px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-link svg { color: var(--gold); }

.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -10px;
}

.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 24px; height: 24px; stroke: var(--gold); }

@media (max-width: 900px) {
  .header-inner { height: 110px; }
  .logo img { height: 90px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .header-inner { height: 90px; }
  .logo img { height: 72px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212,175,55,.04) 0%, transparent 50%),
    var(--bg);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 100% 60px;
  pointer-events: none;
  opacity: .5;
}

.hero-inner {
  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;
  background: var(--gold-faint);
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); font-weight: 700; }

/* Gold uppercase subtitle treatment */
.gold-subtitle, .hero-tagline-gold {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-vial-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgba(212,175,55,.1) 0%, transparent 70%),
    var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-faint);
  position: relative;
}

.hero-vial-placeholder::before,
.hero-vial-placeholder::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
}

.hero-vial-placeholder::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hero-vial-placeholder::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hero-vial-placeholder svg { width: 80px; height: 80px; opacity: .5; color: var(--gold); }
.hero-vial-placeholder span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

@media (max-width: 768px) {
  .hero { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 36px; }
  .hero-sub { margin: 0 auto 24px; }
  .hero-ctas { justify-content: center; }
  .hero-image { order: -1; }
  .hero-vial-placeholder { max-width: 280px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 16px 36px; font-size: 13px; }

.btn-success { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-success:hover { background: var(--gold-light); color: var(--black); }

.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #c54545; color: var(--white); }

.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.section-header p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg { width: 24px; height: 24px; color: var(--gold); }

.trust-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all .25s;
}

.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.product-card-image {
  background:
    radial-gradient(circle at center, rgba(212,175,55,.06) 0%, transparent 60%),
    var(--bg-3);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.product-card-image .ruo-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vial-placeholder {
  width: 120px;
  height: 180px;
  background: linear-gradient(180deg, #2a2620 0%, #1a1812 100%);
  border: 1px solid var(--gold-border);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vial-placeholder::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30%;
  right: 30%;
  height: 14px;
  background: var(--gold-dark);
  border-radius: 2px 2px 0 0;
}

.vial-placeholder span {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-card-body .subtitle {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-card-body .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-card-body .price-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.product-card-body .btn { width: 100%; justify-content: center; }

/* ===== BUNDLE CARD ===== */
.bundle-section { padding: 80px 0; }

.bundle-card {
  background:
    radial-gradient(circle at 0% 100%, rgba(212,175,55,.08) 0%, transparent 50%),
    var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.bundle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.bundle-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.bundle-card p {
  color: var(--text-dim);
  margin-bottom: 28px;
}

.bundle-includes {
  list-style: none;
  margin-bottom: 28px;
}

.bundle-includes li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.bundle-includes li:last-child { border-bottom: none; }

.bundle-includes li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.bundle-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.bundle-price-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.bundle-vials {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
}

@media (max-width: 768px) {
  .bundle-card { grid-template-columns: 1fr; padding: 32px; }
}

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 80px 0; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-image-main {
  background:
    radial-gradient(circle at center, rgba(212,175,55,.08) 0%, transparent 60%),
    var(--bg-2);
  border-radius: 4px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  border: 1px solid var(--line);
  position: relative;
}

.product-image-main .ruo-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.product-info .product-tagline {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.product-price-block {
  margin-bottom: 28px;
}

.product-price-block .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}

.product-price-block .price-note {
  font-size: 13px;
  color: var(--text-faint);
}

.size-selector {
  margin-bottom: 28px;
}

.size-selector label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.size-options {
  display: flex;
  gap: 12px;
}

.size-option {
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font);
}

.size-option:hover { border-color: var(--gold); color: var(--gold); }
.size-option.selected { border-color: var(--gold); background: var(--gold-faint); color: var(--gold); }

/* ===== PRODUCT OPTION CARDS (price tiers) ===== */
.option-stack { display: flex; flex-direction: column; gap: 12px; }

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-3);
  cursor: pointer;
  transition: all .2s;
  text-align: left;
  font-family: var(--font);
  position: relative;
}

.option-card:hover { border-color: var(--gold-border); background: var(--bg-2); }
.option-card.selected { border-color: var(--gold); background: var(--gold-faint); }

.option-card .opt-info { display: flex; flex-direction: column; gap: 4px; }
.option-card .opt-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .3px;
}
.option-card .opt-meta {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.option-card .opt-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.option-card .opt-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.option-card.selected::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--gold);
}

/* ===== PRODUCT GALLERY (real images) ===== */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-gallery-main {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4/5;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-grid {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.product-gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TRUST STRIP (product page) ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: 24px 0 28px;
  padding: 20px 22px;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.trust-strip-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== HOMEPAGE WHO WE ARE / COMPLIANCE ===== */
.story-section {
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.story-block .eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.story-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.story-block h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 16px;
}

.story-block p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-block ul {
  list-style: none;
  margin-top: 18px;
}

.story-block ul li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.story-block ul li:last-child { border-bottom: none; }

.story-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .trust-strip { grid-template-columns: 1fr; }
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-3);
}

.qty-control button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--bg-2);
  cursor: pointer;
  font-size: 18px;
  color: var(--gold);
  transition: background .2s;
}

.qty-control button:hover { background: var(--gold-faint); }

.qty-control input {
  width: 50px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

.add-to-cart-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.add-to-cart-row .btn { flex: 1; justify-content: center; }

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.specs-table th {
  color: var(--text-dim);
  font-weight: 500;
  width: 40%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.specs-table td {
  color: var(--text);
  font-weight: 600;
}

.coa-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 22px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coa-download:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-faint);
}

.coa-download svg { width: 16px; height: 16px; }

.product-disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--gold-faint);
  border-left: 2px solid var(--gold);
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-image-main { padding: 48px; min-height: 320px; }
}

/* ===== ABOUT / COMPLIANCE ===== */
.about-hero {
  background:
    radial-gradient(circle at 30% 50%, rgba(212,175,55,.1) 0%, transparent 60%),
    var(--black);
  color: var(--text);
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 8px;
  text-transform: uppercase;
}

.about-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

.about-hero p {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.compliance-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-2);
  transition: border-color .2s;
}

.compliance-card:hover { border-color: var(--gold-border); }

.compliance-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.compliance-card h3 svg { width: 22px; height: 22px; color: var(--gold); }

.compliance-card p, .compliance-card li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.compliance-card ul {
  list-style: none;
  margin-top: 14px;
}

.compliance-card ul li {
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.compliance-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: border-color .2s;
}

.faq-item:hover { border-color: var(--gold-border); }

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: color .2s;
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--gold);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ===== SHIPPING INFO ===== */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.shipping-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  background: var(--bg-2);
  transition: border-color .2s;
}

.shipping-card:hover { border-color: var(--gold-border); }

.shipping-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 18px; }

.shipping-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shipping-card p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  transition: all .2s;
  background: var(--bg-3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
}

.contact-info-card {
  padding: 36px;
  background: var(--bg-2);
  border-radius: 4px;
  border: 1px solid var(--line);
}

.contact-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: start;
}

.contact-detail svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-detail h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== CART ===== */
.cart-page { padding: 60px 0; min-height: 60vh; }

.cart-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty svg { width: 64px; height: 64px; color: var(--line-strong); margin-bottom: 20px; }

.cart-empty h2 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--text-dim);
  margin-bottom: 28px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-items { list-style: none; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--bg-2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.cart-item-image svg { color: var(--gold); }

.cart-item-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cart-item-info .variant {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  min-width: 70px;
  text-align: right;
}

.remove-item {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-faint);
  padding: 4px;
  transition: color .2s;
}

.remove-item:hover { color: var(--red); }
.remove-item svg { width: 18px; height: 18px; }

.cart-summary {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  position: sticky;
  top: 180px;
}

.cart-summary h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row span:first-child { color: var(--text-dim); }
.summary-row span:last-child { color: var(--text); font-weight: 600; }

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 800;
}

.summary-total span:first-child { color: var(--text); }
.summary-total span:last-child { color: var(--gold); }

.cart-summary .btn { width: 100%; justify-content: center; margin-top: 22px; }

.bank-details {
  margin-top: 22px;
  padding: 18px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 13px;
  display: none;
}

.bank-details.visible { display: block; }

.bank-details h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bank-details p {
  color: var(--text-dim);
  margin-bottom: 6px;
}

.bank-details .warning {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item-actions { grid-column: span 2; justify-content: flex-end; }
}

/* ===== CHECKOUT FORM ===== */
.checkout-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: none;
}

.checkout-section.visible { display: block; }

.checkout-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.checkout-section .form-group { margin-bottom: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.order-confirm {
  display: none;
  text-align: center;
  padding: 40px;
}

.order-confirm.visible { display: block; }

.order-confirm svg { width: 64px; height: 64px; color: var(--gold); margin-bottom: 18px; }

.order-confirm h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.order-confirm p {
  color: var(--text-dim);
  margin-bottom: 8px;
}

.order-confirm .bank-box {
  margin: 28px auto;
  max-width: 440px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  text-align: left;
}

.order-confirm .bank-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.order-confirm .bank-box p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--text-dim);
  padding: 72px 0 0;
  border-top: 1px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-faint);
}

.footer-disclaimer {
  text-align: center;
  padding: 16px 24px;
  background: var(--black);
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-top: 1px solid var(--gold-border);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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

.fade-in {
  animation: fadeIn .5s ease forwards;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(100px);
  opacity: 0;
  transition: all .3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg { width: 20px; height: 20px; color: var(--gold); }

/* Trustpilot placeholder */
.trustpilot-widget-placeholder {
  text-align: center;
  padding: 28px;
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
}
