/* ELLIPAL — static site styles (no build step required) */

:root {
  --background: oklch(0.129 0.042 264.695);
  --foreground: oklch(0.984 0.003 247.858);
  --surface: oklch(0.17 0.035 258);
  --surface-2: oklch(0.135 0.035 250);
  --placeholder: oklch(0.22 0.02 260);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 14%);
  --muted: oklch(0.65 0.03 255);
  --neon: oklch(0.79 0.19 158);
  --blue: oklch(0.66 0.16 245);
  --sale: oklch(0.68 0.17 240);
  --star: oklch(0.83 0.17 85);
  --primary-fg: oklch(0.19 0.03 227);

  --gradient-cta: linear-gradient(100deg, oklch(0.8 0.19 155) 0%, oklch(0.72 0.16 200) 55%, oklch(0.66 0.16 245) 100%);
  --gradient-panel: linear-gradient(
    160deg,
    color-mix(in oklab, var(--neon) 9%, var(--background)) 0%,
    var(--background) 45%,
    color-mix(in oklab, var(--blue) 10%, var(--background)) 100%
  );
  --gradient-glow: radial-gradient(60% 60% at 50% 0%, color-mix(in oklab, var(--neon) 18%, transparent) 0%, transparent 70%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: "Archivo", "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.section-alt { background-image: var(--gradient-panel); }
.section-glow { position: relative; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gradient-glow);
  pointer-events: none;
}

.center { text-align: center; }
.max-w { max-width: 640px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid color-mix(in oklab, var(--neon) 45%, transparent);
  color: var(--neon);
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.h2 { font-size: 2rem; margin-top: 1.25rem; }
.h1 { font-size: 2.4rem; line-height: 1.08; margin-top: 1.25rem; }
@media (min-width: 768px) {
  .h2 { font-size: 3rem; }
  .h1 { font-size: 3.75rem; }
}

.hero-media { position: relative; max-width: 520px; margin: 0 auto; }

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 1.25rem auto 0;
}

.rule {
  height: 3px;
  width: 3.5rem;
  border-radius: 999px;
  background-image: var(--gradient-cta);
  margin: 1.25rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background-image: var(--gradient-cta); color: var(--primary-fg); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border); color: var(--foreground); background: transparent; }
.btn-outline:hover { border-color: color-mix(in oklab, var(--neon) 60%, transparent); color: var(--neon); }
.btn-added { filter: brightness(0.9); }

/* ---------- cart drawer ---------- */

[data-cart-drawer-root] { position: relative; z-index: 200; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 14, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}
[data-cart-drawer-root].open .cart-overlay { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--background);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 201;
}
[data-cart-drawer-root].open .cart-drawer { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-head h2 { font-size: 1.3rem; display: flex; align-items: baseline; gap: .4rem; }
.cart-drawer-count { font-size: 1rem; color: var(--muted); font-weight: 600; }
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.cart-drawer-close:hover { color: var(--neon); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }

.cart-empty { text-align: center; padding: 3rem 0; display: grid; gap: 1.25rem; justify-items: center; }
.cart-empty p { color: var(--muted); }

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: .9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-line:first-child { padding-top: 0; }
.cart-line img { width: 64px; height: 64px; border-radius: .75rem; object-fit: cover; border: 1px solid var(--border); }
.cart-line-name { font-weight: 700; font-size: .88rem; line-height: 1.3; }
.cart-line-variant { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.cart-line-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; gap: .5rem; }
.cart-line-price { font-weight: 700; font-size: .85rem; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .15rem .5rem;
}
.cart-qty button {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: none;
  background: var(--surface-2);
  color: var(--foreground);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  font-size: .8rem;
}
.cart-qty span { font-size: .8rem; font-weight: 700; min-width: 12px; text-align: center; }
.cart-line-remove {
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  padding: .2rem;
}
.cart-line-remove:hover { color: var(--destructive); }

.cart-drawer-foot {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
}
.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
}
.cart-checkout-btn { padding: 1rem; }

.actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem; margin-top: 2rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) { .card { padding: 2rem; } }
.card-highlight { border-color: color-mix(in oklab, var(--neon) 40%, transparent); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.p-thumbs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { gap: 1.5rem; }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--placeholder) 65%, transparent);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  padding: 1rem;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.ph-square { aspect-ratio: 1 / 1; }
.ph-video { aspect-ratio: 16 / 9; }
.ph-tall { aspect-ratio: 9 / 16; max-width: 260px; margin: 0 auto; }
.ph-wide { aspect-ratio: 16 / 9; }
.ph-sm { aspect-ratio: 8 / 5; }

/* ---------- header ---------- */

