/* ─────────────────────────────────────────────────────────────
   Eterna Nex · Premium Research Laboratory
   Cream-paper background · sharp ink · refined copper accent
   ───────────────────────────────────────────────────────────── */

/* CRITICAL — force the HTML5 hidden attribute to actually hide elements
   even when our class rules set `display: flex/grid/block`. Without this,
   modals like .enpay-overlay[hidden] stay rendered (just opacity:0) and
   silently swallow every click on the page underneath them. */
[hidden] { display: none !important; }

:root {
  --bg:        #f8f5ed;
  --bg-2:      #f1ebdc;
  --surface:   #ffffff;
  --surface-2: #fbf8f1;
  --border:    #e8e1cf;
  --border-2:  #d4c9ad;
  --ink:       #1c1814;
  --ink-2:     #3a3329;
  --text:      #1c1814;
  --text-2:    #4a4338;
  --muted:     #8a8170;
  --faint:     #c0b9a4;
  --accent:    #b87333;        /* refined copper */
  --accent-2:  #8b5a2b;
  --accent-soft: #f4e8d8;
  --olive:     #4a6741;        /* trust accent */
  --olive-soft:#e6ecd9;
  --phosphor:  #6b8e23;        /* data positive */
  --danger:    #b94a3b;
  --gold:      #c9a44d;        /* stars */

  --font-display: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'Menlo', monospace;

  --radius-sm: 2px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 24, 20, 0.04);
  --shadow:    0 4px 14px rgba(28, 24, 20, 0.06);
  --shadow-lg: 0 20px 50px rgba(28, 24, 20, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-weight: 800; }
h2 { font-size: clamp(32px, 4.2vw, 54px); font-weight: 750; letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; }

p { margin: 0 0 1em; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.82em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ───── Trust banner with big live counter ───── */
.trust-bar {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(184,115,51,0.2);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-bar > .container > span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.trust-bar svg { width: 14px; height: 14px; }

/* The prominent LIVE indicator — first item, bigger, brighter, pulsing */
.trust-bar-live {
  opacity: 1 !important;
  background: linear-gradient(135deg, rgba(184,115,51,0.18), rgba(212,162,97,0.08));
  border: 1px solid rgba(212,162,97,0.35);
  padding: 6px 14px 6px 12px !important;
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  letter-spacing: 0.1em !important;
}
.trust-bar-live strong {
  color: #ffd99a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-right: 4px;
}
.live-dot-big {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #6b8e23;
  box-shadow: 0 0 0 0 rgba(107,142,35,0.6), 0 0 10px rgba(107,142,35,0.8);
  animation: live-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(107,142,35,0.6), 0 0 10px rgba(107,142,35,0.8); }
  70%  { box-shadow: 0 0 0 10px rgba(107,142,35,0),   0 0 10px rgba(107,142,35,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(107,142,35,0),     0 0 10px rgba(107,142,35,0.8); }
}

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 237, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo svg { width: 30px; height: 30px; }
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name { font-weight: 400; letter-spacing: 0.02em; }
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 36px; justify-self: center; }
.nav a {
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.15s;
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: all 0.2s;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.lang-switch {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--muted);
  padding: 6px 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.lang-switch button.active { background: var(--ink); color: var(--bg); }
.cart-btn {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
}
.cart-btn:hover { background: var(--accent); border-color: var(--accent); color: white; }
.cart-btn .count {
  background: var(--accent);
  color: white;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  min-width: 18px;
  text-align: center;
}
.cart-btn:hover .count { background: white; color: var(--accent); }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: 110px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% 20%, rgba(184, 115, 51, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 90%, rgba(74, 103, 65, 0.06), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 0.96;
  margin: 0 0 32px;
  letter-spacing: -0.045em;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 60;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 350;
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
}
.hero p.lead {
  font-size: 20px;
  color: var(--text-2);
  margin: 0 0 36px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 7px 16px 7px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.review-avatars {
  display: inline-flex;
  width: 116px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(38, 32, 24, 0.12);
  background: #efe7da;
}
.review-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  display: block;
}
.hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.hero-rating .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 600;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 350;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 144;
  font-style: italic;
}
.hero-stat .num em { color: var(--accent); font-style: normal; }
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual-stamp {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  z-index: 2;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-visual-stamp.tl { top: 22px; left: 24px; }
.hero-visual-stamp.br { bottom: 22px; right: 24px; }

/* Floating live indicator badge */
.live-badge {
  position: absolute;
  bottom: 22px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  z-index: 2;
  box-shadow: var(--shadow);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 0 rgba(74, 103, 65, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 103, 65, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 103, 65, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 103, 65, 0); }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 115, 51, 0.25);
}
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-2);
}
.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-2);
  color: white;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 6px 0;
}
.btn-ghost:hover { color: var(--accent-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 13px; }

/* ───── Sections ───── */
.section {
  padding: 100px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head h2 { margin: 0 0 20px; }
.section-head p { color: var(--muted); margin: 0; font-size: 19px; line-height: 1.55; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ───── Features ───── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.feature .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}
.feature h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 400;
}
.feature p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.6; }
.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 28px;
}

/* ───── Product grid ───── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 32px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  position: relative;
  overflow: hidden;
}
.product-img svg { width: 100%; height: 100%; }
.real-product-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--bg-2);
}

.product-badge {
  position: absolute;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.product-badge.sku {
  left: 14px;
  background: rgba(28, 24, 20, 0.85);
  color: var(--bg);
}
.product-badge.bestseller {
  right: 14px;
  background: var(--accent);
  color: white;
}
.product-badge.new {
  right: 14px;
  background: var(--olive);
  color: white;
}
.product-badge.purity {
  right: 14px;
  top: auto;
  bottom: 14px;
  background: var(--surface);
  color: var(--olive);
  border: 1px solid var(--olive-soft);
}

.product-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.product-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
.product-sku-line {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.product-name {
  font-family: var(--font-display);
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-desc {
  color: var(--text-2);
  font-size: 14px;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
}
.product-price .currency {
  font-size: 14px;
  color: var(--muted);
  margin-right: 2px;
  font-family: var(--font-mono);
  font-style: normal;
}
.product-card .btn { padding: 10px 16px; font-size: 10px; }

.product-stock-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--olive);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.product-stock-line.low { color: var(--danger); }
.product-stock-line::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

/* ───── Product gallery (main image + thumbs) ───── */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-img-main {
  position: relative;
}
.product-img-main[data-view="cert"] {
  background: linear-gradient(180deg, #fcf9f1 0%, #f4ecd8 100%);
}
.product-img-main[data-view="cert"] .product-badge { display: none; }
.product-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-thumb {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.18s;
  position: relative;
}
.product-thumb:hover { border-color: var(--border-2); transform: translateY(-1px); }
.product-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.18);
}
.product-thumb > svg,
.product-thumb > .real-product-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  display: block;
  background: var(--bg-2);
  object-fit: contain;
}
.product-thumb .thumb-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.product-thumb.active .thumb-label {
  background: var(--accent-soft);
  color: var(--accent-2);
}

/* ───── Product detail ───── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 56px 0;
}
.product-detail .product-img {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.product-detail h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 350;
  font-style: italic;
  margin: 12px 0 14px;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.product-detail .price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 350;
  color: var(--ink);
  margin: 12px 0 4px;
  font-style: italic;
}
.product-detail .price-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.viewers-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius);
  margin: 20px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  font-weight: 600;
}
.viewers-bar .live-dot { background: var(--accent); }
.viewers-bar .live-dot { animation: pulse-copper 2s infinite; }
@keyframes pulse-copper {
  0% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(184, 115, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0); }
}

.stock-bar {
  margin: 18px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 600;
}
.stock-bar .bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-pill);
  margin-top: 8px;
  overflow: hidden;
}
.stock-bar .fill {
  height: 100%;
  background: var(--olive);
  border-radius: var(--radius-pill);
  transition: width 0.5s;
}
.stock-bar.low .fill { background: var(--danger); }
.stock-bar .count { color: var(--ink); }

.buyer-confidence {
  margin: 22px 0 26px;
  padding: 18px;
  border: 1px solid rgba(74, 103, 65, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(230,236,217,0.72), rgba(251,248,241,0.92));
  box-shadow: 0 12px 28px rgba(38, 32, 24, 0.05);
}
.buyer-confidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.buyer-confidence-head strong {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}
.buyer-confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--olive);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.buyer-confidence-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 0 4px rgba(74, 103, 65, 0.13);
}
.buyer-confidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.buyer-confidence-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(226, 216, 199, 0.75);
  border-radius: 10px;
  background: rgba(255,255,255,0.56);
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.35;
}
.buyer-confidence-grid svg {
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 1px;
}
.buyer-confidence-grid b {
  display: block;
  color: var(--ink);
  font-size: 12.5px;
  margin-bottom: 2px;
}
.buyer-payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.buyer-payment-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.product-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-spec > div {
  padding: 18px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface);
}
.product-spec > div:nth-child(2n) { border-right: none; }
.product-spec > div:nth-last-child(-n+2) { border-bottom: none; }
.product-spec strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  font-weight: 700;
}
.product-spec .val { color: var(--ink); }
.product-spec .val.green { color: var(--phosphor); font-weight: 600; }

.qty-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-2);
  margin-right: 14px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty-input button {
  background: transparent;
  border: none;
  color: var(--ink);
  width: 42px;
  height: 48px;
  font-size: 18px;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: color 0.15s;
}
.qty-input button:hover { color: var(--accent); }
.qty-input input {
  width: 50px;
  border: none;
  background: transparent;
  color: var(--ink);
  text-align: center;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-buy-box {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.buy-box-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  color: var(--olive);
  font-size: 13px;
}
.buy-box-line span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.buy-box-line strong {
  text-align: right;
  color: var(--ink);
  font-weight: 800;
}
.buy-box-line.muted strong { color: var(--text-2); font-weight: 700; }
.buy-box-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.product-buy-box .btn {
  flex: 1 1 180px;
  justify-content: center;
}

/* Trust mini-row under add-to-cart */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-row .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-2);
  line-height: 1.4;
}
.trust-row .item svg { color: var(--olive); flex-shrink: 0; margin-top: 1px; }
.trust-row .item strong { display: block; color: var(--ink); font-weight: 700; font-size: 11px; }

