:root {
  --bg: #faf7f2;
  --bg-2: #f3edf6;
  --panel: #ffffff;
  --panel-2: #f6f1f8;
  --line: #e7ddec;
  --text: #2c2438;
  --muted: #6a5f77;
  --faint: #9d92a8;
  --accent: #9b6dd6;
  --accent-2: #6d3bb5;
  --accent-3: #b98ce6;
  --accent-dim: rgba(155, 109, 214, 0.14);
  --danger: #f43f5e;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1160px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(170deg, #f7f0fa 0%, #faf7f2 40%, #f1e9f6 100%), #faf7f2;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); color: #fff; font-weight: 600; box-shadow: 0 6px 18px rgba(140, 80, 200, 0.28); }
.btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--muted); background: var(--panel); }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
  background: var(--accent-dim);
  color: var(--accent);
  text-align: center;
  font-size: 13px;
  letter-spacing: .01em;
  padding: 8px 16px;
  border-bottom: 1px solid var(--line);
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  display: block;
  width: auto; height: 34px;
  object-fit: contain;
}
.footer__brand .brand__mark { height: 42px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--muted); font-size: 15px; transition: color .2s; }
.nav a:hover { color: var(--text); }

.cart-btn {
  position: relative;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 11px; color: var(--text); cursor: pointer;
  transition: border-color .2s;
}
.cart-btn:hover { border-color: var(--muted); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--accent-2); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 10px; display: grid; place-items: center;
}

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 130%;
  pointer-events: none; z-index: -1;
  background:
    radial-gradient(42% 55% at 18% 15%, rgba(185, 140, 230, 0.55), transparent 60%),
    radial-gradient(45% 60% at 45% 5%, rgba(155, 109, 214, 0.5), transparent 62%),
    radial-gradient(50% 65% at 72% 12%, rgba(109, 59, 181, 0.45), transparent 60%),
    radial-gradient(40% 55% at 90% 25%, rgba(200, 160, 240, 0.5), transparent 62%),
    radial-gradient(55% 70% at 60% 40%, rgba(140, 90, 200, 0.4), transparent 65%);
  filter: blur(52px) saturate(120%);
  opacity: 0.8;
  animation: aurora 18s ease-in-out infinite alternate;
}
.hero__glow::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(38% 50% at 30% 8%, rgba(170, 130, 225, 0.42), transparent 60%),
    radial-gradient(42% 55% at 80% 6%, rgba(190, 150, 235, 0.42), transparent 62%);
  filter: blur(44px);
  animation: aurora2 22s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translateX(-4%) translateY(0) scale(1); }
  50%  { transform: translateX(3%) translateY(-3%) scale(1.08); }
  100% { transform: translateX(6%) translateY(2%) scale(1.04); }
}
@keyframes aurora2 {
  0%   { transform: translateX(3%) scale(1.05); opacity: 0.85; }
  100% { transform: translateX(-5%) scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__glow::after { animation: none; }
}
.hero__inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 84px 24px 72px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 20px; }
.hero__sub { max-width: 620px; margin: 0 auto 32px; color: var(--muted); font-size: 18px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--line);
  max-width: 640px; margin: 0 auto;
}
.hero__stats div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong { font-family: var(--font-display); font-size: 24px; color: var(--text); }
.hero__stats span { font-size: 13px; color: var(--faint); }

