/* =========================================================
   Limitless Peptides - Approved Redesign
   Botanical luxury research aesthetic
   ========================================================= */

:root {
  --bg:            #07120d;
  --bg-2:          #0b1912;
  --bg-3:          #10261b;
  --surface:       #102017;
  --surface-2:     #162b20;
  --border:        #274436;
  --border-2:      #3e604d;
  --text:          #f6f0df;
  --text-dim:      #cfc2a3;
  --text-mute:     #91866d;
  --teal:          #d8b878;
  --cyan:          #8fe0bc;
  --teal-soft:     rgba(216, 184, 120, 0.14);
  --teal-glow:     rgba(216, 184, 120, 0.36);
  --accent-grad:   linear-gradient(135deg, #ecd6a0 0%, #c9a86a 54%, #8fe0bc 100%);
  --danger:        #ff5d6c;
  --radius:        14px;
  --radius-lg:     22px;
  --shadow:        0 18px 50px -20px rgba(0,0,0,0.8);
  --shadow-glow:   0 0 0 1px var(--border-2), 0 20px 60px -25px var(--teal-glow);
  --max:           1240px;
  --header-h:      74px;
  --font:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display:       'Fraunces', Georgia, serif;
  --mono:          'JetBrains Mono', Consolas, monospace;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

.owner-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(39, 117, 83, 0.22), transparent 38%),
    var(--ink, #07140e);
}

.owner-login[hidden],
.owner-app[hidden] {
  display: none !important;
}

.owner-login-card {
  width: min(440px, 100%);
  padding: 36px;
  border: 1px solid rgba(211, 181, 111, 0.24);
  border-radius: 20px;
  background: rgba(10, 31, 22, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.owner-login-card .logo-mark {
  margin-bottom: 24px;
}

.owner-login-card h1 {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
}

.owner-login-card > p:not(.eyebrow):not(.checkout-error) {
  margin-bottom: 24px;
  color: var(--muted);
}

.owner-login-card .btn {
  width: 100%;
  margin-top: 16px;
}

.owner-sync-note .btn {
  width: 100%;
  margin-top: 12px;
}

.owner-orders-panel {
  margin-top: 28px;
}

.owner-orders {
  display: grid;
  gap: 14px;
}

.owner-order {
  padding: 18px;
  border: 1px solid rgba(205, 181, 126, 0.15);
  border-radius: 14px;
  background: rgba(3, 20, 13, 0.42);
}

.owner-order > header,
.owner-order-grid,
.owner-order-items > div,
.owner-top-pages > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.owner-order > header div,
.owner-order-grid > div {
  display: grid;
  gap: 4px;
}

.owner-order > header span,
.owner-order-grid span,
.owner-order-grid small {
  color: var(--muted);
  font-size: 0.78rem;
}

.owner-order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.owner-order details {
  border-top: 1px solid rgba(205, 181, 126, 0.12);
  padding-top: 14px;
}

.owner-order summary {
  cursor: pointer;
  color: var(--gold-light);
  font-weight: 700;
}

.owner-order-items {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.owner-order-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.owner-order-controls .full {
  grid-column: 1 / -1;
}

.owner-order-controls textarea {
  min-height: 90px;
  resize: vertical;
}

.owner-top-pages {
  margin-top: 20px;
}

.owner-top-pages h3 {
  margin-bottom: 12px;
}

.owner-top-pages > div {
  padding: 9px 0;
  border-bottom: 1px solid rgba(205, 181, 126, 0.1);
}

@media (max-width: 760px) {
  .owner-order-grid,
  .owner-order-controls {
    grid-template-columns: 1fr;
  }
}

.checkout-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(224, 100, 100, 0.45);
  border-radius: 10px;
  background: rgba(120, 28, 28, 0.22);
  color: #ffd0d0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(216,184,120,0.14), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(143,224,188,0.10), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(42,99,70,0.18), transparent 52%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; font-weight: 700; letter-spacing: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { position: relative; z-index: 1; padding: 100px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-sub { color: var(--text-dim); font-size: 1.06rem; max-width: 640px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-grad);
  color: #03121a;
  box-shadow: 0 10px 30px -10px var(--teal-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -12px var(--teal-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal); box-shadow: 0 0 0 1px var(--teal-soft); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 60px;
  background: rgba(7, 18, 13, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(150deg, #203927, #0c1912);
  border: 1px solid #4f6c53;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800; font-size: 1.18rem; font-style: italic; letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 16px -8px rgba(0,0,0,0.8);
}
.logo-mark span {
  background: linear-gradient(180deg, #fff8e5 0%, #ecd6a0 55%, #b78f4a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-word { display: flex; flex-direction: column; line-height: 0.95; }
.logo-word b { font-weight: 800; font-size: 1.04rem; letter-spacing: 0; color: #fff8e8; }
.logo-word small { font-size: 0.6rem; font-weight: 700; letter-spacing: 0; color: var(--cyan); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; color: var(--text-dim); font-weight: 500; position: relative; transition: color 0.2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent-grad); transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  color: var(--text);
  cursor: pointer;
  transition: 0.2s var(--ease);
}
.cart-btn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--accent-grad); color: #03121a;
  font-size: 0.72rem; font-weight: 700;
  border-radius: 100px; display: grid; place-items: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.hamburger { display: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,8,15,0.97); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 1.5rem; font-weight: 600; padding: 12px 0; color: var(--text-dim); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 30% 40%, rgba(216,184,120,0.14), transparent 40%),
    linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 100px;
  background: var(--teal-soft); border: 1px solid var(--border-2);
  font-size: 0.82rem; font-weight: 500; color: var(--teal);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.04; margin-bottom: 24px; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.32rem); color: var(--text-dim); max-width: 560px; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat .num { font-size: 2rem; font-weight: 800; }
.hero-stat .label { font-size: 0.86rem; color: var(--text-mute); letter-spacing: 0; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: 0.3s var(--ease);
}
.trust-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-soft); display: grid; place-items: center;
  color: var(--teal); margin-bottom: 16px;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1.08rem; margin-bottom: 7px; }
.trust-card p { font-size: 0.9rem; color: var(--text-dim); }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: var(--shadow-glow);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--bg-3), var(--surface-2));
  display: grid; place-items: center;
  overflow: hidden;
}
.product-media .mol { width: 78%; height: 78%; opacity: 0.9; transition: transform 0.5s var(--ease); }
.product-card:hover .product-media .mol { transform: scale(1.08) rotate(4deg); }
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-cat-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(5,8,15,0.7); border: 1px solid var(--border-2); color: var(--teal);
  backdrop-filter: blur(6px);
}
.quickview {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%) translateY(20px);
  opacity: 0; pointer-events: none;
  background: rgba(5,8,15,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2); color: var(--text);
  padding: 9px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  transition: 0.3s var(--ease); white-space: nowrap;
}
.product-card:hover .quickview { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.quickview:hover { border-color: var(--teal); color: var(--teal); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-purity { font-size: 0.74rem; color: var(--teal); font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
.product-name { font-size: 1.14rem; margin-bottom: 8px; }
.product-name a { transition: color 0.2s; }
.product-name a:hover { color: var(--teal); }
.product-desc { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 18px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin: 0 0 16px;
}
.variant-row label,
.variant-field {
  display: grid;
  gap: 6px;
}
.variant-row label > span,
.variant-field > span {
  color: var(--text-mute);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.variant-row select,
.variant-field select {
  width: 100%;
  min-height: 40px;
  appearance: none;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238fe0bc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 36px 8px 12px;
  outline: none;
}
.variant-row select:focus,
.variant-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(143,224,188,0.12); }
.variant-row em,
.pdp-selector em {
  color: var(--teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}
.variant-row em.out,
.pdp-selector em.out { color: #ffb3ba; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-size: 1.32rem; font-weight: 800; }
.product-price .cur { font-size: 0.9rem; color: var(--text-mute); font-weight: 600; }
.price-tbd { display: inline-block; color: var(--text-dim); font-size: 0.84rem; line-height: 1.2; font-weight: 700; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-soft); border: 1px solid var(--border-2); color: var(--teal);
  font-weight: 600; font-size: 0.86rem; padding: 9px 15px; border-radius: 100px;
  cursor: pointer; transition: 0.25s var(--ease);
}
.add-btn:hover { background: var(--accent-grad); color: #03121a; border-color: transparent; transform: translateY(-2px); }
.add-btn:disabled,
.add-btn:disabled:hover {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  background: var(--surface-2);
  color: var(--text-mute);
  border-color: var(--border);
}
.add-btn svg { width: 15px; height: 15px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px; position: relative;
  transition: 0.3s var(--ease);
}
.step:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, var(--teal-soft), transparent 60%);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.newsletter p { color: var(--text-dim); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 100px;
  background: var(--bg); border: 1px solid var(--border-2); color: var(--text);
  font-family: var(--font); font-size: 0.96rem; outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--teal); }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.93rem; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { color: var(--text-mute); font-size: 0.85rem; }
.disclaimer-bar { background: rgba(255,93,108,0.06); border: 1px solid rgba(255,93,108,0.18); color: #ffb3ba; border-radius: 10px; padding: 12px 18px; font-size: 0.83rem; margin-bottom: 28px; text-align: center; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,4,8,0.6); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(420px, 92vw); max-width: 100vw;
  background: var(--bg-2); border-left: 1px solid var(--border-2);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(0,0,0,0.9);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 1.22rem; }
.cart-close { background: none; border: none; color: var(--text-dim); cursor: pointer; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; transition: 0.2s; }
.cart-close:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { text-align: center; color: var(--text-mute); padding: 60px 20px; }
.cart-empty svg { width: 54px; height: 54px; opacity: 0.3; margin: 0 auto 16px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-media { width: 64px; height: 64px; border-radius: 10px; background: linear-gradient(145deg, var(--bg-3), var(--surface-2)); display: grid; place-items: center; flex-shrink: 0; }
.cart-item-media svg { width: 70%; height: 70%; }
.cart-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.cart-item-meta { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 8px; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border-2); border-radius: 100px; overflow: hidden; }
.qty-control button { width: 26px; height: 26px; background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1rem; transition: 0.2s; }
.qty-control button:hover { color: var(--teal); background: rgba(255,255,255,0.04); }
.qty-control span { min-width: 28px; text-align: center; font-size: 0.86rem; font-weight: 600; }
.cart-item-right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.cart-item-price { font-weight: 700; font-size: 0.96rem; }
.cart-item-remove { background: none; border: none; color: var(--text-mute); cursor: pointer; font-size: 0.78rem; transition: 0.2s; }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 22px 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart-subtotal .label { color: var(--text-dim); }
.cart-subtotal .val { font-size: 1.4rem; font-weight: 800; }
.cart-note { font-size: 0.78rem; color: var(--text-mute); margin-bottom: 16px; }

/* ---------- Shop ---------- */
.shop-head { padding-top: calc(var(--header-h) + 60px); padding-bottom: 0; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 36px 0 32px; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 18px; border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-dim);
  cursor: pointer; transition: 0.25s var(--ease);
}
.filter-tab:hover { border-color: var(--border-2); color: var(--text); }
.filter-tab.active { background: var(--accent-grad); color: #03121a; border-color: transparent; font-weight: 600; }
.search-box { position: relative; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--text-mute); }
.search-box input {
  padding: 11px 16px 11px 40px; border-radius: 100px; width: 260px; max-width: 100%;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font); font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.search-box input:focus { border-color: var(--teal); }
.no-results { text-align: center; color: var(--text-mute); padding: 80px 20px; grid-column: 1 / -1; }

/* ---------- Product detail ---------- */
.pdp { padding-top: calc(var(--header-h) + 50px); }
.breadcrumb { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 8px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.pdp-media {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-3), var(--surface-2));
  border: 1px solid var(--border); display: grid; place-items: center; position: relative; overflow: hidden;
}
.pdp-media .mol { width: 70%; height: 70%; }
.pdp-media .glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, var(--teal-soft), transparent 70%); filter: blur(20px); }
.pdp-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.24));
}
.pdp-cat { color: var(--teal); font-size: 0.8rem; font-weight: 600; letter-spacing: 0; text-transform: uppercase; margin-bottom: 12px; }
.pdp h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.pdp-price { font-size: 2rem; font-weight: 800; margin-bottom: 24px; }
.pdp-price .price-tbd { font-size: 1.05rem; }
.pdp-desc { color: var(--text-dim); font-size: 1.02rem; margin-bottom: 28px; }
.spec-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }
.spec-row { display: flex; justify-content: space-between; padding: 13px 18px; font-size: 0.92rem; }
.spec-row:nth-child(odd) { background: var(--surface); }
.spec-row .k { color: var(--text-mute); }
.spec-row .v { font-weight: 600; }
.pdp-selector {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: end;
  gap: 14px;
  margin: -8px 0 18px;
}
.pdp-buy { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.pdp-buy .qty-control { border-radius: 100px; height: 50px; }
.pdp-buy .qty-control button { width: 44px; height: 48px; font-size: 1.2rem; }
.pdp-buy .qty-control span { min-width: 40px; font-size: 1rem; }
.pdp-disclaimer { font-size: 0.85rem; color: var(--text-mute); padding: 14px 18px; background: var(--surface); border-radius: 10px; border: 1px solid var(--border); }

/* ---------- About ---------- */
.page-hero { padding-top: calc(var(--header-h) + 90px); padding-bottom: 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.page-hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: 0.3s var(--ease); }
.value-card:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .trust-icon { margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 0.95rem; }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 20px; }
.prose h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-band .num { font-size: clamp(2rem,4vw,3rem); font-weight: 800; }
.stat-band .label { color: var(--text-mute); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--surface); transition: border-color 0.25s; }
.faq-item.open { border-color: var(--border-2); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: var(--font); font-size: 1.05rem; font-weight: 600; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s var(--ease); }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; }
.faq-q .icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-q .icon::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q .icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.98rem; }