/* CoA paper card */
.coa-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 32px 0;
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.coa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 12px, transparent 12px 24px);
}
.coa-card h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coa-card h3 span { font-weight: 500; font-size: 11px; color: var(--muted); }
.coa-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 7px 0;
  border-bottom: 1px dotted var(--border);
}
.coa-row:last-child { border: none; }
.coa-row b {
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.coa-row span { color: var(--ink); }
.coa-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.coa-foot .ok { color: var(--olive); }

/* ───── Reviews ───── */
.reviews-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.reviews-score {
  text-align: left;
}
.reviews-score .num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 350;
  line-height: 1;
  color: var(--ink);
  font-style: italic;
}
.reviews-score .num .max { color: var(--muted); font-size: 24px; font-style: normal; }
.reviews-score .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin: 8px 0; }
.reviews-score .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.reviews-bars { display: flex; flex-direction: column; gap: 8px; max-width: 380px; }
.reviews-bar-row {
  display: grid;
  grid-template-columns: 24px 1fr 36px;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.reviews-bar-row .bar {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.reviews-bar-row .fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius-pill);
}

.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}
.review-author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  font-style: italic;
  border: 1px solid var(--border-2);
}
.review-avatar-img {
  font-size: 0;
  background-image: url('../img/trust/review-headshots-v1.png');
  background-size: 400% 300%;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(38, 32, 24, 0.14);
}
.review-avatar-img.avatar-0 { background-position: 0% 0%; }
.review-avatar-img.avatar-1 { background-position: 33.333% 0%; }
.review-avatar-img.avatar-2 { background-position: 66.666% 0%; }
.review-avatar-img.avatar-3 { background-position: 100% 0%; }
.review-avatar-img.avatar-4 { background-position: 0% 50%; }
.review-avatar-img.avatar-5 { background-position: 33.333% 50%; }
.review-avatar-img.avatar-6 { background-position: 66.666% 50%; }
.review-avatar-img.avatar-7 { background-position: 100% 50%; }
.review-avatar-img.avatar-8 { background-position: 0% 100%; }
.review-avatar-img.avatar-9 { background-position: 33.333% 100%; }
.review-avatar-img.avatar-10 { background-position: 66.666% 100%; }
.review-avatar-img.avatar-11 { background-position: 100% 100%; }
.review-author-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--olive);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.review .stars { color: var(--gold); letter-spacing: 1.5px; font-size: 14px; margin-bottom: 10px; }
.review-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 8px;
}
.review-body { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin: 0; }
.review-batch {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

/* ───── Social proof live feed ───── */
.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px 14px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  font-family: var(--font-body);
}
.social-proof.show { transform: translateY(0); opacity: 1; }
.social-proof-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  flex-shrink: 0;
}
.social-proof-text { flex: 1; min-width: 0; }
.social-proof-text strong { display: block; color: var(--ink); font-size: 13px; font-weight: 500; }
.social-proof-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}
.social-proof-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  align-self: flex-start;
  margin: -2px -4px 0 0;
}

.aff-login-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(248,245,237,0.08);
  border: 1px solid rgba(248,245,237,0.18);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.aff-login-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ───── Cart ───── */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 48px 0 80px;
}
.cart-items {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 96px;
  height: 96px;
  background: var(--bg-2);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 4px;
}
.cart-item-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-mono);
  padding: 4px 8px;
}
.cart-item-remove:hover { color: var(--danger); }
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-sm);
}
.cart-summary h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-2);
}
.summary-row.total {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 22px;
}
.cart-empty {
  text-align: center;
  padding: 100px 24px;
  color: var(--muted);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-lg);
  margin: 32px 0;
  background: var(--surface);
}
.cart-empty p { font-size: 22px; font-family: var(--font-display); font-style: italic; color: var(--ink); }

/* ───── Cart conversion boosters ───── */
.cart-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--olive-soft);
  border: 1px solid rgba(74, 103, 65, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--olive);
  font-weight: 600;
}
.cart-live .live-dot { background: var(--olive); animation: pulse-green 2s infinite; }

.delivery-eta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  color: var(--ink);
}
.delivery-eta svg { color: var(--accent); flex-shrink: 0; }
.delivery-eta strong { display: block; font-size: 14px; line-height: 1.4; }
.delivery-eta .countdown {
  background: var(--ink);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.delivery-eta small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.cart-item-stock { margin-top: 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; }
.cart-item-stock .ok { color: var(--olive); }
.cart-item-stock .low { color: var(--danger); }

.order-bump {
  margin: 20px 0;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft), transparent 80%);
  transition: all 0.2s;
}
.order-bump:hover { background: linear-gradient(135deg, rgba(184,115,51,0.15), transparent 80%); }
.order-bump label { display: block; cursor: pointer; padding: 22px; }
.order-bump input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--accent);
  margin: 0;
  flex-shrink: 0;
}
.order-bump-content {
  display: grid;
  grid-template-columns: 22px 80px 1fr;
  gap: 18px;
  align-items: center;
}
.order-bump label input[type="checkbox"] { grid-column: 1; }
.order-bump-img {
  width: 80px; height: 80px;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.order-bump-text { line-height: 1.4; }
.order-bump-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.order-bump-text strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.order-bump-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
  line-height: 1.45;
}
.order-bump-price { display: inline-flex; align-items: baseline; gap: 8px; }
.order-bump-price .orig {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.order-bump-price .new {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
}

.related-row { margin: 32px 0 0; }
.related-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.related-img {
  aspect-ratio: 1;
  background: var(--bg-2);
  overflow: hidden;
}
.related-img svg { width: 100%; height: 100%; }
.related-body { padding: 12px 14px 14px; }
.related-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.related-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 10px;
  font-weight: 600;
}
.related-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.related-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.related-card .btn { padding: 6px 10px; font-size: 9px; }

/* Partner discount-code section in partner.html */
.p-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  background: rgba(184,115,51,0.08);
  border: 2px dashed rgba(212,162,97,0.4);
  border-radius: 12px;
  margin-bottom: 16px;
}
.p-code-display { display: flex; flex-direction: column; justify-content: center; }
.p-code-text {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  line-height: 1;
}
.p-code-meta {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(248,245,237,0.65);
  margin-top: 8px;
}
.p-code-copy {
  align-self: center;
  padding: 14px 22px !important;
  font-size: 12px !important;
}
.p-code-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(248,245,237,0.12);
}
.p-code-stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.p-code-stats strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
}
.p-code-stats span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.55);
  font-weight: 700;
}

/* Discount applied banner in cart */
.discount-active {
  background: var(--olive-soft);
  border: 1px solid rgba(74,103,65,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.discount-active strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--olive);
}
.discount-active small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--olive);
  margin-top: 3px;
  font-weight: 600;
}
.discount-remove-btn {
  background: transparent;
  border: none;
  color: var(--olive);
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
}
.discount-remove-btn:hover { background: rgba(74,103,65,0.15); }