/* Sections */
section { padding: 76px 24px; }
.section-head { max-width: var(--maxw); margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* Catalog grid */
.catalog { max-width: var(--maxw); margin: 0 auto; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(140, 80, 200, 0.08);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 16px 40px rgba(140, 80, 200, 0.16); transform: translateY(-4px); }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44,36,56,0.02) 0%, rgba(44,36,56,0.06) 52%, rgba(44,36,56,0.16) 100%),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.35), transparent 44%);
  pointer-events: none;
}
.card__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.card__media--bacwater-10 {
  background-color: #f2f2f4;
  background-image: url("images/bac-water.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.card__media--bacwater-10::before { display: none; }
.card__media--bacwater-10::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 60%, rgba(44,36,56,0.06) 100%);
}
.card__media--tesa-10,
.card__media--nad-500,
.card__media--b12-10,
.card__media--ghkcu-50,
.card__media--mt2-10 {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.78), transparent 23%),
    radial-gradient(circle at 82% 12%, rgba(255,214,245,0.68), transparent 26%),
    linear-gradient(135deg, #f4e8ff 0%, #d9c0ff 42%, #b989f0 100%);
}
.card__media--reta-10 {
  background-image: url("images/triple-g.png");
  background-position: center 22%;
}
.card__media--reta-20 {
  background-image: url("images/triple-g-2.png");
  background-position: center 18%;
}
.card__media--reta-10::before,
.card__media--reta-20::before { display: none; }
.card__media--reta-10::after,
.card__media--reta-20::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__media--mt2-10 {
  background-image: url("images/tan-mt.png");
  background-position: center 20%;
}
.card__media--mt2-10::before { display: none; }
.card__media--mt2-10::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__media--tesa-10 {
  background-image: url("images/tesamorelin.png");
  background-position: center 22%;
}
.card__media--tesa-10::before { display: none; }
.card__media--tesa-10::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__media--nad-500 {
  background-image: url("images/nad.png");
  background-position: center 18%;
}
.card__media--nad-500::before { display: none; }
.card__media--nad-500::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__media--ghkcu-50 {
  background-image: url("images/copper-g.png");
  background-position: center 20%;
}
.card__media--ghkcu-50::before { display: none; }
.card__media--ghkcu-50::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__media--b12-10 {
  background-image: url("images/b12.png");
  background-position: center 20%;
}
.card__media--b12-10::before { display: none; }
.card__media--b12-10::after {
  background: linear-gradient(180deg, rgba(44,36,56,0) 55%, rgba(44,36,56,0.10) 100%);
}
.card__vial {
  display: none;
}
.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 100px;
  background: rgba(255,255,255,0.82); color: var(--accent-2);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 8px 22px rgba(44,36,56,0.12);
  backdrop-filter: blur(8px);
}
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 18px; font-family: var(--font-display); font-weight: 600; }
.card__sub { font-size: 13px; color: var(--faint); margin-top: -6px; }
.card__desc { font-size: 14px; color: var(--muted); flex: 1; }
.card__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 11.5px; color: var(--muted);
  padding: 4px 9px; border: 1px solid var(--line); border-radius: 100px;
}
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.card__price { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.card__coa { font-size: 12.5px; color: var(--accent-2); display: inline-flex; align-items: center; gap: 5px; }
.add-btn {
  padding: 10px 16px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); color: #fff; border: none; border-radius: 9px; cursor: pointer;
  transition: filter .2s;
}
.add-btn:hover { filter: brightness(1.1); }

/* Quality */
.quality { max-width: var(--maxw); margin: 0 auto; }
.quality__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.qcard {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.qcard__icon {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--accent); margin-bottom: 14px;
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
}
.qcard h3 { font-size: 17px; margin-bottom: 8px; }
.qcard p { font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 20px;
}
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 500; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 15px; }

