/* ============================================================
   SOLITUDE LABS — Section Styles
   ============================================================ */

/* ─── ANNOUNCEMENT BAR ────────────────────────────────────── */

.announce {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.announce .marquee-item {
  color: var(--paper);
}

.announce .marquee-item::before {
  background: var(--gold);
}

/* ─── NAVIGATION ──────────────────────────────────────────── */

.nav {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  transition: box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  color: var(--ink);
}

.logo-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--mute);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: color var(--duration) var(--ease);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-slow) var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero-left {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 140px;
  color: rgba(168, 138, 77, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 28px 0 24px;
}

.hero-h1 span { display: block; }

.hero-p {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 24px;
}

.stat {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}

.stat-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--mute);
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-right {
  background: var(--paper-2);
  padding: 64px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
  border-left: 1px solid var(--line);
}

.hero-right-label {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mute);
  text-transform: uppercase;
}

/* ─── FEATURED PRODUCT CARD ───────────────────────────────── */

.featured {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
}

.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-name {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.featured-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--mute);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.featured-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.featured-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

.featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.price-big {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.price-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ─── MINI PRODUCT GRID ───────────────────────────────────── */

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}

.mini-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mini-cat {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--gold-deep); /* AA contrast on light surfaces */
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.mini-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.mini-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.5px;
}

/* ─── PRODUCT GRID (Main) ─────────────────────────────────── */

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.prod {
  background: var(--paper);
  padding: 0;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.prod:hover {
  background: var(--white);
}

.prod-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── Product image area ─── */
.prod-img {
  position: relative;
  min-height: 180px; /* fallback for engines without aspect-ratio */
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
}

.prod-img img.is-loaded { opacity: 1; }

/* Hexagon placeholder — shown when empty or image fails */
.prod-img-ph {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.35;
}

.has-img .prod-img-ph { display: none; }  /* hide placeholder while a real image is present */
.prod-img--empty img { display: none; }

/* ─── Badge pill (top-right) ─── */
.badge-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--gold);
  color: var(--ink);
}

.badge-pill.is-bestseller {
  background: var(--ink);
  color: var(--gold-bright);
  box-shadow: 0 2px 10px rgba(14, 14, 12, 0.25);
}

.badge-pill.is-limited {
  background: var(--red);
  color: var(--paper);
}

.badge-pill.is-new::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--gold);
  animation: pill-pulse 1.8s var(--ease) infinite;
  pointer-events: none;
}

@keyframes pill-pulse {
  0%   { opacity: 0.9; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.35); }
  100% { opacity: 0;   transform: scale(1.35); }
}

/* ─── Status flag (Coming Soon / Restocking) ─── */
.status-flag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 9px;
  margin-bottom: 12px;
}

.status-flag--coming_soon {
  background: rgba(168, 138, 77, 0.15);
  color: var(--gold-deep);
}

.status-flag--out_of_stock {
  background: rgba(138, 58, 58, 0.12);
  color: var(--red);
}

/* Muted treatment for unavailable products */
.prod--oos { opacity: 0.6; }
.prod--oos:hover { opacity: 0.85; }
.prod--soon .prod-img-ph { color: var(--gold-deep); }

/* ─── Empty / error state ─── */
.prod-grid--empty {
  grid-template-columns: 1fr;
  background: var(--paper);
  border: 1px dashed var(--line-2);
}

.prod-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod-empty .prod-img-ph {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 20px;
}

.prod-empty-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}

.prod-empty-body {
  color: var(--mute);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ─── Featured hero image ─── */
.featured-img {
  aspect-ratio: 16 / 9;
  margin: -36px -32px 24px;
  width: calc(100% + 64px);
  border-bottom: 1px solid var(--line);
}

.prod-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-deep); /* AA contrast on light surfaces */
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.prod-name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.prod-dose {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--mute);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.prod-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.prod-price {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.prod-psub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  margin-top: 3px;
}

.prod-arr {
  font-size: 18px;
  color: var(--ink);
  transition: all var(--duration) var(--ease);
}

.prod:hover .prod-arr {
  transform: translate(4px, -4px);
  color: var(--gold);
}

.prod-more {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  padding: 32px 28px;
}

.prod-more:hover {
  background: var(--gold-deep);
}