.discount-row {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.discount-row input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.discount-row .btn-ghost {
  padding: 8px 14px;
  font-size: 10px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
}
.discount-row .btn-ghost:hover { background: var(--accent); color: white; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.3;
}
.trust-item svg { color: var(--olive); flex-shrink: 0; margin-top: 1px; }
.trust-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust-item small {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding-top: 12px;
}
.payment-strip > span:first-child {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-right: 4px;
}
.payment-strip .enpay-logo-pill,
.payment-strip .crypto-icon {
  font-size: 9px;
  padding: 3px 7px;
}

.green { color: var(--olive); font-weight: 700; }

@media (max-width: 760px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-grid > div:nth-child(3) { display: none; }
  .order-bump-content { grid-template-columns: 22px 60px 1fr; gap: 12px; }
  .order-bump-img { width: 60px; height: 60px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* free shipping bar */
.free-ship {
  background: var(--olive-soft);
  border: 1px solid rgba(74, 103, 65, 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--olive);
  font-weight: 600;
}
.free-ship .bar {
  margin-top: 8px;
  height: 4px;
  background: rgba(74, 103, 65, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.free-ship .fill { height: 100%; background: var(--olive); transition: width 0.5s; }
.free-ship.complete .fill { width: 100% !important; }

/* ───── Payment method cards ───── */
.pay-methods { display: flex; flex-direction: column; gap: 12px; }
.pay-method {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s;
  align-items: center;
}
.pay-method:hover { border-color: var(--border-2); }
.pay-method input[type="radio"] { accent-color: var(--accent); margin: 0; }
.pay-method.featured {
  border: 1.5px solid var(--accent);
  background: linear-gradient(135deg, rgba(184,115,51,0.06), rgba(184,115,51,0.01));
  position: relative;
  overflow: hidden;
}
.pay-method.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
}
.pay-method.checked { border-color: var(--accent); background: var(--accent-soft); }
.pay-method-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
}
.pay-method-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.4;
}
.pay-method-logos {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.crypto-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: white;
  letter-spacing: 0;
}
.crypto-icon.btc { background: #f7931a; }
.crypto-icon.eth { background: #627eea; }
.crypto-icon.usdc { background: #2775ca; }
.crypto-icon.usdt { background: #26a17b; }
.crypto-icon.sol { background: linear-gradient(135deg, #9945ff, #14f195); }
.pay-card-fields, .pay-payram-fields { display: none; }
.pay-card-fields.show, .pay-payram-fields.show { display: block; margin-top: 18px; }

.payram-panel {
  background: var(--bg-2);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  padding: 20px;
}
.payram-panel h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.payram-panel p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}
.payram-panel code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(28,24,20,0.08);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-2);
}
.payram-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  padding: 4px 10px 4px 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.payram-logo::before {
  content: '';
  width: 22px; height: 22px;
  background:
    radial-gradient(circle at 30% 30%, #b87333, #8b5a2b);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ───── Admin panel ───── */
.admin-body { background: var(--bg-2); }
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--ink) 0%, #2a2520 100%);
}
.admin-login-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.admin-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.admin-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
}
.admin-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.admin-nav-btn {
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s;
  position: relative;
}
.admin-nav-btn:hover { color: var(--ink); background: var(--bg-2); }
.admin-nav-btn.active { color: var(--accent); background: var(--accent-soft); }
.admin-badge {
  display: inline-block;
  background: var(--danger);
  color: white;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 9px;
  margin-left: 4px;
  font-weight: 700;
}

.admin-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.admin-tab { display: block; }
.admin-tab[hidden] { display: none; }

/* KPI cards */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.admin-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.admin-kpi-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.admin-kpi-value {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  font-weight: 350;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.admin-kpi-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.admin-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.admin-quick {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: inherit;
}
.admin-quick:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow); }
.admin-quick strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.admin-quick span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.admin-table thead { background: var(--bg-2); }
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--ink);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table input[type="number"],
.admin-table input[type="text"] {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}
.admin-table input:focus { outline: none; border-color: var(--accent); }
.admin-table tr.modified { background: rgba(184,115,51,0.06); }
.admin-table tr.modified::before {
  content: '●';
  position: absolute;
  color: var(--accent);
  margin-left: -10px;
  font-size: 14px;
}
.admin-save-state {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.admin-save-state.saved { color: var(--olive); }
.product-save {
  min-width: 62px;
  justify-content: center;
}

/* Affiliates */
.admin-affs { display: flex; flex-direction: column; gap: 16px; }
.admin-aff {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.admin-aff-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.admin-aff-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.admin-aff-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}
.admin-aff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.admin-aff-grid > div { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.admin-mini-l {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.admin-aff-msg {
  margin: 14px 0;
  padding: 12px 16px;
  background: var(--bg-2);
  border-left: 2px solid var(--border-2);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
}
.admin-aff-actions {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.admin-aff-actions .btn { padding: 9px 16px; font-size: 10px; }

.admin-status {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.admin-status-pending  { background: rgba(184,115,51,0.15); color: var(--accent-2); }
.admin-status-approved { background: var(--olive-soft); color: var(--olive); }
.admin-status-paused   { background: var(--bg-2); color: var(--muted); }
.admin-status-rejected { background: rgba(196,90,74,0.15); color: var(--danger); }
.admin-status-paid     { background: var(--olive-soft); color: var(--olive); }

/* Payouts */
.admin-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 24px 0 14px;
}
.admin-payout-info {
  background: var(--accent-soft);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--accent-2);
  white-space: pre-line;
}
.admin-payout-info strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.admin-payouts { display: flex; flex-direction: column; gap: 10px; }
.admin-payout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 24px;
  align-items: center;
}
.admin-payout-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.admin-payout-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.admin-payout-tx {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--olive);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.admin-payout-amt { text-align: right; }
.amt-eur {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
}
.amt-usdc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.admin-payout-actions { display: flex; gap: 8px; flex-direction: column; }
.admin-payout-actions .btn { padding: 9px 16px; font-size: 10px; }

/* Price intel table */
.admin-price-table { font-size: 13px; }
.admin-price-table .comp-price {
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: text;
  outline: none;
}
.admin-price-table .comp-price.cheaper { background: rgba(196,90,74,0.12); color: var(--danger); }
.admin-price-table .comp-price.more { background: var(--olive-soft); color: var(--olive); }
.admin-price-table .comp-price:focus { background: var(--bg-2); color: var(--ink); border: 1px solid var(--accent); }
.admin-price-table .cheapest {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: var(--olive);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
.comp-pos {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.comp-pos.good { background: var(--olive-soft); color: var(--olive); }
.comp-pos.mid { background: rgba(184,115,51,0.1); color: var(--accent-2); }
.comp-pos.bad { background: rgba(196,90,74,0.12); color: var(--danger); }

/* Settings cards */
.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 18px;
}
.admin-card.admin-danger { border-color: rgba(196,90,74,0.3); }
.admin-card code {
  font-family: var(--font-mono);
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent-2);
}

@media (max-width: 980px) {
  .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-quick-grid { grid-template-columns: 1fr; }
  .admin-aff-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-payout { grid-template-columns: 1fr; gap: 12px; }
  .admin-header-inner { flex-wrap: wrap; gap: 16px; padding: 12px 20px; }
  .admin-nav { order: 3; width: 100%; overflow-x: auto; }
  .admin-nav-btn { padding: 8px 10px; font-size: 10px; }
}

/* ───── Reconstitution calculator ───── */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
}
.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.calc-results {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}
.calc-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.calc-section-title:not(:first-of-type) {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.calc-field { margin-bottom: 0; }
.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-input-grp {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.calc-input-grp input {
  border: none !important;
  background: transparent !important;
  padding: 14px 16px !important;
  font-family: var(--font-mono) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
.calc-input-grp input:focus { outline: none; box-shadow: none !important; }
.calc-input-grp select,
.calc-input-grp .calc-unit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}
.calc-preset-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-right: 4px;
}
.calc-preset {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.calc-preset:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.calc-warn {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--accent-2);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-weight: 600;
}
.calc-warn.danger {
  color: var(--danger);
  background: rgba(196, 90, 74, 0.08);
  border-left-color: var(--danger);
}

.calc-big-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}
.calc-big {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.calc-big::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 300px 200px at 100% 100%, rgba(184,115,51,0.25), transparent 70%);
  pointer-events: none;
}
.calc-big-label, .calc-mini-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.55);
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
}
.calc-big-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 350;
  color: var(--accent);
  line-height: 1;
  position: relative;
}
.calc-big-value small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.5);
}
.calc-big-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(248,245,237,0.65);
  margin-top: 8px;
  font-weight: 600;
  position: relative;
}
.calc-big-side {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 12px;
  padding: 18px 22px;
}
.calc-big-side::before { display: none; }
.calc-big-side .calc-mini-label { color: var(--muted); }
.calc-mini-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.calc-mini-value small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.calc-syringe {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px 14px;
  margin-top: 6px;
}
.calc-syringe svg { display: block; }
.calc-syringe-cap {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

.calc-explainer {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-step {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-2);
  padding: 10px 14px;
  border-left: 2px solid var(--accent);
  background: rgba(184,115,51,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}

.calc-share {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.calc-disclaimer {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--bg-2);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 900px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-row-2 { grid-template-columns: 1fr; }
  .calc-big-row { grid-template-columns: 1fr; }
  .calc-share { grid-template-columns: 1fr; }
  .calc-big-value { font-size: 44px; }
}

/* ───── Eterna Nex Pay pitch (in checkout form) ───── */
.enpay-pitch {
  background: linear-gradient(135deg, var(--ink), #2a2520);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.enpay-pitch::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 200px at 100% 0%, rgba(184,115,51,0.25), transparent 60%);
  pointer-events: none;
}
.enpay-pitch-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.enpay-pitch-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.enpay-pitch-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(248,245,237,0.65);
  margin-top: 4px;
  font-weight: 500;
}
.enpay-pitch-logos {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex-wrap: wrap;
}
.enpay-logo-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(248,245,237,0.08);
  color: rgba(248,245,237,0.85);
  text-transform: uppercase;
}
.enpay-logo-pill.apple { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.enpay-logo-pill.visa { background: #1a1f71; color: #fff; }
.enpay-logo-pill.mc { background: #eb001b; color: #fff; }
.enpay-logo-pill.rev { background: #0075eb; color: #fff; }
.enpay-logo-pill.google { background: #fff; color: #444; }

/* ───── Eterna Nex Pay · friendly checkout (Stripe-style) ───── */
.enpay-friendly {
  background: var(--surface);
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
}
.enpay-side-light {
  background: var(--bg-2);
  color: var(--ink);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.enpay-side-light::before { display: none; }
.enpay-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.enpay-pay-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.enpay-pay-total-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.enpay-pay-total-v {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.enpay-pay-total-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.enpay-pay-summary-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 22px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.enpay-pay-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 4px;
}
.enpay-pay-line {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
}
.enpay-pay-img {
  width: 52px; height: 52px;
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.enpay-pay-qty {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 2px solid #fbf8f1;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 0 4px;
}
.enpay-pay-breakdown {
  margin-top: 16px;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enpay-pay-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--font-body);
}
.enpay-pay-bd-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-size: 13.5px;
}
.enpay-pay-bd-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 14px !important;
  color: var(--ink) !important;
  font-weight: 700;
}
.enpay-pay-bd-total span:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

/* All-in price chip per method tile — big & unmissable */
.enpay-tile-total {
  grid-column: 1 / 3;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.enpay-tile-total strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: -0.01em;
  line-height: 1;
}
.enpay-smart-tile.primary .enpay-tile-total {
  background: rgba(184,115,51,0.18);
  border-color: rgba(184,115,51,0.45);
  color: rgba(255,255,255,0.85);
}
.enpay-smart-tile.primary .enpay-tile-total strong { color: #fff; }
.enpay-smart-tile.primary .enpay-smart-body h3 { color: #fff !important; }
.enpay-smart-tile.primary .enpay-smart-body p { color: rgba(255,255,255,0.78) !important; }
.enpay-smart-tile.primary .enpay-rail-name { color: rgba(255,255,255,0.6); }
.enpay-tile-total-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.enpay-pay-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.enpay-pay-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}
.enpay-pay-amt {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}
.enpay-pay-trust {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-line {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-2);
}
.trust-line svg { color: var(--olive); flex-shrink: 0; }

/* Right side — payment buttons */
.enpay-main-light { padding: 32px 30px; max-height: 90vh; overflow-y: auto; }
.enpay-pay-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.enpay-pay-sub {
  color: var(--muted);
  font-size: 14px;
  margin: -10px 0 18px;
}

/* Apple Pay big black button */
.enpay-pay-apple {
  width: 100%;
  padding: 16px;
  background: #000;
  border: 1px solid #000;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}
.enpay-pay-apple:hover { opacity: 0.85; }

/* Google Pay button */
.enpay-pay-google {
  width: 100%;
  padding: 14px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  color: #3c4043;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.15s;
}
.enpay-pay-google:hover { background: #f8f9fa; box-shadow: 0 2px 4px rgba(0,0,0,0.15); }
.enpay-pay-google .gpay-logo { display: inline-flex; align-items: center; }

.enpay-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.enpay-divider::before, .enpay-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Tile buttons (card / Revolut / SEPA) */
.enpay-pay-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 10px;
  text-align: left;
  transition: all 0.18s;
}
.enpay-pay-tile:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28,24,20,0.08);
}
.enpay-pay-tile-l {
  display: flex;
  align-items: center;
  gap: 14px;
}
.enpay-pay-tile-l > svg {
  color: var(--ink);
  flex-shrink: 0;
}
.enpay-pay-tile strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.enpay-pay-tile small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.enpay-pay-tile-r {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
}
.enpay-card-logos {
  display: flex;
  gap: 4px;
  align-items: center;
}
.card-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Arial Black', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 3px 6px;
  border-radius: 3px;
}
.card-logo.visa { background: #1a1f71; color: white; letter-spacing: 0.05em; }
.card-logo.mc { background: white; border: 1px solid var(--border-2); padding: 3px 5px; }
.card-logo.amex { background: #2e77bb; color: white; letter-spacing: 0; }

.enpay-pay-crypto-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border: 1px dashed var(--border-2);
  border-radius: 8px;
  transition: all 0.15s;
}
.enpay-pay-crypto-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  border-style: solid;
}

.enpay-pay-foot {
  margin-top: 20px;
  padding: 12px 14px;
  background: var(--olive-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--olive);
  font-weight: 500;
}

/* Card form */
.enpay-card-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.enpay-card-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.enpay-card-row input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.enpay-card-row input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
}
.enpay-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.enpay-pay-cta {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
}
.enpay-pay-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(184,115,51,0.25); }
.enpay-pay-cta strong { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: 0; text-transform: none; margin-left: 8px; }

/* ───── Admin CRM tab ───── */
.crm-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.crm-list { display: flex; flex-direction: column; gap: 8px; max-height: 70vh; overflow-y: auto; padding-right: 4px; }
.crm-customer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.15s;
}
.crm-customer:hover { border-color: var(--accent); transform: translateY(-1px); }
.crm-customer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.crm-customer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.crm-customer-r { text-align: right; }
.crm-customer-stat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
.crm-customer-stat small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-left: 4px;
}
.crm-customer-date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.crm-mail-btn { padding: 8px 14px !important; font-size: 14px !important; }