/* Footer */
.footer { border-top: 1px solid var(--line); background: rgba(251, 238, 228, 0.6); padding: 56px 24px 32px; }
.footer__cols {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand .brand__mark { margin-bottom: 4px; }
.footer__note { font-size: 13px; color: var(--faint); margin-top: 6px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__hours { display: block; font-size: 13px; color: var(--faint); margin-top: 6px; }
.footer__disclaimer {
  max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer__disclaimer p { font-size: 12.5px; color: var(--faint); line-height: 1.6; }
.footer__copy { margin-top: 14px; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 50; }
.cart {
  position: fixed; top: 0; right: 0; z-index: 60;
  width: min(420px, 92vw); height: 100%;
  background: var(--panel); border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(140, 80, 200, 0.14);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s ease;
}
.cart.open { transform: translateX(0); }
.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 22px 18px; border-bottom: 1px solid var(--line);
}
.cart__head h3 { font-size: 19px; }
.cart__close { background: none; border: none; color: var(--muted); font-size: 30px; cursor: pointer; line-height: 1; }
.cart__items { flex: 1; overflow-y: auto; padding: 12px 22px; }
.cart__empty { color: var(--faint); text-align: center; padding: 48px 0; font-size: 15px; }
.citem { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.citem__vial {
  width: 40px; height: 56px; flex-shrink: 0;
  background: linear-gradient(180deg, #fff, var(--panel-2));
  border: 1px solid var(--line); border-radius: 8px;
}
.citem__info { flex: 1; }
.citem__name { font-weight: 600; font-size: 15px; }
.citem__price { color: var(--muted); font-size: 14px; margin-top: 2px; }
.citem__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.citem__qty button {
  width: 26px; height: 26px; border: 1px solid var(--line); background: var(--panel);
  color: var(--text); border-radius: 7px; cursor: pointer; font-size: 15px;
}
.citem__remove { background: none; border: none; color: var(--faint); font-size: 12.5px; cursor: pointer; margin-top: 8px; }
.citem__remove:hover { color: var(--danger); }
.cart__foot { padding: 20px 22px; border-top: 1px solid var(--line); }
.cart__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart__row strong { font-family: var(--font-display); font-size: 20px; }
.cart__ship { font-size: 12.5px; color: var(--faint); margin-bottom: 16px; }
.cart__research { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 12px; }

/* Product Name Legend button */
.legend-open { margin-top: 18px; }

/* Product Name Legend popup */
.legend {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(46, 35, 51, 0.55); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 24px; overflow-y: auto;
}
.legend[hidden] { display: none !important; }
.legend__card {
  max-width: 560px; width: 100%; background: var(--panel);
  border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 32px; text-align: center;
  box-shadow: 0 24px 60px rgba(140, 80, 200, 0.22);
}
.legend__title { font-size: 26px; margin-bottom: 8px; }
.legend__sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.legend__table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; }
.legend__row { display: grid; grid-template-columns: 1fr 1fr; }
.legend__row:nth-child(odd) { background: var(--panel-2); }
.legend__code, .legend__real { padding: 13px 16px; font-size: 15px; text-align: center; }
.legend__code { font-family: var(--font-display); font-weight: 600; color: var(--accent-2); border-right: 1px solid var(--line); }
.legend__real { color: var(--text); }
.legend__tagline { font-weight: 600; color: var(--text); font-size: 15px; margin-bottom: 22px; }

/* Cart limit note */
.cart__limit-note {
  margin: 0 22px; padding: 0; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--accent-2); font-weight: 600;
  opacity: 0; transition: opacity .2s, max-height .2s, padding .2s;
}
.cart__limit-note.show { opacity: 1; max-height: 40px; padding: 8px 0 0; }
.citem__qty button[disabled] { opacity: .35; cursor: not-allowed; }

/* Checkout — full page overlay */
.checkout-page {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  background-image: linear-gradient(170deg, #f7f0fa 0%, #faf7f2 40%, #f1e9f6 100%);
  overflow-y: auto;
}
.checkout-page__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  background: rgba(250,247,242,.85); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 2;
}
.checkout__close { background: none; border: none; color: var(--muted); font-size: 15px; font-weight: 600; cursor: pointer; }
.checkout__close:hover { color: var(--accent-2); }
.checkout-page__inner { max-width: 1080px; margin: 0 auto; padding: 32px 24px 64px; }

.co-steps { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.co-step { font-size: 13.5px; font-weight: 600; color: var(--faint); padding: 7px 16px; border: 1px solid var(--line); border-radius: 100px; background: var(--panel); }
.co-step.active { color: #fff; background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); border-color: transparent; }
.co-step.done { color: var(--accent-2); border-color: var(--accent); }

.co-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }
.co-h { font-size: 20px; margin-bottom: 18px; }
.co-col-main { display: flex; flex-direction: column; gap: 14px; }
.co-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-col-main label, .co-hide-label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.co-hide-label { gap: 0; }
.co-col-main input, .co-col-main textarea {
  font-family: var(--font-body); font-size: 15px; font-weight: 400;
  padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel); color: var(--text); resize: vertical; width: 100%;
}
.co-col-main input:focus, .co-col-main textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.co-col-main input[readonly] { background: var(--panel-2); color: var(--muted); }

.co-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 10px 30px rgba(140, 80, 200, 0.08); position: sticky; top: 88px; }
.co-card-head { display: flex; justify-content: space-between; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.checkout__summary { padding: 6px 0 4px; margin-bottom: 6px; }
.co-line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 14px; padding: 7px 0; color: var(--muted); }
.co-line em { color: var(--faint); font-style: normal; font-size: 12px; }
.co-line strong { color: var(--text); }
.co-total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 12px; font-size: 15px; }
.co-total strong { font-family: var(--font-display); font-size: 20px; color: var(--accent-2); }