.prod-more-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.prod-more-t {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

/* ─── COA SECTION ─────────────────────────────────────────── */

.coa {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coa-points {
  margin: 32px 0;
}

.coa-point {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.coa-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  min-width: 32px;
}

.coa-point-content strong {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.coa-point-content span {
  color: var(--mute);
  font-size: 13px;
  line-height: 1.5;
}

.coa-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
}

.coa-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.coa-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--mute);
  text-transform: uppercase;
}

.coa-card-link {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
}

.batch {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.batch:last-child { border-bottom: none; }

.batch-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3px;
}

.batch-id {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--mute);
  letter-spacing: 1px;
}

.batch-pct {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 500;
}

/* ─── EDITORIAL ───────────────────────────────────────────── */

.editorial {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
}

.editorial .container {
  max-width: 1280px;
}

.ed-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.ed-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.ed-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ed-body {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--paper);
}

.ed-body em {
  font-style: italic;
  color: var(--gold);
}

.ed-sig {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mute-soft);
  margin-top: 32px;
  text-transform: uppercase;
}

/* ─── SHIPPING ────────────────────────────────────────────── */

.asia-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.asia-left {
  padding: 64px 56px;
  border-right: 1px solid var(--line);
}

.asia-pay {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--mute);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.asia-pay-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--line);
  gap: 1px;
}

.ship-cell {
  background: var(--paper);
  padding: 28px 24px;
  transition: background var(--duration) var(--ease);
}

.ship-cell:hover {
  background: var(--white);
}

.ship-flag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-deep); /* AA contrast on light surfaces */
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.ship-country {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}

.ship-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 1px;
}

.ship-method {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-q-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.faq-plus {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  transition: transform var(--duration-slow) var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease), padding var(--duration-slow) var(--ease);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 14px;
}

/* ─── CTA SECTION ─────────────────────────────────────────── */

.cta-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 280px;
  color: rgba(168, 138, 77, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-body {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.foot-logo-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 6px;
}

.foot-logo-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mute);
  margin-bottom: 24px;
}

.foot-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--paper);
  max-width: 280px;
}

.foot-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.foot-col a {
  display: block;
  font-size: 13px;
  color: rgba(250, 248, 243, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--duration) var(--ease);
}

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

.foot-tg {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.foot-newsletter-text {
  font-size: 12px;
  color: rgba(250, 248, 243, 0.6);
  margin: 14px 0 12px;
}

.foot-newsletter-form {
  display: flex;
  margin-top: 8px;
}

.foot-newsletter-form .input {
  border-radius: 0;
}

.foot-newsletter-form .btn-gold {
  padding: 0 18px;
  border-radius: 0;
  font-size: 10px;
}

.foot-bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250, 248, 243, 0.5);
  letter-spacing: 1px;
}

.foot-disc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250, 248, 243, 0.5);
  letter-spacing: 0.5px;
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  /* Nav */
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left, .hero-right {
    padding: 48px 24px;
  }
  .hero-right {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }
  .hero-mark {
    font-size: 80px;
    bottom: 24px;
    right: 24px;
  }

  /* Product grid */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod {
    min-height: 260px;
    /* padding stays 0 here — image is full-bleed; body padding is set on .prod-body */
  }

  /* COA */
  .coa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Editorial */
  .ed-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ed-body { font-size: 18px; }
  .editorial { padding: 64px 0; }

  /* Shipping */
  .asia-grid {
    grid-template-columns: 1fr;
  }
  .asia-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 40px 24px;
  }
  .ship-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-mark { font-size: 160px; }

  /* Footer */
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-disc {
    text-align: left;
  }

  /* Announce */
  .announce { font-size: 9px; padding: 7px 0; }
}

@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .ship-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCESSIBILITY · FOCUS · SKIP LINK
   ============================================================ */

/* Visible keyboard focus for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.prod:focus-visible,
.mini-card:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 16px;
  text-decoration: none;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: 12px; }

/* FAQ question is now a <button> — reset its appearance */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
/* Only hide pre-reveal when JS is present (the .js flag is set in <head>),
   so no-JS users always see content. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-toast);
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), background var(--duration) var(--ease);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

/* ============================================================
   LOADING SKELETON (product grid, before JS hydrates)
   ============================================================ */