/* ---------- Related / reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--surface-2); border: 1px solid var(--teal); color: var(--text);
  padding: 13px 22px; border-radius: 100px; font-size: 0.92rem; font-weight: 500;
  z-index: 300; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-glow); transition: transform 0.4s var(--ease); pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--teal); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .product-grid, .trust-grid, .about-grid, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-media { max-width: 420px; }
  .pdp-selector { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 720px) {
  .nav-links, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero-stats { gap: 28px; }
  .product-grid, .trust-grid, .about-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .search-box input { width: 100%; }
  .supplies-grid { grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  .calc-steps { grid-template-columns: 1fr; }
}

/* ---------- Coming soon ---------- */
.soon-pill {
  font-size: 0.78rem; font-weight: 600; color: var(--text-mute);
  border: 1px solid var(--border-2); border-radius: 100px; padding: 8px 14px;
}
.product-soon-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  background: rgba(106,141,255,0.18); border: 1px solid var(--border-2); color: var(--cyan);
  backdrop-filter: blur(6px);
}

/* ---------- Supplies & Resources ---------- */
.supplies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.supply-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: 0.3s var(--ease);
}
.supply-card.link { cursor: pointer; }
.supply-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.supply-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: var(--teal-soft); display: grid; place-items: center; color: var(--teal);
}
.supply-icon svg { width: 22px; height: 22px; }
.supply-body { flex: 1; min-width: 0; }
.supply-body h3 { font-size: 1.02rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.supply-body p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 12px; }
.supply-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--border-2); border-radius: 100px; padding: 2px 8px; }
.supply-link-cue { font-size: 0.84rem; font-weight: 600; color: var(--teal); }
.supply-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bulk-wrap { text-align: center; margin-top: 32px; }
.bulk-note {
  font-size: 0.95rem; color: var(--text-dim);
  background: var(--teal-soft); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 12px 22px; display: inline-flex; gap: 8px; align-items: center;
}