.co-pay-h { font-size: 14px; margin: 18px 0 12px; }
.co-pay-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.co-pay-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .15s, background .15s; }
.co-pay-opt:has(input:checked) { border-color: var(--accent); background: var(--accent-dim); }
.co-pay-opt input { accent-color: var(--accent-2); width: 17px; height: 17px; }
.co-pay-label { flex: 1; display: flex; flex-direction: column; }
.co-pay-label strong { font-size: 14.5px; }
.co-pay-label em { font-style: normal; font-size: 12px; color: var(--faint); }
.co-pay-badge { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 15px; }
.co-zelle { background: #6d1ed4; } .co-cash { background: #00c244; } .co-pp { background: #0070ba; } .co-btc { background: #f7931a; }

.co-terms { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; padding: 14px; background: var(--panel-2); border-radius: var(--radius-sm); }
.co-check { display: flex; align-items: flex-start; gap: 9px; font-size: 11.5px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.co-check input { margin-top: 1px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent-2); }
.checkout__fineprint { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 10px; }

/* Confirmation */
.co-confirm { max-width: 620px; margin: 0 auto; text-align: center; }
.checkout__badge { width: 60px; height: 60px; margin: 0 auto 18px; background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); color: #fff; font-size: 28px; display: grid; place-items: center; border-radius: 50%; }
.co-confirm-lead { color: var(--muted); font-size: 14px; margin-bottom: 8px; }

/* Order number + copy */
.co-orderno-row { display: flex; align-items: stretch; gap: 10px; justify-content: center; margin-bottom: 24px; }
.checkout__orderno { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent-2); letter-spacing: .02em; padding: 14px 20px; background: var(--accent-dim); border-radius: var(--radius-sm); }
.co-copy-btn { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--accent-2); background: var(--panel); border: 1px solid var(--accent); border-radius: var(--radius-sm); padding: 0 18px; cursor: pointer; transition: background .15s; }
.co-copy-btn:hover { background: var(--accent-dim); }

/* The big rule */
.co-rule { display: flex; gap: 16px; text-align: left; align-items: flex-start; background: linear-gradient(135deg, var(--accent-dim), rgba(140,80,200,.06)); border: 2px solid var(--accent); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 22px; }
.co-rule__mark { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-3), var(--accent-2)); color: #fff; font-size: 24px; font-weight: 800; display: grid; place-items: center; }
.co-rule__body h4 { font-size: 17px; margin-bottom: 6px; color: var(--text); }
.co-rule__body p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.co-rule__body strong { color: var(--accent-2); }