.crm-composer { height: fit-content; position: sticky; top: 16px; }
.crm-composer select, .crm-composer input, .crm-composer textarea {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 8px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
}

/* ───── Partner portal assets ───── */
.p-assets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.p-asset { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.p-asset-preview { padding: 32px 20px; text-align: center; }
.p-asset-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.p-asset-meta .btn { padding: 7px 12px !important; font-size: 9.5px !important; }

/* ───── AI Chat widget ───── */
.ai-chat-bubble {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(184,115,51,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  animation: chat-pulse 3s infinite;
}
.ai-chat-bubble:hover { transform: scale(1.05); background: var(--accent); color: white; }
.ai-chat-bubble svg { width: 28px; height: 28px; }
.ai-chat-bubble-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(184,115,51,0.4); }
  50%      { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 12px rgba(184,115,51,0); }
}

.ai-chat-window {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 91;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(.2,.7,.2,1);
}
.ai-chat-window.show { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.ai-chat-head {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.ai-chat-head-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a261, #8b5a2b);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
}
.ai-chat-head-text { flex: 1; }
.ai-chat-head-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--bg);
}
.ai-chat-head-status {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(248,245,237,0.6);
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.ai-chat-head-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 8px var(--phosphor);
}
.ai-chat-lang {
  display: inline-flex;
  background: rgba(248,245,237,0.08);
  border: 1px solid rgba(248,245,237,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-right: 8px;
}
.ai-chat-lang button {
  background: transparent;
  border: none;
  color: rgba(248,245,237,0.5);
  padding: 5px 10px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ai-chat-lang button.active {
  background: var(--accent);
  color: #1c1814;
}

.ai-chat-close {
  background: transparent;
  border: none;
  color: rgba(248,245,237,0.6);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}
.ai-chat-close:hover { color: var(--bg); }

.ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-chat-msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: msg-in 0.3s cubic-bezier(.2,.7,.2,1);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } }
.ai-chat-msg.bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.ai-chat-msg.user {
  align-self: flex-end;
  background: var(--ink);
  color: var(--bg);
  border-bottom-right-radius: 4px;
}
.ai-chat-msg.typing {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 14px;
}
.ai-chat-msg.typing span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  margin: 0 2px;
  animation: typing 1.2s infinite;
}
.ai-chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: scale(1); opacity: 0.4; } 30% { transform: scale(1.4); opacity: 1; } }

.ai-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
  background: var(--bg-2);
}
.ai-chat-suggestion {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 600;
}
.ai-chat-suggestion:hover { background: var(--accent); color: white; border-color: var(--accent); }