/* ---------- Dosing calculator ---------- */
.calc-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.calc-inputs { padding: 36px; border-right: 1px solid var(--border); }
.calc-output { padding: 36px; background: linear-gradient(160deg, var(--surface-2), var(--surface)); display: flex; flex-direction: column; justify-content: center; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0; }
.calc-input, .calc-select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border-2); color: var(--text);
  font-family: var(--font); font-size: 0.98rem; outline: none; transition: border-color 0.2s;
}
.calc-input:focus, .calc-select:focus { border-color: var(--teal); }
.calc-row { display: flex; gap: 12px; }
.calc-row .calc-field { flex: 1; }
.calc-result-main { text-align: center; margin-bottom: 26px; }
.calc-big { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; line-height: 1; }
.calc-big span { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.calc-sub { color: var(--text-dim); font-size: 0.92rem; margin-top: 8px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-grid > div { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.calc-grid .k { font-size: 0.74rem; color: var(--text-mute); letter-spacing: 0; }
.calc-grid .v { font-size: 1.12rem; font-weight: 700; }
.calc-hint { color: var(--text-mute); text-align: center; }
.calc-warn { margin-top: 18px; font-size: 0.86rem; color: #ffb3ba; background: rgba(255,93,108,0.08); border: 1px solid rgba(255,93,108,0.2); border-radius: 10px; padding: 12px 16px; }
.calc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }

/* ---------- Checkout ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.checkout-page { padding-top: calc(var(--header-h) + 72px); padding-bottom: 84px; min-height: 72vh; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr); gap: 28px; align-items: start; }
.checkout-panel, .checkout-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.checkout-panel .section-sub { margin-bottom: 30px; }
.checkout-form { display: grid; gap: 22px; }
.checkout-form.compact { margin-top: 24px; }
.checkout-fields { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.checkout-field { display: grid; gap: 8px; }
.checkout-field.full { grid-column: 1 / -1; }
.checkout-field span {
  font-size: 0.82rem; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0; text-transform: uppercase;
}
.check-ack {
  display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim);
  font-size: 0.9rem; line-height: 1.55; padding: 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
}
.check-ack input { margin-top: 4px; accent-color: var(--teal); }
.summary-block { margin-bottom: 26px; }
.summary-block h2 { font-size: 1.05rem; margin-bottom: 14px; }
.discount-code-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.discount-code-row .calc-input { min-width: 0; text-transform: uppercase; }
.discount-code-row .btn { padding-inline: 18px; }
.discount-code-message { min-height: 1.35em; margin-top: 9px; color: var(--text-mute); font-size: 0.82rem; line-height: 1.45; }
.discount-code-message.success { color: var(--cyan); }
.discount-code-message.error { color: #ffb3ba; }
.checkout-line {
  display: flex; justify-content: space-between; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.checkout-line:first-child { padding-top: 0; }
.checkout-line div { display: grid; gap: 4px; min-width: 0; }
.checkout-line strong { font-size: 0.94rem; }
.checkout-line span { color: var(--text-mute); font-size: 0.84rem; }
.checkout-line b { white-space: nowrap; }
.payment-methods { display: grid; gap: 10px; }
.payment-method {
  width: 100%; display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center;
  text-align: left; color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: 12px; padding: 13px;
  cursor: pointer; font-family: var(--font); transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.payment-method:hover, .payment-method.active { border-color: var(--teal); background: rgba(216,184,120,0.10); }
.payment-method.active { transform: translateY(-1px); }
.payment-method.disabled {
  cursor: not-allowed; opacity: 0.62; background: rgba(255,255,255,0.02);
}
.payment-method.disabled:hover {
  border-color: var(--border); background: rgba(255,255,255,0.02); transform: none;
}
.payment-method.disabled .payment-icon {
  color: var(--text-mute); background: rgba(255,255,255,0.06);
}
.payment-icon {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  color: var(--teal); background: var(--teal-soft); overflow: hidden;
}
.payment-logo {
  display: inline-flex; align-items: center; justify-content: center;
  max-width: 100%; min-width: 0; font-weight: 900; line-height: 1;
  letter-spacing: 0; white-space: nowrap; transform-origin: center;
}
.payment-logo-zelle {
  color: #6d1ed4; font-size: 0.76rem; font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.payment-logo-venmo {
  color: #008cff; font-size: 0.68rem; font-family: Arial, Helvetica, sans-serif;
}
.payment-logo-paypal {
  color: #0070ba; font-size: 0.65rem; font-style: italic; font-family: Arial, Helvetica, sans-serif;
}
.payment-logo-cashapp {
  gap: 3px; color: #00d632; font-size: 0.52rem; font-family: Arial, Helvetica, sans-serif;
}
.payment-logo-cashapp span {
  display: inline-grid; place-items: center; width: 14px; height: 14px;
  border-radius: 4px; color: #fff; background: #00d632; font-size: 0.68rem;
}
.payment-logo-crypto, .payment-logo-card, .payment-logo-generic {
  color: var(--teal); font-size: 0.58rem; font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.payment-method strong { display: block; font-size: 0.95rem; }
.payment-method small { display: block; color: var(--text-mute); margin-top: 3px; }
.payment-method em {
  font-style: normal; font-size: 0.72rem; font-weight: 800; color: var(--cyan);
  border: 1px solid var(--border-2); border-radius: 100px; padding: 5px 8px;
}
.checkout-totals {
  display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border);
}
.checkout-totals div, .order-meta div {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--text-dim); font-size: 0.92rem;
}
.checkout-totals b, .order-meta b { color: var(--text); overflow-wrap: anywhere; text-align: right; }
.checkout-totals .total { font-size: 1.15rem; color: var(--text); padding-top: 10px; border-top: 1px solid var(--border); }
.checkout-note { margin-top: 18px; color: var(--text-mute); font-size: 0.88rem; line-height: 1.55; }
.checkout-empty {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 28px; box-shadow: var(--shadow);
}
.checkout-empty h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 12px; }
.checkout-empty p { color: var(--text-dim); margin-bottom: 24px; }
.payment-instruction-card {
  display: grid; gap: 12px; background: var(--bg); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 20px;
}
.instruction-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.instruction-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.instruction-row span { color: var(--text-mute); font-size: 0.84rem; }
.instruction-row strong { overflow-wrap: anywhere; }
.copy-btn {
  border: 1px solid var(--border-2); background: var(--surface); color: var(--teal);
  border-radius: 8px; padding: 7px 10px; font: inherit; font-size: 0.8rem;
  font-weight: 700; cursor: pointer;
}
.payment-copy { color: var(--text-dim); line-height: 1.6; margin-top: 4px; }
.payment-action { margin-top: 8px; }
.zelle-qr-card {
  width: min(100%, 360px); margin: 8px auto 0; padding: 12px;
  background: #f7f7f7; border: 1px solid rgba(109, 30, 212, 0.22);
  border-radius: 18px; box-shadow: 0 18px 40px -28px rgba(0,0,0,0.8);
}
.zelle-qr-card img {
  display: block; width: 100%; height: auto; border-radius: 28px;
}
.zelle-qr-card figcaption {
  padding: 10px 8px 2px; color: #28183a; font-size: 0.88rem;
  line-height: 1.5; text-align: center;
}
.zelle-confirmation-fields {
  min-width: 0; margin: 0; padding: 20px; border: 1px solid var(--border-2);
  border-radius: 12px; background: var(--bg);
}
.zelle-confirmation-fields legend {
  padding: 0 8px; color: var(--text); font-size: 0.94rem; font-weight: 800;
}
.payment-verified { text-align: center; padding: 24px 0; }
.payment-verified h2 { font-size: 1.8rem; margin-bottom: 12px; }
.payment-verified p { color: var(--text-dim); margin: 0 auto 22px; max-width: 480px; }

@media (max-width: 980px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { order: -1; }
}
@media (max-width: 720px) {
  .checkout-page { padding-top: calc(var(--header-h) + 44px); padding-bottom: 56px; }
  .checkout-panel, .checkout-summary { padding: 22px; border-radius: var(--radius); }
  .checkout-fields { grid-template-columns: 1fr; }
  .instruction-row { grid-template-columns: 1fr; gap: 6px; }
  .copy-btn { width: 100%; }
}

/* ---------- Support / policy pages ---------- */
.support-page { padding-top: calc(var(--header-h) + 82px); padding-bottom: 90px; min-height: 72vh; }
.support-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 32px; align-items: start; }
.support-aside, .support-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.support-aside { padding: 26px; position: sticky; top: calc(var(--header-h) + 24px); }
.support-aside h2 { font-size: 1.05rem; margin-bottom: 14px; }
.support-aside a { display: block; color: var(--text-dim); padding: 9px 0; font-size: 0.94rem; }
.support-aside a:hover, .support-aside a.active { color: var(--teal); }
.support-panel { padding: 38px; }
.support-panel h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.support-panel h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.support-panel h3 { font-size: 1.02rem; margin: 22px 0 8px; }
.support-panel p, .support-panel li { color: var(--text-dim); }
.support-panel p { margin-bottom: 16px; }
.support-panel ul { display: grid; gap: 10px; margin: 14px 0 22px; padding-left: 18px; list-style: disc; }
.support-panel li::marker { color: var(--teal); }
.support-callout {
  background: var(--bg); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 18px 20px; margin: 24px 0;
}
.support-callout strong { color: var(--text); }
.policy-table { display: grid; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 22px 0; }
.policy-row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 14px 16px; }
.policy-row:nth-child(odd) { background: var(--bg); }
.policy-row span { color: var(--text-mute); font-size: 0.86rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.policy-row b { color: var(--text); font-weight: 600; }

@media (max-width: 860px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-aside { position: static; }
}

@media (max-width: 520px) {
  .support-panel, .support-aside { padding: 24px; }
  .policy-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Research-use entry gate ---------- */
.lp-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(216,184,120,0.18), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(143,224,188,0.12), transparent 30%),
    linear-gradient(145deg, #07120d 0%, #0b1912 54%, #030706 100%);
}
.lp-gate::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246,240,223,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,240,223,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}
.lp-gate-card {
  position: relative;
  width: min(100%, 560px);
  background: rgba(16, 32, 23, 0.94);
  border: 1px solid rgba(216,184,120,0.34);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 90px -36px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}
.lp-gate-mark {
  width: 54px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,184,120,0.42);
  border-radius: 12px;
  background: linear-gradient(145deg, #203927, #0c1912);
  color: var(--teal);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 22px;
}
.lp-gate-card h2 {
  font-size: clamp(1.9rem, 7vw, 3rem);
  margin-bottom: 12px;
}
.lp-gate-lead {
  color: var(--text-dim);
  margin-bottom: 24px;
}
.lp-gate-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.lp-gate-field span {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 700;
}
.lp-gate-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: #0b1912;
  color: var(--text);
  font: inherit;
  padding: 0 14px;
}
.lp-gate-check span {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}
.lp-gate-options {
  display: grid;
  gap: 10px;
}
.lp-gate-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: rgba(7, 18, 13, 0.5);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.lp-gate-check:hover,
.lp-gate-check:focus-within {
  border-color: rgba(216,184,120,0.58);
  background: rgba(22, 44, 31, 0.72);
}
.lp-gate-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #c9a86a;
}
.lp-gate-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}
.lp-gate-card .btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}
.lp-gate-error {
  min-height: 22px;
  margin-top: 12px;
  color: var(--danger);
  font-size: 0.88rem;
  text-align: center;
}