/* Skeletons only show with JS (otherwise the noscript message stands alone) */
.prod-skeleton { display: none; }
.js .prod-skeleton {
  background: var(--paper);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.prod-skeleton .sk-img { aspect-ratio: 4 / 3; background: var(--paper-3); }
.prod-skeleton .sk-body { padding: 28px; flex: 1; }
.prod-skeleton .sk-line {
  height: 12px;
  background: linear-gradient(90deg, var(--paper-3) 25%, var(--line) 37%, var(--paper-3) 63%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.4s ease infinite;
  margin-bottom: 12px;
}
.prod-skeleton .sk-line.w60 { width: 60%; }
.prod-skeleton .sk-line.w40 { width: 40%; }
@keyframes sk-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .prod-skeleton .sk-line { animation: none; }
}

/* ============================================================
   PRODUCT CARD — MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .prod-body { padding: 24px 20px; }
  .featured-img { margin: -36px -32px 20px; }
}

/* ============================================================
   HOMEPAGE CARD — purity badge + "view details" microtext
   ============================================================ */
.prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  min-height: 18px;
}
.prod-purity {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--green);
}
.prod-purity::before { content: '✓ '; }
.prod-more-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--gold-deep);
  margin-left: auto;
}
.prod:hover .prod-more-link { color: var(--gold); }
.featured-name-link { text-decoration: none; color: inherit; display: block; }
.featured-img { display: block; }

/* ============================================================
   ROUTER PAGES (shared)
   ============================================================ */
.route-page.hidden, #home-view.hidden { display: none; }
.route-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.route-section.detail-top { padding-top: 40px; }
.detail-narrow { max-width: 860px; }
.breadcrumb {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--mute);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--duration) var(--ease);
}
.breadcrumb:hover { color: var(--gold-deep); }

/* ─── Product detail: two-column header ─── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.detail-gallery { position: sticky; top: 96px; }
.gal-wrap { position: relative; border: 1px solid var(--line); background: var(--paper-3); }
.gal-main {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: zoom-in;
}
.gal-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity var(--duration-slow) var(--ease); }
.gal-main img.is-loaded { opacity: 1; }
.gal-main .prod-img-ph { width: 80px; height: 80px; color: var(--gold); opacity: 0.35; }
.has-img .prod-img-ph { display: none; }
.gal-zoom {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(14,14,12,0.7); color: var(--paper); padding: 5px 9px;
}
.gal-main.prod-img--empty .gal-zoom { display: none; }
.gal-verified {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  background: var(--green-soft); color: var(--green); padding: 5px 10px;
}
.gal-thumbs { display: flex; gap: 8px; margin-top: 8px; }
.gal-thumb {
  width: 64px; height: 64px; border: 1px solid var(--line); background: var(--paper-3);
  padding: 0; overflow: hidden; cursor: pointer; transition: border-color var(--duration) var(--ease);
  position: relative;
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb.on, .gal-thumb:hover { border-color: var(--gold); }

/* ─── Product detail: info column ─── */
.detail-name { font-family: var(--font-display); font-size: clamp(36px, 5vw, 54px); line-height: 1; letter-spacing: -0.01em; margin: 8px 0 6px; overflow-wrap: anywhere; }
.detail-dose { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mute); }
.detail-statusrow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 18px 0; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--line-2);
}
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.status-pill.available { color: var(--green); } .status-pill.available::before { background: var(--green); }
.status-pill.coming_soon { color: var(--gold-deep); } .status-pill.coming_soon::before { background: var(--gold); }
.status-pill.out_of_stock { color: var(--red); } .status-pill.out_of_stock::before { background: var(--red); }
.detail-purity { font-family: var(--font-mono); font-size: 11px; color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; }
.detail-desc { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 28px; }

/* ─── Pricing tabs ─── */
.pricing { border: 1px solid var(--line); margin-bottom: 24px; }
.pricing-tabs { display: flex; border-bottom: 1px solid var(--line); }
.ptab {
  flex: 1; padding: 12px 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--mute); background: var(--paper-2);
  border-right: 1px solid var(--line); transition: all var(--duration) var(--ease);
}
.ptab:last-child { border-right: none; }
.ptab.on { background: var(--white); color: var(--ink); box-shadow: inset 0 2px 0 var(--gold); }
.pricing-body { padding: 24px; background: var(--white); }
.pricing-price { font-family: var(--font-display); font-size: 38px; line-height: 1; }
.pricing-note { font-family: var(--font-mono); font-size: 11px; color: var(--gold-deep); margin-top: 8px; min-height: 14px; }