.promo-bar {
  background: color-mix(in oklab, var(--surface-2) 92%, transparent);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 700;
}
.promo-bar a { text-decoration: none; }
.promo-bar a:hover { color: var(--neon); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 64px;
}
.logo-ph { width: 148px; }
@media (min-width: 640px) { .logo-ph { width: 168px; } }
.desktop-nav { display: none; gap: 1.75rem; margin: 0 auto; }
.desktop-nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.desktop-nav a:hover { color: var(--neon); }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}
.icon-btn:hover { color: var(--neon); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--sale);
  color: var(--foreground);
  font-size: .62rem;
  font-weight: 800;
  display: none;
  place-items: center;
  line-height: 1;
}
.buy-now { display: none; }
@media (min-width: 640px) { .buy-now { display: inline-flex; } }

.menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 98%, transparent);
}
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mm-label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; color: var(--neon); margin-bottom: .75rem; }
.mm-products { display: grid; gap: 1rem; }
.mm-product {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 1.1rem;
  text-decoration: none;
  color: var(--foreground);
}
.mm-product:hover { border-color: color-mix(in oklab, var(--neon) 50%, transparent); }
.mm-product .ph { width: 76px; height: 76px; aspect-ratio: 1/1; flex-shrink: 0; }
.mm-product-name { display: block; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.mm-product-tag { display: block; margin-top: .35rem; font-size: .82rem; color: var(--muted); }
.mm-badge {
  display: inline-block;
  margin-top: .65rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mm-badge-neon {
  color: var(--neon);
  background: color-mix(in oklab, var(--neon) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--neon) 40%, transparent);
}
.mm-badge-amber {
  color: var(--star);
  background: color-mix(in oklab, var(--star) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--star) 40%, transparent);
}
.mm-product-price { display: block; margin-top: .65rem; font-weight: 700; font-size: 1rem; }
.mm-links { margin-top: 1.75rem; display: grid; }
.mm-links a, .mm-links .mm-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
}
.lang-select {
  margin-top: 1.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .9rem 1.1rem;
  background: var(--surface);
  color: var(--foreground);
}
.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  outline: none;
  width: 100%;
}
.lang-select select option { background: var(--surface); color: var(--foreground); }
.lang-select .lang-chevron { pointer-events: none; color: var(--muted); font-size: .8rem; }

/* ---------- footer ---------- */

.site-footer { background-image: var(--gradient-panel); border-top: 1px solid var(--border); }
.newsletter { padding: 64px 0; text-align: center; }
.newsletter-form {
  margin: 1.5rem auto 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--input);
  background: var(--surface);
  padding: 0 1.25rem;
  color: var(--foreground);
  font-size: .9rem;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { outline: none; border-color: var(--neon); }
.newsletter-form button { height: 48px; }

.footer-grid {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-desc { color: var(--muted); font-size: .9rem; max-width: 340px; margin-top: 1.25rem; }
.social-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.social-row a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
}
.social-row a:hover { border-color: color-mix(in oklab, var(--neon) 50%, transparent); color: var(--neon); }
.footer-col-label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; color: var(--muted); }
.footer-col ul { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .75rem; }
.footer-col a { text-decoration: none; font-size: .9rem; color: color-mix(in oklab, var(--foreground) 85%, transparent); }
.footer-col a:hover { color: var(--neon); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .links { display: flex; gap: 1.25rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--neon); }

/* ---------- accordion ---------- */

.accordion { border: 1px solid var(--border); border-radius: 1.5rem; background: var(--surface); overflow: hidden; }
.accordion-item { border-top: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.accordion-item:first-child { border-top: none; }
.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.accordion-n { font-size: .75rem; font-weight: 700; color: var(--neon); }
.accordion-q { flex: 1; font-weight: 700; }
.accordion-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.accordion-icon svg { transition: transform .2s ease; }
.accordion-item.open .accordion-icon { background: var(--neon); color: var(--primary-fg); border-color: transparent; }
.accordion-item.open .accordion-icon svg { transform: rotate(180deg); }
.accordion-panel { display: none; margin-top: .85rem; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-preview { display: none; margin-top: 1.25rem; max-width: 260px; }
.accordion-item.open .accordion-preview { display: block; }

/* ---------- misc components ---------- */

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.pillar-step { font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--muted); }
.pillar-icon {
  margin-top: 1rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: .9rem;
  background: color-mix(in oklab, var(--neon) 12%, transparent);
  color: var(--neon);
}
.pillar h3 { margin-top: 1.25rem; font-size: 1.2rem; }
.pillar p { margin-top: .5rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }

.feature-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .6rem; font-size: .9rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); }
.feature-list svg { flex-shrink: 0; margin-top: .15rem; color: var(--neon); }

.price-row { display: flex; align-items: baseline; gap: .75rem; margin-top: 1.5rem; }
.price-was { font-size: .95rem; color: var(--muted); text-decoration: line-through; }
.price-now { font-size: 1.9rem; font-weight: 800; }
.price-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.badge-off {
  background: var(--sale);
  color: var(--foreground);
  font-size: .75rem;
  font-weight: 700;
  border-radius: .4rem;
  padding: .25rem .6rem;
}