/* ---------- Final mobile safeguards ---------- */
@media (max-width: 720px) {
  .container,
  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 48px) 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .hero-cta,
  .product-foot,
  .pdp-buy,
  .supply-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta .btn,
  .product-foot .add-btn,
  .pdp-buy .btn,
  .supply-foot .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
  }

  .hero-stat .num {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }

  .hero-stat .label {
    font-size: 0.76rem;
  }

  .supplies-grid,
  .calc-card,
  .calc-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .calc-inputs,
  .calc-output {
    padding: 24px;
  }

  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .calc-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-drawer {
    width: 100vw;
  }

  .toast {
    width: calc(100vw - 32px);
    justify-content: center;
    text-align: center;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .container,
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo {
    gap: 9px;
  }

  .logo-word b {
    font-size: 0.9rem;
  }

  .logo-word small {
    font-size: 0.54rem;
  }

  .hero-badge {
    align-items: flex-start;
    border-radius: 14px;
    white-space: normal;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-tab,
  .bulk-note {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
  }

  .cart-header,
  .cart-items,
  .cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================================================
   Premium homepage polish pass
   ========================================================= */
:root {
  --bg:            #06100d;
  --bg-2:          #091814;
  --bg-3:          #10241d;
  --surface:       rgba(17, 34, 27, 0.82);
  --surface-2:     rgba(24, 49, 39, 0.78);
  --border:        rgba(214, 190, 132, 0.16);
  --border-2:      rgba(216, 184, 120, 0.34);
  --text:          #fff8e8;
  --text-dim:      #d9ccb0;
  --text-mute:     #9b9178;
  --teal:          #d8b878;
  --cyan:          #94e6c5;
  --teal-soft:     rgba(216, 184, 120, 0.12);
  --teal-glow:     rgba(216, 184, 120, 0.38);
  --accent-grad:   linear-gradient(135deg, #fff1bd 0%, #d8b878 48%, #94e6c5 100%);
  --shadow:        0 26px 80px -38px rgba(0,0,0,0.92);
  --shadow-glow:   0 0 0 1px rgba(216,184,120,0.28), 0 30px 88px -46px rgba(216,184,120,0.62);
}

body {
  background:
    linear-gradient(180deg, #06100d 0%, #091814 45%, #06100d 100%);
}

body::before {
  background:
    linear-gradient(115deg, rgba(216,184,120,0.11), transparent 34%),
    linear-gradient(245deg, rgba(148,230,197,0.10), transparent 36%),
    linear-gradient(rgba(246,240,223,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,240,223,0.02) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.72) 44%, transparent 100%);
}

.site-header {
  height: 82px;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(6, 16, 13, 0.78);
  box-shadow: 0 14px 40px -32px rgba(0,0,0,0.9);
}

.header-inner {
  max-width: 1320px;
}

.logo-mark,
.cart-btn,
.hamburger {
  border-radius: 10px;
}

.nav-links {
  gap: 34px;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
}

.btn-primary {
  color: #06100d;
  box-shadow: 0 14px 36px -18px rgba(216,184,120,0.85), inset 0 1px 0 rgba(255,255,255,0.42);
}

.btn-ghost {
  background: rgba(255,255,255,0.045);
  border-color: rgba(216,184,120,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 30px) 0 52px;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,16,13,0.96) 0%, rgba(6,16,13,0.72) 42%, rgba(6,16,13,0.30) 78%, rgba(6,16,13,0.72) 100%),
    linear-gradient(180deg, transparent 48%, var(--bg) 100%);
}

#hero-canvas {
  opacity: 0.56;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.85rem, 5.65vw, 5.55rem);
  line-height: 0.96;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero p {
  max-width: 610px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
  margin-bottom: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  max-width: 610px;
  border-top: 1px solid rgba(216,184,120,0.22);
  border-bottom: 1px solid rgba(216,184,120,0.14);
}