/* ─── Quantity + CTAs ─── */
.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.qty-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--mute); }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line-2); }
.qty-btn { width: 40px; height: 40px; font-size: 18px; color: var(--ink); transition: background var(--duration) var(--ease); }
.qty-btn:hover { background: var(--paper-2); }
.qty-val { min-width: 40px; text-align: center; font-family: var(--font-mono); font-size: 15px; }
.detail-order { width: 100%; justify-content: center; margin-bottom: 10px; }
.detail-ask { width: 100%; justify-content: center; margin-bottom: 16px; }
.btn-ghost-link { background: none; border: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.5px; color: var(--gold-deep); padding: 4px 0; text-align: left; }
.btn-ghost-link:hover { color: var(--gold); }
.detail-trust { display: flex; flex-wrap: wrap; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); margin-top: 8px; }
.detail-trust span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }
.detail-microtrust { font-family: var(--font-mono); font-size: 10px; color: var(--mute); margin-top: 12px; display: flex; align-items: center; gap: 8px; line-height: 1.5; }
.mt-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: mt-pulse 2.4s var(--ease) infinite; }
@keyframes mt-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ─── Detail tabs ─── */
.dtabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.dtab-btn {
  padding: 14px 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--mute); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--duration) var(--ease);
}
.dtab-btn:hover { color: var(--ink); }
.dtab-btn.on { color: var(--ink); border-bottom-color: var(--gold); }
.dtab-panel { display: none; }
.dtab-panel.on { display: block; animation: fade-in 0.3s var(--ease); }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.dtab-lead { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }
.dtab-h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); margin: 28px 0 12px; }
.dtab-panel p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.benefit-list { list-style: none; margin: 0; padding: 0; }
.benefit-list li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.benefit-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.dtab-disclaim { font-family: var(--font-mono); font-size: 11px; color: var(--mute); border-left: 2px solid var(--line-2); padding-left: 14px; margin-top: 20px; }
.test-batch { border: 1px solid var(--line); padding: 24px; background: var(--paper-2); margin-bottom: 8px; }
.test-batch-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.test-batch-row:last-of-type { border-bottom: none; }
.test-batch-row .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--mute); }

/* ─── Related + final CTA ─── */
.related-section .related-grid { margin-top: 24px; }
.final-cta { border-bottom: none; }
.final-cta .cta-title { font-size: clamp(32px, 5vw, 56px); }

/* ─── Sticky mobile CTA ─── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-nav);
  display: none; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px; background: var(--white); border-top: 1px solid var(--line-2);
  box-shadow: 0 -4px 20px rgba(14,14,12,0.08);
  transform: translateY(100%); transition: transform var(--duration) var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-price { font-family: var(--font-display); font-size: 22px; }
.sticky-cta .btn { padding: 12px 22px; }

/* ─── Lightbox ─── */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(14,14,12,0.92); display: none; align-items: center; justify-content: center; padding: 32px; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 24px; color: var(--paper); }

/* ─── Inquiry bar ─── */
.inquiry-bar {
  position: fixed; right: 20px; bottom: 86px; z-index: var(--z-toast);
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--paper); padding: 12px 14px; box-shadow: var(--shadow-lg);
}
.inq-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.5px; }
.inq-clear { color: var(--mute-soft); font-size: 14px; }
.inq-clear:hover { color: var(--paper); }

/* ─── Test results page ─── */
.tr-sort { padding: 10px 12px; background: var(--white); border: 1px solid var(--line-2); color: var(--ink); font-family: var(--font-body); font-size: 13px; }
.tr-note { font-family: var(--font-mono); font-size: 11px; color: var(--mute); line-height: 1.6; margin-top: 20px; max-width: 620px; }
.batch-verify { font-family: var(--font-mono); font-size: 9px; color: var(--green); border-bottom: 1px solid var(--green); margin-left: 8px; }

/* ============================================================
   ROUTER PAGES — RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-gallery { position: static; }
  .route-section { padding: 48px 0; }
  .related-section .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; } /* mobile-only sticky CTA */
}
@media (max-width: 600px) {
  .related-section .related-grid { grid-template-columns: 1fr; }
  .dtabs { overflow-x: auto; }
  .dtab-btn { white-space: nowrap; }
  .inquiry-bar { left: 12px; right: 12px; bottom: 12px; justify-content: space-between; }
}

