/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 *
 * ── Semantic class hooks (sa-*) ────────────────────────────────────────────
 * Sections, snippets and key elements carry stable `sa-` classes you can
 * target with plain CSS — no Tailwind rebuild needed. These classes ship with
 * NO styles of their own; they exist purely as selectors for you to hook onto.
 *
 * Page scope   body.sa-tpl-<template>      e.g. .sa-tpl-product, .sa-tpl-shop
 * Chrome       .sa-header .sa-navbar .sa-footer
 *              .sa-navbar-link .sa-navbar-cart .sa-footer-link
 *              .sa-announcement .sa-scheme-toggle
 * Sections     .sa-<component>             e.g. .sa-hero, .sa-faq, .sa-steps
 * Primitives   .sa-btn, .sa-product-card (+ .sa-product-card--horizontal),
 *              .sa-searchbar, .sa-pagination, .sa-breadcrumbs, .sa-coupon,
 *              .sa-social-proof
 *
 * Example — bigger hero heading only on the shop page:
 *   .sa-tpl-shop .sa-hero h1 { font-size: 3rem; }
 * ───────────────────────────────────────────────────────────────────────────
*/
/* ============================================================
   CLAXUS — base for the canvas starfield
   ------------------------------------------------------------
   Delete every previous CLAXUS block from assets/custom.css,
   then paste this at the bottom. The stars themselves come
   from claxus-script.js.
   ============================================================ */

html,
body {
  background-color: #000;
}

/* The canvas sits at z-index 0, so page content must sit above it */
body > *:not(#claxus-sky) {
  position: relative;
  z-index: 1;
}
/* ============================================================
   CLAXUS — storefront theme
   Paste at the bottom of assets/custom.css, below the starfield
   base block. Markup lives in claxus-home.njk.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600&family=Michroma&display=swap');

:root {
  --ink: #eef0f4;
  --ink-dim: #8d939c;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.03);
  --wrap: 1120px;
}

.cx-hero,
.cx-section,
.cx-closing {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
}

.cx-hero h1,
.cx-section h2,
.cx-closing h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- hero ---------- */
.cx-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 96px;
}

.cx-mark {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.5);
}

.cx-hero h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.cx-lede {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.cx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 20px;
}

.cx-note {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}
.cx-note a,
.cx-closing p a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cx-note a:hover,
.cx-closing p a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ---------- buttons ---------- */
.cx-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: #e9edf3;
  color: #06070a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}
.cx-btn:hover { background: #fff; }
.cx-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.cx-btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }
.cx-btn--full { display: block; text-align: center; }
.cx-btn:focus-visible,
summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ---------- identity readout ---------- */
.cx-readout {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(2px);
  padding: 18px 20px 8px;
}

.cx-readout__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--ink-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cx-readout__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: rgba(255, 255, 255, 0.5);
}

/* A slow pulse says the panel is live without any extra words */
.cx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: cx-pulse 2.6s ease-in-out infinite;
}
@keyframes cx-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1); }
}

.cx-readout__rows > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cx-readout__rows > div:last-child { border-bottom: 0; }

/* The row that just changed brightens, then settles */
.cx-readout dd.is-new { color: #fff; }

.cx-readout dt {
  font-size: 13px;
  color: var(--ink-dim);
}
.cx-readout dd {
  margin: 0;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: color 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- sections ---------- */
.cx-section { padding-top: 88px; }
.cx-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}

.cx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cx-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 26px 24px;
}
.cx-card {
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cx-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.045);
}
.cx-card--lead {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.cx-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
}
.cx-card > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

.cx-spec {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--ink-dim);
}
.cx-spec li {
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cx-price {
  margin: 22px 0 16px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.cx-rate {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
}
.cx-card .cx-btn { margin-top: auto; }

/* ---------- steps ---------- */
.cx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}
.cx-steps li {
  counter-increment: step;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cx-steps li::before {
  content: counter(step);
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}
.cx-steps h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.cx-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

/* ---------- showcase video ---------- */
.cx-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}
.cx-video iframe,
.cx-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cx-video__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
}