.hero-stat {
  padding: 16px 18px 15px 0;
}

.hero-stat + .hero-stat {
  padding-left: 18px;
  border-left: 1px solid rgba(216,184,120,0.14);
}

.hero-stat .num {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-family: var(--display);
  font-weight: 800;
}

.hero-stat .label {
  margin-top: 5px;
  color: var(--text-mute);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  --mx: 0;
  --my: 0;
  position: relative;
  min-height: clamp(430px, 58vh, 580px);
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px), 0);
  transition: transform 0.25s var(--ease);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  left: 5%;
  right: 2%;
  bottom: 9%;
  height: 34%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(216,184,120,0.15), transparent);
  filter: blur(28px);
  transform: perspective(520px) rotateX(62deg);
}

.hero-visual::after {
  inset: 7% 2% 15% 9%;
  border: 1px solid rgba(216,184,120,0.18);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.hero-orbit {
  position: absolute;
  inset: 13% 8% 18% 12%;
  border: 1px solid rgba(148,230,197,0.22);
  border-radius: 50%;
  transform: rotate(18deg);
  animation: heroOrbit 16s linear infinite;
}

.hero-vial {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
  border: 1px solid rgba(216,184,120,0.22);
  box-shadow: 0 34px 90px -38px rgba(0,0,0,0.98), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.hero-vial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.02);
}

.hero-vial-main {
  width: min(66%, 430px);
  aspect-ratio: 0.78;
  right: 10%;
  top: 7%;
  z-index: 3;
  transform: rotate(2deg) translate3d(calc(var(--mx) * -18px), calc(var(--my) * -18px), 0);
  animation: vialFloat 7s var(--ease) infinite;
}

.hero-vial-side {
  width: min(43%, 270px);
  aspect-ratio: 0.76;
  z-index: 2;
  opacity: 0.82;
}

.hero-vial-left {
  left: 3%;
  top: 28%;
  transform: rotate(-9deg) translate3d(calc(var(--mx) * 14px), calc(var(--my) * 10px), 0);
  animation: vialFloat 8s var(--ease) -1.8s infinite;
}