.ai-chat-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  gap: 8px;
}
.ai-chat-input input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}
.ai-chat-input input:focus { outline: none; border-color: var(--accent); }
.ai-chat-input button {
  background: var(--ink);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ai-chat-input button:hover { background: var(--accent); color: white; }

/* ───── 24/7 Telegram support entry popup ───── */
.support-pop {
  position: fixed;
  right: 96px;
  bottom: 26px;
  z-index: 89;
  width: 390px;
  max-width: calc(100vw - 32px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(255,255,255,0.42)),
    var(--surface);
  border: 1px solid rgba(184,115,51,0.28);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(28,24,20,0.22);
  padding: 20px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.support-pop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.support-pop-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}
.support-pop-close:hover {
  color: var(--ink);
  border-color: var(--accent);
}
.support-pop-top {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 26px;
}
.support-pop-avatar {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.support-pop-avatar svg {
  width: 24px;
  height: 24px;
}
.support-pop-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 3px;
}
.support-pop h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: 0;
}
.support-pop p {
  margin: 14px 0 16px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
}
.support-pop-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.support-pop-primary,
.support-pop-secondary {
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.support-pop-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 0 18px;
}
.support-pop-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.support-pop-secondary {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 0 14px;
}
.support-pop-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}
.support-pop-foot {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 980px) {
  .crm-layout { grid-template-columns: 1fr; }
  .crm-composer { position: static; }
  .ai-chat-window { width: calc(100vw - 32px); right: 16px; bottom: 84px; height: 70vh; }
  .ai-chat-bubble { bottom: 16px; right: 16px; }
  .support-pop {
    left: 16px;
    right: 16px;
    bottom: 76px;
    width: auto;
    padding: 14px;
    border-radius: 14px;
  }
  .support-pop-top {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding-right: 24px;
  }
  .support-pop-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .support-pop h3 {
    font-size: 17px;
    line-height: 1.12;
  }
  .support-pop p {
    margin: 10px 0 12px;
    font-size: 12.5px;
    line-height: 1.42;
  }
  .support-pop-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .support-pop-primary,
  .support-pop-secondary {
    width: 100%;
    min-height: 39px;
    font-size: 10px;
  }
  .support-pop-foot {
    margin-top: 8px;
    font-size: 8.5px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .support-pop {
    left: 18px;
    right: 86px;
    bottom: 16px;
    padding: 10px 12px;
  }
  .support-pop-top {
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding-right: 24px;
  }
  .support-pop-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .support-pop-avatar svg {
    width: 19px;
    height: 19px;
  }
  .support-pop-kicker {
    font-size: 8.5px;
    margin-bottom: 1px;
  }
  .support-pop h3 {
    font-size: 14.5px;
    line-height: 1.05;
    max-width: 235px;
  }
  .support-pop p,
  .support-pop-secondary,
  .support-pop-foot {
    display: none;
  }
  .support-pop-actions {
    margin-top: 9px;
  }
  .support-pop-primary {
    min-height: 36px;
    font-size: 9.5px;
  }
}

/* ───── Admin Orders tab ───── */
.admin-orders { display: flex; flex-direction: column; gap: 10px; }
.admin-order {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr auto auto;
  gap: 20px;
  align-items: center;
}
.admin-order:hover { box-shadow: var(--shadow-sm); }
.admin-order-id {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.admin-order-customer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.admin-order-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}
.admin-order-items {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 4px;
}
.admin-order-amt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-align: right;
}
.admin-order-amt-pm {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}
.admin-order-actions { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.admin-order-actions .btn { padding: 8px 14px; font-size: 9.5px; white-space: nowrap; }
.order-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 4px;
}
.order-status-paid       { background: var(--accent-soft); color: var(--accent-2); }
.order-status-preparing  { background: rgba(106,155,204,0.15); color: #1a4d77; }
.order-status-shipped    { background: rgba(212,164,77,0.18); color: #7a5e1d; }
.order-status-delivered  { background: var(--olive-soft); color: var(--olive); }

.admin-order-events {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.admin-order-events .ev-dot { color: var(--olive); }
.admin-order-tracking {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--olive);
  margin-top: 6px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .admin-order { grid-template-columns: 1fr; gap: 12px; }
  .admin-order-amt { text-align: left; }
}

/* ───── Eterna Nex Pay overlay (original modal styles) ───── */
.enpay-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(12px) saturate(150%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.enpay-overlay.show { opacity: 1; }
.enpay-modal {
  width: 100%; max-width: 960px;
  background: var(--surface);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 60px 120px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  max-height: 90vh;
}
.enpay-overlay.show .enpay-modal { transform: translateY(0); }
.enpay-close {
  position: absolute; top: 20px; right: 20px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(28,24,20,0.06);
  border: none; border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.enpay-close:hover { background: rgba(28,24,20,0.12); }

/* Left summary panel */
.enpay-side {
  background: var(--ink);
  color: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.enpay-side::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 300px at 0% 100%, rgba(184, 115, 51, 0.25), transparent 60%);
  pointer-events: none;
}
.enpay-side > * { position: relative; z-index: 1; }
.enpay-brand {
  display: flex; align-items: center; gap: 14px;
}
.enpay-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.enpay-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.5);
  font-weight: 600;
  margin-top: 4px;
}
.enpay-amount {
  display: flex; flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(248,245,237,0.1);
  border-bottom: 1px solid rgba(248,245,237,0.1);
}
.enpay-amount-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.5);
  margin-bottom: 6px;
  font-weight: 600;
}
.enpay-amount-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 350;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.enpay-conv {
  background: rgba(248,245,237,0.04);
  border: 1px solid rgba(248,245,237,0.08);
  border-radius: 14px;
  padding: 22px;
}
.enpay-conv-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}
.enpay-conv-step { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.enpay-conv-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(248,245,237,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 18px;
  color: var(--accent);
  border: 1px solid rgba(248,245,237,0.1);
}
.enpay-conv-icon.usdc { background: #2775ca; color: white; border-color: #2775ca; font-weight: 700; font-style: normal; }
.enpay-conv-icon.wallet { background: linear-gradient(135deg, #b87333, #8b5a2b); color: white; border: none; }
.enpay-conv-arrow {
  color: rgba(248,245,237,0.3);
  font-size: 14px;
  font-family: var(--font-mono);
}
.enpay-conv-text { display: flex; flex-direction: column; }
.enpay-conv-amt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: 0.04em;
  word-break: break-all;
}
.enpay-conv-lbl {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,245,237,0.5);
  margin-top: 2px;
  font-weight: 600;
}
.enpay-conv-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(248,245,237,0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(248,245,237,0.55);
  font-weight: 500;
}
.enpay-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6b8e23;
  box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.5);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(107, 142, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0); }
}
.enpay-trust {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(248,245,237,0.1);
}
.enpay-trust > div {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(248,245,237,0.55);
  font-weight: 500;
}