/* ---------- why buy here ---------- */
.cx-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cx-why__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 0 24px 24px;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cx-why__card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
}
.cx-why__card--wide { grid-column: span 1; }
.cx-why__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.cx-why__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

/* artwork panel at the top of each card */
.cx-art {
  margin: 0 -24px 22px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cx-art svg { width: 78%; height: auto; overflow: visible; }
.cx-art line, .cx-art path { fill: none; }

.cx-track {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
}
.cx-pulse {
  fill: #fff;
  animation: cx-shoot 3.4s cubic-bezier(.6,0,.2,1) infinite;
}
@keyframes cx-shoot {
  0%, 55%  { transform: translateX(0); opacity: 0; }
  58%      { opacity: 1; }
  74%,100% { transform: translateX(168px); opacity: 0; }
}

.cx-files rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
  animation: cx-vanish 4.2s ease-in-out infinite;
}
.cx-files rect:nth-child(2) { animation-delay: .35s; }
.cx-files rect:nth-child(3) { animation-delay: .7s; }
@keyframes cx-vanish {
  0%, 25%  { opacity: 1; transform: translateY(0); }
  55%, 88% { opacity: 0; transform: translateY(-6px); }
  100%     { opacity: 1; transform: translateY(0); }
}

.cx-wave {
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.2;
  stroke-linejoin: round;
  transform-origin: 100% 45px;
  animation: cx-quiet 5s ease-in-out infinite;
}
@keyframes cx-quiet {
  0%, 15%  { transform: scaleY(1); opacity: .9; }
  55%, 80% { transform: scaleY(.08); opacity: .45; }
  100%     { transform: scaleY(1); opacity: .9; }
}

.cx-art--pay {
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 24px;
  height: auto;
  min-height: 132px;
}
.cx-art--pay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.cx-art--code {
  justify-content: flex-start;
  padding: 18px 24px;
  height: auto;
  min-height: 132px;
}
.cx-art--code pre {
  margin: 0;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}
.cx-cursor { color: #fff; }
.cx-cursor::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  margin-left: 4px;
  vertical-align: -2px;
  background: #fff;
  animation: cx-blink 1.1s step-end infinite;
}
@keyframes cx-blink { 50% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .cx-pulse, .cx-files rect, .cx-wave, .cx-cursor::after { animation: none; }
  .cx-pulse { opacity: 1; }
}

@media (min-width: 901px) {
  .cx-why__card--wide { grid-column: span 1.5; }
  .cx-why { grid-template-columns: repeat(6, 1fr); }
  .cx-why__card { grid-column: span 2; }
  .cx-why__card--wide { grid-column: span 3; }
}

@media (max-width: 900px) {
  .cx-why { grid-template-columns: 1fr; }
}