.hero-vial-right {
  right: 0;
  bottom: 4%;
  transform: rotate(8deg) translate3d(calc(var(--mx) * -8px), calc(var(--my) * 12px), 0);
  animation: vialFloat 7.5s var(--ease) -3s infinite;
}

.hero-quality-card {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 4;
  width: min(250px, 50%);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(216,184,120,0.28);
  background: rgba(6,16,13,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-quality-card span,
.hero-quality-card small {
  font-family: var(--mono);
}

.hero-quality-card span {
  display: block;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-quality-card strong {
  display: block;
  margin: 5px 0 7px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.hero-quality-card small {
  color: var(--text-dim);
  font-size: 0.72rem;
  line-height: 1.5;
}

.trust-section {
  margin-top: -32px;
  padding-top: 0;
}

.trust-grid {
  border: 1px solid rgba(216,184,120,0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(18px);
}

.trust-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-card + .trust-card {
  border-left: 1px solid rgba(216,184,120,0.12);
}

.trust-card:hover {
  background: rgba(255,255,255,0.035);
}

.trust-icon {
  border-radius: 10px;
  border: 1px solid rgba(216,184,120,0.18);
}

.featured-section {
  padding-top: 118px;
}

.section-head.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-action {
  margin-top: 48px;
  text-align: center;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 1;
}

.product-grid {
  gap: 26px;
}

.product-card {
  --rx: 0deg;
  --ry: 0deg;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(21,42,33,0.92), rgba(11,24,19,0.96));
  border-color: rgba(216,184,120,0.17);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  box-shadow: 0 16px 55px -40px rgba(0,0,0,0.98);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.10) 42%, transparent 56%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.35s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.product-card:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-8px);
}

.product-media {
  aspect-ratio: 1.52;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 44%),
    linear-gradient(145deg, #162d23, #07120d);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(216,184,120,0.13);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.product-img {
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,0.34));
}

.product-cat-tag,
.product-soon-tag,
.soon-pill,
.quickview {
  border-radius: 999px;
}

.product-body {
  padding: 24px;
}

.product-purity {
  font-family: var(--mono);
  color: var(--cyan);
}

.product-name {
  font-size: 1.28rem;
}

.product-desc {
  line-height: 1.6;
}

.variant-row select {
  min-height: 44px;
  border-radius: 8px;
}

.add-btn {
  border-radius: 999px;
  min-height: 40px;
  padding: 9px 16px;
}

.calculator-band {
  background:
    linear-gradient(90deg, rgba(216,184,120,0.06), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(216,184,120,0.14);
  border-bottom: 1px solid rgba(216,184,120,0.14);
}

.calculator-panel {
  text-align: left;
  border-radius: 14px;
  background:
    linear-gradient(130deg, rgba(24,49,39,0.98), rgba(8,18,14,0.98)),
    linear-gradient(90deg, rgba(216,184,120,0.12), transparent);
  box-shadow: var(--shadow);
}

.calculator-panel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.calculator-panel-inner > div {
  max-width: 580px;
}

.calculator-title {
  margin-bottom: 10px;
}

.calculator-copy {
  margin: 0;
}

.step {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17,34,27,0.72), rgba(11,24,19,0.74));
  border-color: rgba(216,184,120,0.14);
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  color: #06100d;
  background: var(--accent-grad);
  box-shadow: 0 18px 36px -24px rgba(216,184,120,0.9), inset 0 1px 0 rgba(255,255,255,0.45);
}

.step-icon svg {
  width: 29px;
  height: 29px;
}

.step-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  justify-content: flex-end;
}

.newsletter {
  border-radius: 14px;
}

.cart-drawer {
  background: rgba(9,24,20,0.97);
  backdrop-filter: blur(18px);
}

@keyframes heroOrbit {
  from { transform: rotate(18deg); }
  to { transform: rotate(378deg); }
}

@keyframes vialFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card:nth-child(odd) {
    border-left: 0;
  }

  .trust-card:nth-child(n + 3) {
    border-top: 1px solid rgba(216,184,120,0.12);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: var(--header-h);
  }

  .hero {
    padding: calc(var(--header-h) + 32px) 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.15rem);
    line-height: 0.98;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-stat,
  .hero-stat + .hero-stat {
    padding: 16px 0;
    border-left: 0;
  }

  .hero-stat + .hero-stat {
    border-top: 1px solid rgba(216,184,120,0.14);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-quality-card {
    left: 0;
    width: min(270px, 64%);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .trust-card + .trust-card,
  .trust-card:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(216,184,120,0.12);
  }

  .trust-card:first-child {
    border-top: 0;
  }

  .calculator-panel-inner {
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    min-height: 520px;
  }

  .hero-vial-main {
    width: 68%;
    right: 5%;
  }

  .hero-vial-side {
    width: 43%;
  }

  .hero-quality-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }

  .hero-quality-card {
    top: 340px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual,
  .hero-vial-main,
  .hero-vial-left,
  .hero-vial-right,
  .product-card {
    transform: none !important;
  }
}

/* =========================================================
   Premium commerce redesign pass
   ========================================================= */