.wallet-block { margin-top: 1.75rem; background: color-mix(in oklab, var(--background) 60%, transparent); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem; }
.wallet-row { display: flex; align-items: center; gap: 1rem; }
.wallet-row + .wallet-row { margin-top: 1.5rem; }
.wallet-card-ph { width: 90px; aspect-ratio: 8/5; flex-shrink: 0; }
.connect-line { position: relative; height: 2px; flex: 1; overflow: hidden; border-radius: 999px; background: color-mix(in oklab, var(--neon) 22%, transparent); }
.connect-line::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  border-radius: 999px;
  background-image: linear-gradient(90deg, transparent, var(--neon), transparent);
  animation: flow-line 2.2s linear infinite;
}
@keyframes flow-line { 0% { left: -30%; } 100% { left: 100%; } }
.wallet-target { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .5rem; width: 84px; }
.wallet-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--neon) 50%, transparent);
  color: var(--neon);
}
.wallet-target span.label { text-align: center; font-size: .72rem; font-weight: 700; }

.compare { border: 1px solid var(--border); border-radius: 1.5rem; overflow: hidden; margin-bottom: 1rem; }
.compare-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; }
.compare-bad { background: var(--surface); }
.compare-good { background: color-mix(in oklab, var(--background) 60%, transparent); border-top: 1px solid var(--border); }
.compare-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; margin-top: .1rem; }
.compare-bad .compare-icon { border: 1px solid var(--border); color: var(--muted); }
.compare-good .compare-icon { background: color-mix(in oklab, var(--neon) 15%, transparent); color: var(--neon); }
.compare-row p:first-child { font-weight: 700; margin: 0; }
.compare-bad p:first-child { color: var(--muted); }
.compare-row p:last-child { margin: .3rem 0 0; font-size: .85rem; color: var(--muted); }

.coin-pill {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  margin: .25rem;
}

.stars { color: var(--star); letter-spacing: 2px; font-size: .95rem; }

.press-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.press-quote .ph { position: relative; }
.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play-btn span {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--neon) 90%, transparent);
  color: var(--primary-fg);
  display: grid;
  place-items: center;
}
.press-quote blockquote { margin: 1.25rem 0 0; font-size: 1.1rem; font-weight: 700; line-height: 1.4; }
.press-quote .who { margin-top: 1rem; font-size: .85rem; font-weight: 700; }
.press-quote .handle { font-size: .75rem; color: var(--muted); }

.badge-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem; text-align: center; }
.badge-card .source { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.badge-card .value { font-size: 1.8rem; font-weight: 800; margin-top: .5rem; }
.badge-card .label { font-size: .75rem; color: var(--muted); margin-top: .4rem; }

.spec-group { border-bottom: 1px solid var(--border); }
.spec-title { background: var(--surface-2); padding: .75rem 1.25rem; font-size: .7rem; font-weight: 700; letter-spacing: .18em; color: var(--neon); }
.spec-row { display: grid; grid-template-columns: 1fr; gap: .35rem; border-top: 1px solid var(--border); background: var(--surface); padding: 1rem 1.25rem; font-size: .9rem; }
@media (min-width: 640px) { .spec-row { grid-template-columns: 1fr 1.4fr; gap: 1rem; } }
.spec-row dt { font-weight: 700; margin: 0; }
.spec-row dd { margin: 0; color: var(--muted); font-weight: 600; }
.spec-wrap { border: 1px solid var(--border); border-radius: 1.5rem; overflow: hidden; margin-top: 3rem; }

.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem; }
.review-card .name-row { display: flex; align-items: center; gap: .5rem; font-weight: 700; }
.review-card .date { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.review-card .stars { margin-top: .5rem; display: block; }
.review-card p.text { margin-top: .75rem; font-size: .9rem; }
.review-reply { margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.review-reply .label { font-size: .75rem; font-weight: 700; }
.review-reply p { margin: .5rem 0 0; font-size: .85rem; color: var(--muted); }

.product-mini { text-decoration: none; color: var(--foreground); }
.product-mini h3 { margin-top: .75rem; font-size: .9rem; font-weight: 700; }
.product-mini:hover h3 { color: var(--neon); }
.product-mini .price { margin-top: .25rem; font-size: .9rem; color: var(--muted); }

.buy-options { display: grid; gap: .75rem; margin-top: 2rem; }
@media (min-width: 640px) { .buy-options { grid-template-columns: 1fr 1fr; } }
.buy-option { border-radius: 1rem; padding: 1rem; text-align: left; cursor: pointer; font: inherit; color: var(--foreground); }
.buy-option.selected { border: 1px solid color-mix(in oklab, var(--neon) 60%, transparent); background: color-mix(in oklab, var(--neon) 10%, transparent); }
.buy-option:not(.selected) { border: 1px solid var(--border); background: var(--surface); }
.buy-option .t { display: block; font-size: .9rem; font-weight: 700; }
.buy-option .s { display: block; margin-top: .25rem; font-size: .75rem; color: var(--muted); }

.ship-note { margin-top: 1rem; display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--muted); }

.animate-fade { animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.mt-0 { margin-top: 0 !important; }