/* ---------- vouches ---------- */
.cx-vouches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cx-vouches figure {
  margin: 0;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.cx-vouches figure:first-child {
  padding-left: 0;
  border-left: 0;
}
.cx-vouches blockquote {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 32ch;
}
.cx-vouches figcaption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}
.cx-more {
  margin: 40px 0 0;
  font-size: 14px;
}
.cx-more a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cx-more a:hover { color: #fff; border-bottom-color: #fff; }

@media (max-width: 900px) {
  .cx-vouches { grid-template-columns: 1fr; gap: 26px; }
  .cx-vouches figure {
    padding: 0 0 0 18px;
    border-left: 1px solid var(--line);
  }
  .cx-vouches figure:first-child { padding-left: 18px; border-left: 1px solid var(--line); }
}

/* ---------- closing ---------- */
.cx-closing {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 120px;
}
.cx-closing h2 { font-size: clamp(22px, 3vw, 28px); }
.cx-closing p {
  margin: 12px 0 26px;
  color: var(--ink-dim);
  font-size: 15px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cx-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .cx-grid,
  .cx-steps { grid-template-columns: 1fr; }
  .cx-section { padding-top: 64px; }
  .cx-closing { padding-top: 72px; padding-bottom: 80px; }
}


/* ============================================================
   CLAXUS — products page + shared chrome
   Paste at the bottom of assets/custom.css, below claxus-home.css.
   Targets SellAuth's own .sa-* classes, so it applies to the
   product listing, product page, cart and checkout as well.
   ============================================================ */

/* ---------- navigation ---------- */
.sa-header,
.sa-navbar {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.sa-navbar-link {
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  transition: color 0.15s ease;
}
.sa-navbar-link:hover,
.sa-navbar-link[aria-current] {
  color: #fff;
}

.sa-breadcrumbs {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- product cards ---------- */
.sa-product-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.sa-product-card:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.sa-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.sa-product-card h2,
.sa-product-card h3 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #eef0f4;
}

/* Price: the thing people scan for, so give it weight */
.sa-product-card [class*="price"] {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Stock state reads as status, not decoration */
.sa-product-card [class*="stock"] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- filters and inputs ---------- */
.sa-searchbar input,
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
select,
textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: #eef0f4 !important;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px;
}
input::placeholder,
textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.sa-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

/* ---------- buttons ---------- */
.sa-btn {
  border-radius: 999px !important;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  padding: 11px 22px !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

/* ---------- pagination ---------- */
.sa-pagination a,
.sa-pagination button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.sa-pagination [aria-current] {
  background: #e9edf3;
  color: #06070a;
  border-color: transparent;
}

/* ---------- page headings ---------- */
.sa-hero h1,
.sa-tpl-products h1 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Tracked-out capitals age a page fast — set them back to sentence case */
.sa-hero [class*="eyebrow"],
.sa-hero [class*="badge"],
.sa-hero [class*="pill"] {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: transparent !important;
}

/* ---------- footer ---------- */
.sa-footer {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sa-footer-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.sa-footer-link:hover { color: #fff; } 
/* ============================================================
   CLAXUS — navbar
   Written against the real markup:
     header.sa-header > nav.sa-navbar > div > div.glass-nav
   Paste at the VERY BOTTOM of assets/custom.css.
   ============================================================ */

/* The header itself carries no paint — .glass-nav does */
.sa-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* The actual bar: let the starfield through */
.sa-navbar .glass-nav {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

/* Kill the theme's own tint layer behind the bar */
.sa-navbar .glass-nav::before {
  background: none !important;
  backdrop-filter: none !important;
  opacity: 0 !important;
}

/* 89px is a lot of chrome above the fold — bring it in */
.sa-navbar [x-data="navbar"] { --sa-nav-h: 66px !important; }
.sa-navbar .glass-nav > .mx-auto {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* ---------- wordmark ---------- */
.sa-navbar-logo img { height: 24px !important; width: auto !important; }
.sa-navbar-logo span,
.sa-navbar-logo p {
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}

/* ---------- links ---------- */
.sa-navbar-link {
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 6px 10px !important;
  position: relative;
  transition: color 0.15s ease;
}
.sa-navbar-link:hover { color: #fff !important; background: none !important; }

.sa-navbar-link[aria-current],
.sa-navbar-link.active,
.sa-navbar-link[class*="active"] { color: #fff !important; background: none !important; }

.sa-navbar-link[aria-current]::after,
.sa-navbar-link.active::after,
.sa-navbar-link[class*="active"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

/* ---------- right-hand controls ---------- */
.sa-navbar select,
.sa-navbar .sa-scheme-toggle,
.sa-navbar .sa-navbar-cart,
.sa-navbar button:not([class*="sheet"]) {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.sa-navbar select:hover,
.sa-navbar .sa-scheme-toggle:hover,
.sa-navbar .sa-navbar-cart:hover,
.sa-navbar button:not([class*="sheet"]):hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.sa-navbar .sa-scheme-toggle svg { opacity: 0.5; }
.sa-navbar .sa-scheme-toggle:hover svg { opacity: 1; }

/* The white disc is the loudest thing in the bar — make it a ring */
.sa-navbar img[class*="rounded-full"],
.sa-navbar [class*="rounded-full"] > img,
.sa-navbar [class*="avatar"] {
  width: 30px !important;
  height: 30px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  filter: grayscale(1) brightness(0.85);
}

.sa-navbar-link:focus-visible,
.sa-navbar a:focus-visible,
.sa-navbar button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}
/* ============================================================
   CLAXUS — navbar, second pass
   Paste directly under claxus-navbar.css at the bottom of
   assets/custom.css.

   Pair with these builder changes to the navbar component:
     - remove the Home and Status links
     - add a link:  Discord     -> https://discord.gg/Y5kmBtVXkq
     - add a link:  Get access  -> /product/claxus
   ============================================================ */

/* A light-mode switch on an all-black starfield site only ever
   produces a broken-looking page. Drop it. */
.sa-navbar .sa-scheme-toggle { display: none !important; }

/* Currency: the quietest control in the bar, not a boxed chip */
.sa-navbar select {
  border: 0 !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
  color: rgba(255, 255, 255, 0.45) !important;
}
.sa-navbar select:hover { color: #fff !important; }

/* The one filled control: the path to buying */
.sa-navbar a[href*="/product/"] {
  background: #e9edf3 !important;
  color: #06070a !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  transition: background 0.15s ease;
}
.sa-navbar a[href*="/product/"]:hover { background: #fff !important; }
.sa-navbar a[href*="/product/"]::after { display: none !important; }

/* Discord sits as a plain link, same weight as any other */
.sa-navbar a[href*="discord"] {
  color: rgba(255, 255, 255, 0.55) !important;
  background: none !important;
  font-size: 14px !important;
}
.sa-navbar a[href*="discord"]:hover { color: #fff !important; }

/* Login steps back so it doesn't compete with Get access */
.sa-navbar a[href*="login" i],
.sa-navbar a[href*="account" i] {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}
.sa-navbar a[href*="login" i]:hover,
.sa-navbar a[href*="account" i]:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

/* Empty avatar ring adds nothing while logged out */
.sa-navbar [class*="rounded-full"]:empty { display: none !important; }

/* Tighter gaps now that there are fewer things in the bar */
.sa-navbar .glass-nav > .mx-auto > div { gap: 14px !important; }
/* ============================================================
   CLAXUS — navbar fixes
   Paste at the very bottom of assets/custom.css, under the
   other two navbar blocks.
   ============================================================ */

/* Wordmark only — drop the C mark from the bar */
.sa-navbar-logo img,
.sa-navbar-logo svg {
  display: none !important;
}
.sa-navbar-logo { gap: 0 !important; }

/* Stop the logo column from stretching into the links */
.sa-navbar-logo {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  white-space: nowrap;
}

/* Give the three columns room and keep them on one line */
.sa-navbar .glass-nav > .mx-auto > div {
  gap: 28px !important;
  flex-wrap: nowrap !important;
}

/* Centre group: allowed to shrink, never to overlap */
.sa-navbar .glass-nav > .mx-auto > div > div {
  min-width: 0 !important;
}
.sa-navbar .glass-nav > .mx-auto > div > div:nth-child(2) {
  display: none !important;
}
/* ============================================================
   CLAXUS — put the mark back in front of the wordmark
   Paste at the very bottom of assets/custom.css, below
   claxus-navbar-fix.css. It overrides the rule that hid it.
   ============================================================ */

.sa-navbar-logo img,
.sa-navbar-logo svg {
  display: block !important;
  height: 26px !important;
  width: auto !important;
}

/* Breathing room between mark and wordmark */
.sa-navbar-logo {
  gap: 10px !important;
  display: flex !important;
  align-items: center !important;
}

/* The mark is silver on black, so let it sit at full strength */
.sa-navbar-logo img { filter: none !important; opacity: 1 !important; }
* ============================================================
   CLAXUS — remove the seam under the navbar
   Paste at the very bottom of assets/custom.css.
   ============================================================ */

/* The hairline itself */
.sa-navbar .glass-nav,
.sa-header {
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.sa-navbar .glass-nav::after {
  display: none !important;
  border: 0 !important;
}

/* With no line, the bar needs to dissolve into the page instead
   of ending abruptly: fade the tint out toward the bottom. */
.sa-navbar .glass-nav {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.sa-header,
.sa-header *,
.sa-header *::before,
.sa-header *::after {
  border-bottom-width: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.sa-header::after,
.sa-header::before {
  content: none !important;
  display: none !important;
}

.sa-navbar .glass-nav::before,
.sa-navbar .glass-nav::after {
  content: none !important;
  display: none !important;
}
.sa-footer,
.sa-footer > *:first-child {
  border-top: 0 !important;
}
.sa-footer::before,
.sa-footer::after {
  content: none !important;
  display: none !important;
}
.sa-footer-rule {
  display: none !important;
}
.sa-footer,
.sa-footer > div {
  background: transparent !important;
}
.sa-footer,
.sa-footer > div,
.sa-footer .bg-background {
  background-color: transparent !important;
  background-image: none !important;
}
/* ============================================================
   CLAXUS — product page
   Paste at the bottom of assets/custom.css, above the navbar
   blocks. Scoped to body.sa-tpl-product so it can't affect
   anything else.
   ============================================================ */

.sa-tpl-product h1 {
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  letter-spacing: -0.025em !important;
  color: #eef0f4 !important;
}

/* ---------- gallery ---------- */
.sa-tpl-product img[class*="product"],
.sa-tpl-product [class*="gallery"] img,
.sa-tpl-product [class*="image"] > img {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- buy box ---------- */
.sa-tpl-product [class*="variant"] button,
.sa-tpl-product [class*="option"] button,
.sa-tpl-product [role="radio"] {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 12px 16px !important;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sa-tpl-product [class*="variant"] button:hover,
.sa-tpl-product [role="radio"]:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}
.sa-tpl-product [aria-checked="true"],
.sa-tpl-product [class*="variant"] button[class*="selected"],
.sa-tpl-product [class*="variant"] button[class*="active"] {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

/* Price is the number people scan for */
.sa-tpl-product [class*="price"] {
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
}

/* One filled button on the page: add to cart */
.sa-tpl-product button[class*="cart"],
.sa-tpl-product button[type="submit"],
.sa-tpl-product .sa-btn--primary {
  background: #e9edf3 !important;
  color: #06070a !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 14px 26px !important;
  transition: background 0.15s ease;
}
.sa-tpl-product button[class*="cart"]:hover,
.sa-tpl-product button[type="submit"]:hover {
  background: #fff !important;
}

/* Stock state: status, not decoration */
.sa-tpl-product [class*="stock"] {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

/* ---------- description / reviews tabs ---------- */
.sa-tpl-product [role="tablist"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 4px;
}
.sa-tpl-product [role="tab"] {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: 'Archivo', system-ui, sans-serif !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  position: relative;
}
.sa-tpl-product [role="tab"][aria-selected="true"] {
  color: #fff !important;
}
.sa-tpl-product [role="tab"][aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: -1px;
  height: 1px;
  background: #fff;
}

/* ---------- description body ---------- */
.sa-tpl-product [class*="description"] {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 70ch;
}
.sa-tpl-product [class*="description"] h2,
.sa-tpl-product [class*="description"] h3 {
  color: #eef0f4;
  font-weight: 600;
  font-size: 17px;
  margin: 28px 0 10px;
}
.sa-tpl-product [class*="description"] ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sa-tpl-product [class*="description"] li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.sa-tpl-product [class*="description"] strong { color: #fff; font-weight: 500; }