/* Right method panel */
.enpay-main {
  padding: 48px 44px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  max-height: 90vh;
}
.enpay-main h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.enpay-sub {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 15px;
}
.enpay-methods {
  display: flex; flex-direction: column;
  gap: 10px;
}
.enpay-method {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: left;
}
.enpay-method:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(184,115,51,0.04), transparent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.enpay-method-icon {
  width: 44px; height: 44px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.enpay-method[data-pm="apple"] .enpay-method-icon { background: #000; color: #fff; }
.enpay-method[data-pm="google"] .enpay-method-icon { background: #fff; border: 1px solid var(--border); }
.enpay-method[data-pm="card"] .enpay-method-icon { background: linear-gradient(135deg, #1c1814, #4a4338); color: var(--accent); }
.enpay-method[data-pm="revolut"] .enpay-method-icon { background: #0075eb; color: #fff; }
.enpay-method[data-pm="sepa"] .enpay-method-icon { background: var(--olive); color: #fff; }

.enpay-method-text { display: flex; flex-direction: column; gap: 2px; }
.enpay-method-text strong { font-family: var(--font-display); font-size: 17px; font-weight: 500; font-style: italic; color: var(--ink); }
.enpay-method-text small { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.enpay-method-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Processing */
.enpay-processing {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.enpay-spinner {
  width: 56px; height: 56px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin-bottom: 28px;
  animation: spin 0.8s linear infinite;
}
.enpay-processing-title { font-family: var(--font-display); font-style: italic; font-size: 26px; margin: 0 0 8px; font-weight: 400; }
.enpay-processing-sub { color: var(--muted); margin: 0 0 32px; }
.enpay-progress {
  width: 100%; max-width: 340px;
  display: flex; flex-direction: column; gap: 12px;
}
.enpay-progress-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.enpay-progress-row .enpay-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--border-2);
  color: transparent;
  font-size: 0;
  flex-shrink: 0;
  position: relative;
}
.enpay-progress-row.done {
  background: var(--olive-soft);
  color: var(--olive);
}
.enpay-progress-row.done .enpay-check {
  background: var(--olive);
}
.enpay-progress-row.done .enpay-check::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* Success */
.enpay-success {
  padding: 24px 0;
  text-align: center;
}
.enpay-success-check {
  width: 80px; height: 80px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  animation: scale-in 0.4s cubic-bezier(.2,1.4,.4,1);
}
@keyframes scale-in {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.enpay-success h3 { font-family: var(--font-display); font-style: italic; font-size: 32px; margin: 0 0 8px; }
.enpay-success-p { color: var(--text-2); margin: 0 0 28px; font-size: 16px; }
.enpay-receipt {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.enpay-receipt > div {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.enpay-receipt strong { color: var(--ink); font-weight: 700; }

/* Order ID under amount */
.enpay-amount-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(248,245,237,0.45);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* Back button */
.enpay-back {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 12px 0;
  font-weight: 700;
}
.enpay-back:hover { color: var(--accent); }

/* Flow choice cards */
.enpay-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.enpay-flow {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.enpay-flow:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.enpay-flow-head { position: relative; }
.enpay-flow-tag {
  position: absolute;
  top: -6px; right: -6px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 4px 9px;
  border-radius: 999px;
}
.enpay-flow-tag.green { background: var(--olive); }
.enpay-flow-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.enpay-flow-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
  line-height: 1.5;
}
.enpay-flow-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.enpay-flow-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.enpay-flow-foot strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.enpay-flow-foot span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Crypto coin selector */
.enpay-coins {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enpay-coin {
  display: grid;
  grid-template-columns: 32px 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  text-align: left;
}
.enpay-coin:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.enpay-coin-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.enpay-coin-amt {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.enpay-coin-confs {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Live/Demo mode badge inside the side panel */
.enpay-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  width: max-content;
  border: 1px solid var(--border);
}
.enpay-mode-badge.live {
  background: rgba(74,103,65,0.08);
  color: var(--olive);
  border-color: rgba(74,103,65,0.25);
}
.enpay-mode-badge.demo {
  background: rgba(184,115,51,0.08);
  color: var(--accent-2);
  border-color: rgba(184,115,51,0.25);
}
.enpay-mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
  animation: enpay-pulse 1.6s ease-in-out infinite;
}
@keyframes enpay-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* SMART METHOD TILES — the new two-option method step */
.enpay-smart-tile {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  transition: all 0.18s;
  overflow: hidden;
}
.enpay-smart-tile.primary {
  background: linear-gradient(180deg, #1c1814 0%, #2a221c 100%);
  border-color: #2a221c;
  color: #f6efe1;
}
.enpay-smart-tile.primary .enpay-smart-body h3 { color: #f6efe1; }
.enpay-smart-tile.primary .enpay-smart-body p { color: rgba(246,239,225,0.65); }
.enpay-smart-tile.primary .enpay-smart-arrow { color: var(--accent); }
.enpay-smart-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.enpay-smart-tile.primary:hover { border-color: var(--accent); box-shadow: 0 10px 28px rgba(184,115,51,0.25); }
.enpay-smart-tile.secondary:hover { border-color: var(--accent); }

.enpay-smart-badge {
  position: static;
  grid-column: 1 / 3;
  justify-self: end;
  margin-bottom: 2px;
  padding: 3px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.enpay-smart-badge.soft {
  background: rgba(184,115,51,0.12);
  color: var(--accent-2);
  border: 1px solid rgba(184,115,51,0.25);
}
.enpay-smart-tile.primary .enpay-logo-pill {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.enpay-smart-badge.accent2 { background: var(--olive); }

.enpay-smart-prev {
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 8px;
  background: rgba(74,103,65,0.12);
  color: var(--olive);
  border: 1px solid rgba(74,103,65,0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  grid-column: 1 / 3;
}

.enpay-rail-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding-left: 2px;
}

.enpay-fallback-chip {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 12px 16px;
  background: transparent;
  border: 1px dashed var(--accent);
  color: var(--accent-2);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  animation: enpay-fade-in 0.3s ease;
}
.enpay-fallback-chip:hover {
  background: rgba(184,115,51,0.08);
  border-style: solid;
}

.enpay-provider-options {
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid rgba(184,115,51,0.18);
  border-radius: 12px;
  background: rgba(246,239,224,0.58);
}
.enpay-provider-options-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}
.enpay-provider-options-head strong {
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
}
.enpay-provider-options-head span {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.enpay-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.enpay-provider-alt {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.68);
  border-radius: 10px;
  min-height: 54px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.18s ease;
}
.enpay-provider-alt:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  background: #fff;
}
.enpay-provider-alt strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}
.enpay-provider-alt span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
.enpay-provider-alt.crypto {
  border-color: rgba(80,105,66,0.35);
  background: rgba(80,105,66,0.08);
}

.enpay-smart-icons {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.enpay-smart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.enpay-smart-icon.dark { background: #000; }

.enpay-smart-body { grid-column: 1; }
.enpay-smart-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 2px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.enpay-smart-body p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

.enpay-smart-arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* Recommended USDT coin pill in the crypto picker */
.enpay-coin.recommended {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(184,115,51,0.04) 0%, var(--surface) 50%);
  position: relative;
}
.enpay-coin-rec {
  position: absolute;
  top: -8px;
  right: 14px;
  padding: 3px 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}

/* PayGate handoff step */
.enpay-moonpay-steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enpay-moonpay-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
}
.enpay-mp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
}

.enpay-moonpay-waiting {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 16px 18px;
  background: rgba(74,103,65,0.06);
  border: 1px solid rgba(74,103,65,0.22);
  border-radius: 12px;
}
.enpay-mp-spin { width: 26px; height: 26px; border-width: 2.5px; flex-shrink: 0; }
.enpay-mp-wait-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--olive);
}
.enpay-mp-wait-sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}
.enpay-mp-elapsed {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--olive);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* "Don't own crypto yet?" fallback CTA */
.enpay-no-crypto {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  margin: 20px 0 8px;
  background: linear-gradient(180deg, #fbf8f1 0%, #f6f1e6 100%);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.18s;
  position: relative;
}
.enpay-no-crypto::after {
  content: '→';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.enpay-no-crypto:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184,115,51,0.12);
}
.enpay-no-crypto-l {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.enpay-no-crypto-l > svg { color: var(--ink); flex-shrink: 0; }
.enpay-no-crypto-l strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.enpay-no-crypto-l small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.enpay-no-crypto-r {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-right: 22px;
}

/* Hosted payment widget */
.enpay-onramp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin: 8px 0 22px;
}
.enpay-onramp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.enpay-onramp-row:last-child { border-bottom: none; }
.enpay-onramp-l {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.enpay-onramp-r {
  text-align: right;
}
.enpay-onramp-r strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.enpay-onramp-r small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 4px;
  font-weight: 700;
}
.enpay-onramp-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.enpay-onramp-rate { padding-top: 12px; }
.enpay-pay-h-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 18px 0 10px;
}
.enpay-onramp-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enpay-orm-tile {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto 18px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.16s;
}
.enpay-orm-tile:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.enpay-orm-icon {
  width: 50px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
}
.enpay-orm-icon-dark {
  background: #000;
  border-color: #000;
}
.enpay-orm-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.enpay-orm-pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  white-space: nowrap;
}
.enpay-orm-arrow {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.enpay-onramp-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enpay-onramp-powered {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.enpay-onramp-powered strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.enpay-onramp-providers {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.enpay-onramp-compliance {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.enpay-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  background: rgba(74,103,65,0.08);
  border: 1px solid rgba(74,103,65,0.2);
  border-radius: 999px;
}
.enpay-pill svg { color: var(--olive); }

/* Hosted payment redirect overlay */
.enpay-redirect {
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 28px;
  text-align: center;
  z-index: 5;
  animation: enpay-fade-in 0.18s ease;
}
.enpay-redirect h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin: 4px 0 0;
  color: var(--ink);
}
.enpay-redirect p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
}
.enpay-redirect-spin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(184,115,51,0.18);
  border-top-color: var(--accent);
  animation: enpay-spin 0.9s linear infinite;
}
.enpay-redirect-route {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.enpay-redirect-arrow { color: var(--accent); }
[data-step="onramp"] { position: relative; }
@keyframes enpay-spin { to { transform: rotate(360deg); } }
@keyframes enpay-fade-in { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

/* QR receive screen */
.enpay-receive {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  margin: 8px 0 24px;
  align-items: start;
}
.enpay-qr {
  width: 200px; height: 200px;
  background: white;
  padding: 10px;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enpay-qr svg { width: 100%; height: 100%; display: block; }
.enpay-receive-info { display: flex; flex-direction: column; gap: 16px; }
.enpay-field {
  display: flex; flex-direction: column; gap: 6px;
}
.enpay-field label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.enpay-field-val {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.enpay-field-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
}
.enpay-field-mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  word-break: break-all;
  background: var(--bg-2);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex: 1;
}
.enpay-field-row { display: flex; gap: 8px; align-items: stretch; }
.enpay-copy {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.enpay-copy:hover { background: var(--accent); }
.enpay-field-note {
  margin-top: 4px;
  padding: 12px 14px;
  background: rgba(196,90,74,0.08);
  border-left: 3px solid var(--danger);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--danger);
  line-height: 1.5;
  font-weight: 500;
}

/* Tracking screen */
.enpay-tracking { padding: 12px 0; }
.enpay-tracking-head {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 32px;
}
.enpay-tracking-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
.enpay-tracking-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 4px;
}
.enpay-tracking-sub {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.enpay-tracking-stages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.enpay-stage {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.enpay-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-soft);
  width: var(--conf-pct, 0);
  z-index: 0;
  transition: width 0.4s;
}
.enpay-stage > * { position: relative; z-index: 1; }
.enpay-stage-num {
  width: 24px; height: 24px;
  background: var(--border-2);
  color: var(--muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 11px;
}
.enpay-stage-label { font-weight: 600; color: var(--text-2); }
.enpay-stage-count { color: var(--accent); font-weight: 700; }
.enpay-stage-time { font-size: 11px; color: var(--muted); font-weight: 600; }
.enpay-stage.done {
  background: var(--olive-soft);
  color: var(--olive);
}
.enpay-stage.done .enpay-stage-num {
  background: var(--olive);
  color: white;
}
.enpay-stage.done .enpay-stage-label { color: var(--olive); }
.enpay-tx {
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.enpay-tx > div {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(248,245,237,0.6);
  letter-spacing: 0.06em;
}
.enpay-tx strong { color: var(--accent); font-weight: 700; }

.enpay-wide { max-width: 1080px; }

@media (max-width: 800px) {
  .enpay-modal { grid-template-columns: 1fr; max-height: 96vh; }
  .enpay-side { padding: 28px 24px; }
  .enpay-main { padding: 28px 24px; }
  .enpay-conv-row { grid-template-columns: 1fr; gap: 12px; }
  .enpay-conv-arrow { transform: rotate(90deg); }
  .enpay-flow-grid { grid-template-columns: 1fr; }
  .enpay-receive { grid-template-columns: 1fr; }
  .enpay-qr { margin: 0 auto; }
  .enpay-coin { grid-template-columns: 24px 1fr auto; }
  .enpay-coin-confs { grid-column: 2 / 4; font-size: 9px; }
}

/* Payram processing overlay */
.payram-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.payram-overlay-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  max-width: 520px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.payram-overlay-card .spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.payram-overlay-card h3 { font-style: italic; margin: 0 0 12px; font-size: 28px; }
.payram-overlay-card p { color: var(--text-2); margin: 0; }

/* ───── Forms ───── */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--ink);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding: 32px 0 64px;
}
.checkout-form, .checkout-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.checkout-form h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--accent);
}
.checkout-form h3:not(:first-child) {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.checkout-pay-minimal {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
}
.checkout-pay-minimal strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.checkout-pay-minimal small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.checkout-pay-minimal span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.checkout-pay-help {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.4;
}
.checkout-pay-help span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.checkout-mini-note {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.checkout-telegram-note,
.cart-telegram-note {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 122, 58, 0.28);
  border-radius: 8px;
  background: rgba(184, 122, 58, 0.07);
  color: var(--accent-2);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}
.checkout-telegram-note:hover,
.cart-telegram-note:hover {
  border-color: var(--accent);
  background: rgba(184, 122, 58, 0.12);
}

.checkout-trust {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-trust .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.06em;
}
.checkout-trust svg { color: var(--olive); flex-shrink: 0; }

/* ───── FAQ ───── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  margin-top: 4px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 0 28px;
  color: var(--text-2);
  font-size: 16px;
  max-width: 620px;
  line-height: 1.7;
}

/* ───── Legal ───── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 48px 0 80px; }
.legal-nav { position: sticky; top: 96px; height: fit-content; }
.legal-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  color: var(--muted);
  padding: 12px 18px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.15s;
}
.legal-nav button.active {
  border-left-color: var(--accent);
  color: var(--accent);
}
.legal-nav button:hover { color: var(--ink); }
.legal-content section { display: none; }
.legal-content section.active { display: block; }
.legal-content h2 { margin: 0 0 24px; font-style: italic; }
.legal-content h3 { margin: 32px 0 10px; font-size: 18px; }
.legal-content p, .legal-content li { color: var(--text-2); font-size: 15px; line-height: 1.75; }

/* ───── About / Lab page ───── */
.about-hero {
  padding: 120px 0 80px;
  position: relative;
}
.about-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  max-width: 900px;
  margin: 0 0 32px;
  letter-spacing: -0.035em;
}
.about-hero .lead {
  font-size: 21px;
  color: var(--text-2);
  max-width: 680px;
  line-height: 1.55;
}
.lab-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 6vw, 96px);
  padding: 86px 0;
  align-items: center;
}
.lab-grid:nth-child(even) > div:first-child { order: 2; }
.lab-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(28, 24, 20, 0.08);
}
.lab-photo svg { width: 100%; height: 100%; }
.lab-content h2 {
  font-style: normal;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 24px;
  max-width: 760px;
}
.lab-content p { color: var(--text-2); font-size: clamp(17px, 1.55vw, 22px); margin: 0 0 18px; line-height: 1.65; max-width: 760px; }

/* About hero stats */
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.about-hero-stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 350;
  color: var(--ink);
  line-height: 1;
  font-style: italic;
  margin-bottom: 6px;
}
.about-hero-stat .num em { color: var(--accent); font-style: normal; font-size: 26px; }
.about-hero-stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Quality breakdown grid (6 steps) */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.quality-card {
  background: var(--surface);
  padding: 36px 32px 28px;
  position: relative;
  transition: background 0.18s;
}
.quality-card:hover { background: var(--bg-2); }
.quality-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.quality-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.quality-card p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.quality-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.team-name { font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 500; color: var(--ink); }
.team-role {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-top: 4px; margin-bottom: 14px;
}
.team-bio { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.55; }

/* Press strip */
.press-eye {
  text-align: center; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 28px;
}
.press-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.press-logo {
  font-family: var(--font-display); font-style: italic; font-size: 18px;
  font-weight: 500; color: var(--muted); opacity: 0.7; transition: opacity 0.2s;
}
.press-logo:hover { opacity: 1; color: var(--ink); }

/* Promise / guarantee */
.promise-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.promise-item {
  background: rgba(248,245,237,0.04);
  border: 1px solid rgba(212,162,97,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.promise-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin-bottom: 18px;
}
.promise-item strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 20px; font-weight: 500; color: var(--bg); margin-bottom: 6px; }
.promise-item span { display: block; font-size: 14px; color: rgba(248,245,237,0.6); line-height: 1.5; }

/* ───── Trustpilot-style review widget ───── */
.trustpilot-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 auto;
  max-width: 720px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.trustpilot-stars {
  color: #00b67a;
  font-size: 22px;
  letter-spacing: 2px;
}
.trustpilot-strip > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trustpilot-rating {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.trustpilot-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}
.trustpilot-logo {
  background: #00b67a;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'Arial Black', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trustpilot-logo::before {
  content: '★';
  font-size: 13px;
}

/* Verified researcher badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,103,65,0.15);
  color: var(--olive);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.verified-badge::before {
  content: '✓';
  background: var(--olive);
  color: white;
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}

/* Live tickers row (recent activity) */
.live-tickers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.live-ticker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.live-ticker::before {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 8px; height: 8px;
  background: var(--olive);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(107,142,35,0.5);
  animation: live-pulse 2s infinite;
}
.live-ticker-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.live-ticker-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 6px 0 4px;
}
.live-ticker-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 760px) {
  .live-tickers { grid-template-columns: 1fr; }
  .trustpilot-strip { flex-direction: column; gap: 8px; padding: 16px 20px; }
}