:root {
  --bg: #03100d;
  --bg-2: #061713;
  --bg-3: #0a211a;
  --surface: rgba(10, 29, 23, 0.86);
  --surface-2: rgba(15, 42, 33, 0.82);
  --border: rgba(226, 191, 120, 0.16);
  --border-2: rgba(226, 191, 120, 0.34);
  --text: #fff8e8;
  --text-dim: #dfd2b7;
  --text-mute: #a99c80;
  --teal: #e2bf78;
  --cyan: #99e8c8;
  --accent-grad: linear-gradient(135deg, #fff0b8 0%, #e2bf78 48%, #99e8c8 100%);
  --shadow: 0 26px 90px -42px rgba(0, 0, 0, 0.95);
  --shadow-glow: 0 0 0 1px rgba(226, 191, 120, 0.28), 0 30px 92px -48px rgba(153, 232, 200, 0.4);
  --radius: 10px;
  --radius-lg: 14px;
}

body {
  background:
    linear-gradient(180deg, #03100d 0%, #071914 44%, #03100d 100%);
}

body::before {
  background:
    linear-gradient(110deg, rgba(226,191,120,0.09), transparent 36%),
    linear-gradient(245deg, rgba(153,232,200,0.09), transparent 38%),
    linear-gradient(rgba(255,248,232,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,248,232,0.018) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
}

.site-header {
  height: 76px;
}

.site-header.scrolled {
  height: 62px;
  background: rgba(3, 16, 13, 0.82);
  box-shadow: 0 18px 54px -38px rgba(0, 0, 0, 0.9);
}

.header-inner {
  max-width: 1360px;
}

.logo-mark {
  width: 42px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(150deg, #163225, #071713);
}

.logo-word b {
  font-size: 1rem;
}

.logo-word small {
  color: var(--cyan);
}

.nav-links {
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
}

.btn,
.cart-btn,
.hamburger,
.filter-tab,
.add-btn,
.quickview {
  border-radius: 999px;
}

.btn-primary,
.filter-tab.active {
  box-shadow: 0 16px 38px -20px rgba(226, 191, 120, 0.82), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.hero-commerce {
  min-height: 100svh;
  padding: calc(var(--header-h) + 36px) 0 64px;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,16,13,0.98) 0%, rgba(3,16,13,0.76) 42%, rgba(3,16,13,0.24) 78%, rgba(3,16,13,0.66) 100%),
    linear-gradient(180deg, transparent 54%, var(--bg) 100%);
}

.hero-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 58px;
}

.hero h1 {
  font-size: 80px;
  line-height: 0.95;
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.72;
}

.hero-cta {
  margin-top: 8px;
}

.hero-stats {
  margin-top: 36px;
  max-width: 650px;
  border-color: rgba(226, 191, 120, 0.18);
}

.hero-stat .num {
  font-size: 30px;
}

.hero-stat .label,
.product-purity,
.product-cat-tag,
.pdp-cat,
.step-kicker {
  letter-spacing: 0;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-dim);
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(226, 191, 120, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-height: 570px;
}

.hero-vial {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.42);
}

.hero-vial-main {
  width: min(64%, 420px);
  right: 10%;
  top: 5%;
}

.hero-vial-left {
  left: 0;
  top: 31%;
}

.hero-vial-right {
  right: 1%;
  bottom: 2%;
}

.hero-quality-card,
.hero-product-note {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(226, 191, 120, 0.28);
  border-radius: 12px;
  background: rgba(3, 16, 13, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-quality-card {
  left: 5%;
  bottom: 12%;
  width: 260px;
}

.hero-product-note {
  right: 4%;
  top: 12%;
  width: 210px;
  padding: 14px 16px;
}

.hero-product-note span,
.hero-product-note small {
  display: block;
  font-family: var(--mono);
}

.hero-product-note span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-note strong {
  display: block;
  margin: 5px 0 4px;
  font-size: 16px;
}

.hero-product-note small {
  color: var(--text-dim);
  font-size: 11px;
}

.trust-grid {
  border-radius: 12px;
}

.section-title {
  font-size: 58px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.26fr);
  gap: 42px;
  align-items: end;
}

.catalog-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(226, 191, 120, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.catalog-proof span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
}

.catalog-proof strong {
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.catalog-proof b {
  padding: 5px 9px;
  border: 1px solid rgba(226, 191, 120, 0.18);
  border-radius: 999px;
  background: rgba(226, 191, 120, 0.07);
  color: var(--text-mute);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-head {
  padding-top: calc(var(--header-h) + 70px);
}

.shop-toolbar {
  margin-top: 38px;
  padding: 14px;
  border: 1px solid rgba(226, 191, 120, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.filter-tab {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
}

.search-box input {
  min-height: 44px;
  width: 300px;
  border-radius: 999px;
  font-weight: 700;
}

.product-grid {
  gap: 28px;
}

.product-card {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(14, 37, 29, 0.96), rgba(5, 18, 14, 0.98));
  border-color: rgba(226, 191, 120, 0.18);
}

.product-media {
  aspect-ratio: 1.28;
  background:
    radial-gradient(circle at 50% 66%, rgba(226, 191, 120, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%),
    #020504;
}

.product-media::before {
  inset: 15%;
  border-color: rgba(153, 232, 200, 0.14);
}

.product-img {
  padding: 18px 18px 10px;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,0.46));
}

.product-cat-tag {
  top: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.quickview {
  bottom: 16px;
  background: rgba(255, 248, 232, 0.92);
  color: #03100d;
  border-color: transparent;
  font-weight: 800;
}

.product-body {
  padding: 22px;
}

.product-purity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.product-purity span:last-child {
  color: var(--text-mute);
  font-family: var(--font);
  font-size: 11px;
}

.product-name {
  font-size: 22px;
}

.product-desc {
  min-height: 48px;
  color: rgba(255, 248, 232, 0.76);
}

.variant-row {
  margin-bottom: 18px;
}

.variant-row select,
.variant-field select {
  min-height: 46px;
  border-radius: 8px;
  background-color: rgba(3, 16, 13, 0.82);
}

.variant-row em,
.pdp-selector em {
  color: var(--teal);
  font-family: var(--mono);
}

.product-price {
  font-size: 24px;
}

.add-btn {
  min-height: 42px;
  padding: 10px 16px;
  background: rgba(226, 191, 120, 0.16);
  color: #ffe7a5;
  font-weight: 800;
}

.add-btn:hover {
  color: #03100d;
}

.pdp {
  padding-top: calc(var(--header-h) + 64px);
}

.pdp-grid {
  grid-template-columns: minmax(460px, 0.94fr) minmax(420px, 1.06fr);
  gap: 58px;
  align-items: start;
}

.pdp-media {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 68%, rgba(226,191,120,0.12), transparent 36%),
    #020504;
  border-color: rgba(226, 191, 120, 0.2);
}

.pdp-product-img {
  padding: 24px;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,0.5));
}

.pdp-cat {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
}

.pdp h1 {
  font-size: 50px;
}

.pdp-price {
  font-size: 34px;
}

.pdp-desc {
  color: rgba(255, 248, 232, 0.78);
  line-height: 1.75;
}

.spec-table {
  border-radius: 12px;
  border-color: rgba(226, 191, 120, 0.18);
}

.spec-row {
  padding: 15px 18px;
}

.spec-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.035);
}