/* Right vs wrong examples */
.co-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.co-example { text-align: left; border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--line); }
.co-example--good { background: #eefaf0; border-color: #bfe6c8; }
.co-example--bad { background: #fdeef0; border-color: #f2c9d0; }
.co-example__tag { font-size: 12px; font-weight: 700; display: block; margin-bottom: 8px; }
.co-example--good .co-example__tag { color: #1c8a3c; }
.co-example--bad .co-example__tag { color: #c0344a; }
.co-example__memo { font-family: var(--font-display); font-size: 15px; color: var(--text); background: var(--panel); border: 1px dashed var(--line); border-radius: 8px; padding: 9px 12px; }
.co-example--bad .co-example__memo { color: var(--faint); }
.co-example__memo s { text-decoration: line-through; }

/* Steps list */
.co-steps-intro { text-align: left; margin: 18px 0 2px; font-size: 14px; font-weight: 600; color: var(--text); }
.co-steps-list { text-align: left; margin: 6px 0 4px; padding-left: 0; list-style: none; counter-reset: step; }
.co-steps-list li { position: relative; padding: 8px 0 8px 34px; font-size: 13.5px; color: var(--muted); line-height: 1.5; counter-increment: step; }
.co-steps-list li::before { content: counter(step); position: absolute; left: 0; top: 7px; width: 22px; height: 22px; background: var(--accent-dim); color: var(--accent-2); font-weight: 700; font-size: 12px; border-radius: 50%; display: grid; place-items: center; }
.co-steps-list strong { color: var(--text); }
.co-inline-order { font-family: var(--font-display); font-weight: 700; color: var(--accent-2); background: var(--accent-dim); padding: 1px 8px; border-radius: 6px; }

/* Flashing "ONLY WRITE IN YOUR ORDER #" callout */
.co-only {
  display: block; margin: 8px 0 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 15.5px;
  letter-spacing: .03em; text-align: center;
  color: #fff; padding: 12px 14px; border-radius: 10px;
  animation: onlyFlash 2.4s ease-in-out infinite;
}
@keyframes onlyFlash {
  0%, 100% {
    background: #e11d2e;
    box-shadow: 0 4px 16px rgba(225, 29, 46, 0.45);
    transform: scale(1);
  }
  50% {
    background: #ff9500;
    box-shadow: 0 8px 28px rgba(255, 149, 0, 0.6);
    transform: scale(1.035);
  }
}
@media (prefers-reduced-motion: reduce) {
  .co-only { animation: none; }
}
.checkout__pay { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; text-align: left; background: var(--panel); }
.checkout__pay h4 { font-size: 16px; margin-bottom: 14px; }
.pay-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.pay-row strong { color: var(--text); font-size: 15px; word-break: break-all; text-align: right; }
.pay-ref strong { font-family: var(--font-display); color: var(--accent-2); font-size: 17px; }
.checkout__paynote { font-size: 12.5px; color: var(--faint); margin-top: 14px; line-height: 1.55; }
.checkout__paynote a { color: var(--accent-2); }

@media (max-width: 820px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-card { position: static; }
}

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(46, 35, 51, 0.55); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 24px;
}
.age-gate[hidden] { display: none !important; }
.age-gate__card {
  max-width: 440px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 40px 34px; text-align: center;
}
.age-gate__mark {
  width: 48px; height: 48px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; border-radius: 12px;
}
.age-gate__card h2 { font-size: 22px; margin-bottom: 12px; }
.age-gate__card p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.age-gate__actions { display: flex; gap: 12px; flex-direction: column; }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; padding-top: 40px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal__date { color: var(--faint); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 19px; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent-2); }
.legal__back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.legal__note {
  background: var(--accent-dim); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 24px 0;
}
.legal__note p { color: var(--text); margin: 0; font-size: 14px; }

/* Responsive */
@media (max-width: 760px) {
  .nav { display: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 28px; }
  section { padding: 56px 20px; }
}

/* Delivery / fulfillment additions */
.co-addr-hint { font-size: 13px; color: var(--muted, #7a7286); margin: -4px 0 14px; line-height: 1.4; }
.co-delivery-line { margin: 10px 0 0; font-size: 14px; font-weight: 600; color: var(--accent-2, #6d3bb5); }

/* Checkout summary — shipping breakdown */
.co-sub { border-top: 1px solid var(--line, #e8e4f0); margin-top: 4px; padding-top: 4px; color: var(--muted, #7a7286); }
.co-sub strong { color: var(--muted, #7a7286); font-weight: 500; }

/* Promo code field */
.promo-row { margin: 14px 0 10px; }
.promo-label { display: block; font-size: 13px; font-weight: 600; color: var(--text,#2a2431); margin-bottom: 6px; }
.promo-fields { display: flex; gap: 8px; }
.promo-input { flex: 1; padding: 9px 12px; border: 1.5px solid var(--line,#e8e4f0); border-radius: 9px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; background: #fff; }
.promo-input:focus { outline: none; border-color: var(--accent,#9b6dd6); }
.promo-apply { white-space: nowrap; padding: 9px 16px; font-size: 13px; }
.promo-msg { display: block; margin-top: 6px; font-size: 13px; min-height: 18px; }
.promo-ok { color: #2e7d32; font-weight: 600; }
.promo-err { color: #c62828; }
.co-promo { color: #2e7d32; }
.co-promo strong { color: #2e7d32; }
.co-promo-remove { background: none; border: none; color: #9a93a6; font-size: 11px; cursor: pointer; text-decoration: underline; margin-left: 6px; padding: 0; }
.co-promo-remove:hover { color: #c62828; }