/* ───── Comparison table (Us vs Them) ───── */
.comp-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th {
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.comp-table th:first-child { width: 32%; }
.comp-table th.comp-us {
  background: linear-gradient(135deg, var(--accent-soft), rgba(212,162,97,0.04));
  color: var(--accent-2);
  border-left: 1px solid rgba(184,115,51,0.2);
  border-right: 1px solid rgba(184,115,51,0.2);
}
.comp-us-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.comp-table th.comp-them { color: var(--muted); }
.comp-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: rgba(28,24,20,0.015); }
.comp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.comp-us-cell {
  background: linear-gradient(135deg, var(--accent-soft), rgba(212,162,97,0.02)) !important;
  color: var(--ink);
  font-weight: 600;
  border-left: 1px solid rgba(184,115,51,0.15);
  border-right: 1px solid rgba(184,115,51,0.15);
}
.comp-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}
.comp-them-cell {
  color: var(--text-2);
}
.comp-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(196,90,74,0.15);
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ───── Testimonials ───── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}
.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
}
.testi-quote {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 24px;
  position: relative;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.testi-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 3px;
}
.testi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testi-stats > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testi-stats strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 350;
  color: var(--accent);
  line-height: 1;
}
.testi-stats strong small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}
.testi-stats span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ───── Timeline ───── */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-2), var(--accent), var(--border-2));
}
.timeline-item {
  position: relative;
  padding: 18px 0 32px 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item:last-child::before {
  background: var(--olive);
  box-shadow: 0 0 0 2px var(--olive), 0 0 0 0 rgba(107,142,35,0.5);
  animation: live-pulse 2s infinite;
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.timeline-content p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-stats { grid-template-columns: 1fr; gap: 18px; }
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 12px 14px; }
}

/* FAQ categories */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.faq-tab {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink);
  transition: all 0.15s;
}
.faq-tab:hover { border-color: var(--accent); }
.faq-tab.active { background: var(--ink); color: var(--accent); border-color: var(--ink); }

@media (max-width: 980px) {
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .promise-row { grid-template-columns: 1fr; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .press-row { gap: 24px; }
  .press-logo { font-size: 14px; }
}
@media (max-width: 560px) {
  .quality-grid { grid-template-columns: 1fr; }
}

.cert-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert {
  text-align: center;
  padding: 24px 16px;
}
.cert .label {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
  margin-bottom: 8px;
}
.cert .desc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ───── Affiliate page ───── */
.aff-hero {
  padding: 100px 0 80px;
  position: relative;
}
.aff-hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 60;
}
.aff-hero h1 em { font-style: italic; color: var(--accent); font-weight: 350; }
.aff-hero .lead {
  font-size: 22px;
  color: var(--text-2);
  max-width: 640px;
  margin: 28px 0 40px;
  line-height: 1.5;
}
.aff-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 60px 0;
}
.aff-stat {
  background: var(--surface);
  padding: 36px;
  text-align: center;
}
.aff-stat .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 350;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}
.aff-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.aff-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
}
.aff-step {
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.aff-step .step {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 350;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.aff-step h3 { font-family: var(--font-display); margin: 0 0 10px; font-size: 22px; }
.aff-step p { color: var(--text-2); font-size: 15px; margin: 0; }

.aff-dashboard {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 60px 0;
}
.aff-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 245, 237, 0.1);
}
.aff-dashboard-head h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0;
}
.aff-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.aff-dashboard-grid > div .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(248, 245, 237, 0.6);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.aff-dashboard-grid > div .val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 350;
  color: var(--accent);
  font-style: italic;
}
.aff-form {
  max-width: 640px;
  margin: 60px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

/* ───── Newsletter / CTA section ───── */
.cta-section {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 60px 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 100%, rgba(184, 115, 51, 0.15), transparent 60%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--bg); margin: 0 0 18px; }
.cta-section h2 em { color: var(--accent); font-style: italic; }
.cta-section p { color: rgba(248, 245, 237, 0.7); margin: 0 auto 36px; max-width: 540px; font-size: 18px; }
.cta-form {
  display: inline-flex;
  gap: 12px;
  max-width: 460px;
  width: 100%;
}
.cta-form input {
  flex: 1;
  background: rgba(248, 245, 237, 0.08);
  border: 1px solid rgba(248, 245, 237, 0.2);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
}
.cta-form input::placeholder { color: rgba(248, 245, 237, 0.4); }
.cta-form input:focus { outline: none; border-color: var(--accent); }

/* ───── Footer ───── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: var(--surface-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 15px;
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--text-2); font-size: 15px; margin: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
}
.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 115, 51, 0.2);
  padding: 14px 18px;
  margin-top: 16px;
  display: inline-block;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ───── Disclaimer ───── */
.disclaimer {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  color: var(--accent-2);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 28px 0;
  line-height: 1.6;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
}

/* ───── Toast ───── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: var(--radius-pill);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ───── Breadcrumb ───── */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 32px 0 0;
  font-weight: 600;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { margin: 0 10px; color: var(--faint); }

/* ───── Filter bar ───── */
.filter-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.filter-bar input,
.filter-bar select {
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--ink);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
}
.filter-bar input { min-width: 0; }
.filter-bar input:focus,
.filter-bar select:focus { outline: none; border-color: var(--accent); }

/* ───── Responsive ───── */
@media (max-width: 980px) {
  .hero-grid, .product-detail, .cart-layout, .checkout-layout, .legal-layout, .lab-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid, .aff-step-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .legal-nav { position: static; }
  .cart-summary { position: static; }
  .cert-row { grid-template-columns: 1fr 1fr; }
  .lab-grid:nth-child(even) > div:first-child { order: 0; }
  .site-header .container { grid-template-columns: auto 1fr; gap: 16px; }
  .nav-actions { gap: 8px; }
  .hero-stats, .aff-stats { grid-template-columns: 1fr 1fr; }
  .aff-dashboard-grid { grid-template-columns: 1fr 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 64px; }
  .section { padding: 64px 0; }
  .filter-bar { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr; gap: 16px; }
  .cart-item > div:nth-child(3), .cart-item > div:nth-child(4) {
    grid-column: 2;
  }
  .cert-row { grid-template-columns: 1fr 1fr; gap: 16px; padding: 48px 0; }
  .social-proof { max-width: calc(100vw - 32px); left: 16px; bottom: 16px; }
  .cta-form { flex-direction: column; }
}