.pdp-purchase-card {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(226, 191, 120, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.pdp-buy {
  margin-bottom: 14px;
}

.pdp-buy .qty-control {
  height: 54px;
  background: rgba(3, 16, 13, 0.76);
}

.pdp-disclaimer {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 1160px) {
  .hero-content,
  .pdp-grid,
  .catalog-intro {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .pdp-media {
    position: relative;
    top: auto;
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-mark {
    width: 34px;
    height: 32px;
  }

  .logo-word b {
    font-size: 0.78rem;
  }

  .logo-word small {
    font-size: 0.5rem;
  }

  .cart-btn,
  .hamburger {
    width: 36px;
    height: 36px;
  }

  .hero-commerce {
    padding: 92px 0 50px;
  }

  .hero-content {
    gap: 30px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-cta .btn {
    min-height: 48px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-assurance span {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-vial-main {
    width: 70%;
    right: 2%;
    top: 4%;
  }

  .hero-vial-side {
    width: 42%;
  }

  .hero-product-note {
    right: 0;
    top: 0;
    width: 178px;
    padding: 12px;
  }

  .hero-quality-card {
    left: 0;
    bottom: 7%;
    width: min(245px, 72%);
  }

  .section-title {
    font-size: 40px;
  }

  .catalog-proof {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    padding: 12px;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .filter-tab {
    width: 100%;
  }

  .product-media {
    aspect-ratio: 1.1;
  }

  .product-purity {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pdp h1 {
    font-size: 38px;
  }

  .pdp-price {
    font-size: 28px;
  }

  .pdp-purchase-card {
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-product-note {
    position: relative;
    right: auto;
    top: 334px;
    width: 100%;
  }

  .hero-quality-card {
    display: none;
  }

  .filter-tabs {
    grid-template-columns: 1fr;
  }
}

/* ---------- Owner inventory dashboard ---------- */
.owner-app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background:
    linear-gradient(90deg, rgba(3, 10, 8, 0.88), transparent 36%),
    var(--bg);
}

.owner-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 22px;
  border-right: 1px solid rgba(226, 191, 120, 0.18);
  background: rgba(5, 14, 10, 0.82);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.owner-nav {
  display: grid;
  gap: 8px;
}

.owner-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-dim);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
}

.owner-nav a:hover,
.owner-nav a.active {
  color: var(--text);
  background: rgba(216, 184, 120, 0.1);
  border-color: rgba(216, 184, 120, 0.22);
}

.owner-sync-note {
  margin-top: auto;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(143, 224, 188, 0.22);
  background: rgba(143, 224, 188, 0.07);
  display: grid;
  gap: 6px;
}

.owner-sync-note strong {
  color: var(--cyan);
  font-size: 0.86rem;
}

.owner-sync-note span {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.5;
}

.owner-main {
  min-width: 0;
  padding: 34px;
  display: grid;
  gap: 22px;
}

.owner-main > *,
.owner-topbar,
.owner-toolbar,
.owner-panel,
.owner-grid {
  min-width: 0;
}

.owner-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.owner-topbar h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.owner-topbar p,
.owner-panel-head p,
.owner-backend-note p,
.owner-muted {
  color: var(--text-dim);
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.owner-import {
  position: relative;
  overflow: hidden;
}

.owner-import input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.owner-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.owner-metric,
.owner-panel {
  border: 1px solid rgba(226, 191, 120, 0.18);
  background: rgba(16, 32, 23, 0.78);
  border-radius: 12px;
  box-shadow: 0 18px 50px -32px rgba(0, 0, 0, 0.86);
}

.owner-metric {
  min-height: 108px;
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.owner-metric span {
  color: var(--text-mute);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.owner-metric strong {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.owner-metric.warn strong {
  color: #ffe0a1;
}

.owner-metric.danger strong {
  color: #ffb3ba;
}

.owner-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(226, 191, 120, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.owner-search input {
  width: min(320px, 100%);
}

.owner-tabs {
  justify-content: flex-end;
}

.owner-panel {
  padding: 22px;
}

.owner-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.owner-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.owner-table th,
.owner-table td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(226, 191, 120, 0.13);
  text-align: left;
  vertical-align: middle;
}

.owner-table th {
  color: var(--text-mute);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-table td {
  color: var(--text);
  font-size: 0.88rem;
}

.owner-table td strong,
.owner-table td span {
  display: block;
}

.owner-table td span {
  color: var(--text-mute);
  font-size: 0.74rem;
  margin-top: 2px;
}

.owner-number-input,
.owner-text-input,
.owner-field input,
.owner-field select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(226, 191, 120, 0.22);
  border-radius: 8px;
  background: rgba(3, 16, 13, 0.82);
  color: var(--text);
  font: 700 0.86rem var(--font);
  outline: none;
  padding: 8px 10px;
}

.owner-number-input {
  max-width: 86px;
  font-family: var(--mono);
}

.owner-number-input.small {
  max-width: 70px;
}

.owner-text-input.notes {
  min-width: 180px;
}

.owner-number-input:focus,
.owner-text-input:focus,
.owner-field input:focus,
.owner-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(216, 184, 120, 0.12);
}

.owner-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font: 800 0.72rem var(--mono);
}

.owner-status.ok {
  color: #a8ffd8;
  background: rgba(143, 224, 188, 0.11);
  border: 1px solid rgba(143, 224, 188, 0.22);
}

.owner-status.low {
  color: #ffe0a1;
  background: rgba(216, 184, 120, 0.12);
  border: 1px solid rgba(216, 184, 120, 0.28);
}

.owner-status.out {
  color: #ffb3ba;
  background: rgba(255, 93, 108, 0.1);
  border: 1px solid rgba(255, 93, 108, 0.24);
}

.owner-updated {
  white-space: nowrap;
}

.owner-empty {
  color: var(--text-mute);
  text-align: center;
  padding: 44px 12px;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 22px;
}

.owner-panel-head {
  margin-bottom: 18px;
}

.owner-panel-head h2,
.owner-backend-note h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.owner-adjust-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 14px;
}

.owner-field {
  display: grid;
  gap: 7px;
}

.owner-field.full {
  grid-column: 1 / -1;
}

.owner-field span {
  color: var(--text-mute);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-adjust-form .btn {
  grid-column: 1 / -1;
  justify-content: center;
}

.owner-activity {
  display: grid;
  gap: 10px;
}

.owner-activity-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(226, 191, 120, 0.13);
  border-radius: 10px;
  background: rgba(3, 16, 13, 0.38);
}

.owner-activity-row strong,
.owner-activity-row span {
  display: block;
}

.owner-activity-row strong {
  font-size: 0.9rem;
}

.owner-activity-row span {
  color: var(--text-mute);
  font-size: 0.78rem;
}

.owner-activity-row b {
  color: var(--cyan);
  font: 800 0.82rem var(--mono);
  white-space: nowrap;
}

.owner-backend-note {
  border-color: rgba(143, 224, 188, 0.18);
}

@media (max-width: 1120px) {
  .owner-app {
    grid-template-columns: 1fr;
  }

  .owner-sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .owner-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .owner-sync-note {
    width: 100%;
  }

  .owner-topbar,
  .owner-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .owner-actions,
  .owner-tabs {
    justify-content: flex-start;
  }

  .owner-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .owner-main {
    padding: 22px 14px 32px;
  }

  .owner-sidebar {
    padding: 18px 14px;
  }

  .owner-metrics,
  .owner-adjust-form {
    grid-template-columns: 1fr;
  }

  .owner-actions .btn,
  .owner-import {
    width: 100%;
    justify-content: center;
  }

  .owner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .owner-topbar p,
  .owner-backend-note p,
  .owner-panel-head p {
    overflow-wrap: anywhere;
  }
}