/* ───── Reveal animations ───── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal[data-delay="1"] { animation-delay: 0.08s; }
.reveal[data-delay="2"] { animation-delay: 0.18s; }
.reveal[data-delay="3"] { animation-delay: 0.28s; }
.reveal[data-delay="4"] { animation-delay: 0.38s; }
.reveal[data-delay="5"] { animation-delay: 0.48s; }

/* ────────── CHECKOUT SIDE-PANEL OVERRIDE (must win cascade over .enpay-side) ────────── */
.enpay-side.enpay-side-light {
  background: var(--bg-2);
  color: var(--ink);
}
.enpay-side.enpay-side-light::before { display: none; }

/* ────────── BULLETPROOF SIDE-PANEL TEXT VISIBILITY ────────── */
.enpay-side.enpay-side-light {
  background: var(--bg-2) !important;
  color: var(--ink) !important;
}
.enpay-side.enpay-side-light::before { display: none !important; }
.enpay-side.enpay-side-light .enpay-pay-total-v {
  color: var(--accent-2) !important;
}
.enpay-side.enpay-side-light .enpay-pay-name,
.enpay-side.enpay-side-light .enpay-pay-amt,
.enpay-side.enpay-side-light .enpay-pay-bd-row span:last-child,
.enpay-side.enpay-side-light .enpay-pay-bd-total span:last-child {
  color: var(--ink) !important;
}
.enpay-side.enpay-side-light .enpay-pay-total-l,
.enpay-side.enpay-side-light .enpay-pay-total-id,
.enpay-side.enpay-side-light .enpay-pay-summary-h,
.enpay-side.enpay-side-light .enpay-pay-meta,
.enpay-side.enpay-side-light .enpay-pay-bd-row span:first-child,
.enpay-side.enpay-side-light .trust-line {
  color: var(--muted) !important;
}
.enpay-side.enpay-side-light .enpay-pay-img { background: #fff !important; }

/* ────────── MOBILE OVERLAY OPTIMIZATION ────────── */
@media (max-width: 800px) {
  .enpay-modal {
    grid-template-columns: 1fr !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
  }
  .enpay-side.enpay-side-light {
    order: 2;
    padding: 20px 18px 16px !important;
    gap: 12px !important;
  }
  .enpay-side.enpay-side-light .enpay-pay-summary { max-height: 180px !important; }
  .enpay-main-light { order: 1; padding: 58px 18px 20px !important; max-height: none !important; }
  .enpay-pay-h { font-size: 22px !important; margin-bottom: 12px !important; }
  .enpay-pay-sub { font-size: 13px !important; margin-bottom: 16px !important; }
  .enpay-smart-tile { padding: 14px 16px !important; margin-bottom: 10px !important; }
  .enpay-smart-body h3 { font-size: 16px !important; }
  .enpay-smart-body p { font-size: 11.5px !important; }
  .enpay-tile-total strong { font-size: 22px !important; }
  .enpay-coin { padding: 12px 14px !important; }
  .enpay-close {
    top: 12px !important;
    right: 12px !important;
    width: 32px !important;
    height: 32px !important;
    background: rgba(0,0,0,0.06) !important;
    border-radius: 50% !important;
  }
  .enpay-receive { grid-template-columns: 1fr !important; gap: 20px !important; }
  .enpay-qr { width: 100% !important; max-width: 220px !important; margin: 0 auto !important; }
}

/* ────────── TELEGRAM SUPPORT QUICK-LINK in chat widget ────────── */
.ai-chat-tg-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  border-top: 1px solid rgba(0,0,0,0.05);
  color: #fff;
  text-decoration: none;
  transition: all 0.15s;
}
.ai-chat-tg-row:hover {
  background: linear-gradient(135deg, #229ed9 0%, #1a8cc4 100%);
  color: #fff;
  text-decoration: none;
}
.ai-chat-tg-row svg { flex-shrink: 0; }
.ai-chat-tg-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  line-height: 1.2;
}
.ai-chat-tg-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  font-style: normal;
  opacity: 0.85;
  margin-top: 2px;
  font-weight: 600;
}
.ai-chat-tg-cta {
  background: rgba(255,255,255,0.22);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ────────── SEPA hint below the two payment tiles ────────── */
.enpay-sepa-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 8px;
  padding: 12px 14px;
  background: rgba(74,103,65,0.06);
  border: 1px dashed rgba(74,103,65,0.28);
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}
.enpay-sepa-hint strong { color: var(--olive); font-weight: 700; }
.enpay-sepa-hint a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.enpay-sepa-hint a:hover { color: var(--accent); }

/* ────────── LIVE BLOCKCHAIN INSPECTOR (inside tracking step) ────────── */
.enpay-chain-inspector {
  margin: 18px 0 20px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(74,103,65,0.08) 0%, rgba(74,103,65,0.03) 100%);
  border: 1px solid rgba(74,103,65,0.22);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
}

/* Radar-pulse animation — visually communicates "live polling" */
.enpay-chain-radar {
  position: relative;
  width: 36px;
  height: 36px;
  margin-top: 6px;
}
.enpay-chain-radar span {
  position: absolute;
  inset: 0;
  border: 2px solid var(--olive);
  border-radius: 50%;
  animation: enpay-radar 2s linear infinite;
  opacity: 0;
}
.enpay-chain-radar span:nth-child(2) { animation-delay: 0.66s; }
.enpay-chain-radar span:nth-child(3) { animation-delay: 1.33s; }
.enpay-chain-radar::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--olive);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 8px rgba(74,103,65,0.6);
}
@keyframes enpay-radar {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.enpay-chain-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.enpay-chain-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(74,103,65,0.15);
  font-size: 11.5px;
  min-width: 0;
}
.enpay-chain-row:last-child { border-bottom: none; }
.enpay-chain-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
}
.enpay-chain-val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
  min-width: 0;
}
.enpay-chain-val strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-2);
}
.enpay-chain-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.enpay-chain-link {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.enpay-chain-link:hover { color: var(--accent); }

/* ────────── THANK YOU header on order.html ────────── */
.thanks-card {
  padding: 0;
}
.thanks-card.fresh {
  text-align: center;
  padding: 56px 32px 48px;
  background: linear-gradient(180deg, rgba(74,103,65,0.06) 0%, rgba(184,115,51,0.04) 100%);
  border: 1px solid rgba(74,103,65,0.18);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.thanks-card.fresh::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 480px; height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184,115,51,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.thanks-card.fresh > * { position: relative; z-index: 1; }

.thanks-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive) 0%, #5e8253 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(74,103,65,0.30);
  animation: thanks-pop 0.5s cubic-bezier(.2,.9,.3,1.3);
}
.thanks-check svg { width: 56px; height: 56px; }
@keyframes thanks-pop {
  0%   { transform: scale(0.3); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.thanks-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 14px;
}

.thanks-h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  animation: thanks-fade 0.6s 0.15s both;
}
.thanks-h1-small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}
@keyframes thanks-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thanks-sub {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.5;
}

.thanks-order-box {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(184,115,51,0.12);
}
.thanks-order-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
  line-height: 1.4;
}
.thanks-order-id {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-2);
}
.thanks-copy {
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.thanks-copy:hover { background: var(--accent-2); transform: translateY(-1px); }

.thanks-next {
  font-size: 13px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 12px;
}

@media (max-width: 600px) {
  .thanks-card.fresh { padding: 36px 18px; }
  .thanks-order-box { flex-direction: column; gap: 10px; padding: 14px 18px; }
  .thanks-order-label, .thanks-order-id { text-align: center; }
}

/* ────────── Billing-address tip + trouble banner ────────── */
.enpay-mp-tip {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  margin: 10px 0 18px;
  background: rgba(184,115,51,0.07);
  border: 1px solid rgba(184,115,51,0.22);
  border-left-width: 3px;
  border-radius: 10px;
}
.enpay-mp-tip-icon {
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
}
.enpay-mp-tip strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 4px;
}
.enpay-mp-tip p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.5;
}
.enpay-mp-tip strong + p strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
}

.enpay-mp-trouble {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: rgba(196,90,74,0.06);
  border: 1px solid rgba(196,90,74,0.3);
  border-left-width: 3px;
  border-radius: 10px;
  animation: enpay-fade-in 0.3s ease;
}
.enpay-mp-trouble-h {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 8px;
}
.enpay-mp-trouble p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: var(--ink);
}
.enpay-mp-trouble ul {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.7;
}
.enpay-mp-trouble ul li { margin-bottom: 4px; }
.enpay-mp-trouble ul li strong { color: var(--accent-2); }

.enpay-mp-trouble-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.15s;
}
.enpay-mp-trouble-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184,115,51,0.25);
}

/* ────────── CRYPTO-ONLY MODE — Hero crypto tile + Tutorial CTA ────────── */
.enpay-smart-tile.enpay-smart-hero {
  padding: 18px;
}
.enpay-smart-tile.enpay-smart-hero .enpay-smart-body h3 {
  font-size: 17px;
  font-weight: 800;
}
.enpay-smart-tile.enpay-smart-hero .enpay-smart-body p {
  font-size: 12.5px;
}
.enpay-smart-tile.enpay-smart-hero .enpay-tile-total strong {
  font-size: 20px;
}

/* "New to crypto? Buy with card / Apple Pay" CTA */
.enpay-howto-cta {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(184,115,51,0.08) 0%, rgba(184,115,51,0.03) 100%);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.18s;
}
.enpay-howto-cta:hover {
  background: linear-gradient(180deg, rgba(184,115,51,0.14) 0%, rgba(184,115,51,0.06) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184,115,51,0.15);
  text-decoration: none;
  color: var(--ink);
}
.enpay-howto-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}
.enpay-howto-text strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.enpay-howto-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
.enpay-howto-arrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}
