/* ==========================================================================
   KUBA SPORTS — site stylesheet
   --------------------------------------------------------------------------
   Written mobile-first: the default rules target a phone, and the @media
   blocks at the bottom of each section add what a wider screen can afford.
   Colours and spacing all come from the custom properties in :root, so
   changing the brand in one place changes it everywhere.
   ========================================================================== */

:root {
  /* Brand palette — taken from the approved Direction A mockup */
  --ink:        #0B0B0C;   /* page background */
  --surface:    #141416;   /* raised panels, alternating sections */
  --card:       #1A1A1E;   /* image wells behind product photos */
  --line:       #26262A;   /* hairline borders */
  --line-loud:  #46464B;   /* borders on interactive things */
  --text:       #F2F1EE;   /* body text */
  --muted:      #A3A29D;   /* secondary text */
  --volt:       #CBF442;   /* the accent */
  --volt-lift:  #E4FF8A;   /* accent on hover */
  --on-volt:    #1E2408;   /* text placed on a volt background */
  --warn:       #FF7A5A;   /* sold out, errors */

  /* Type */
  --display: Anton, "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale — everything is a multiple of these */
  --gap-xs: 8px;
  --gap-sm: 14px;
  --gap:    22px;
  --gap-lg: 40px;
  --gap-xl: 64px;

  /* The page gutter. Grows on bigger screens via the media queries below. */
  --gutter: 18px;
  --maxw: 1320px;
}

@media (min-width: 640px)  { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; } }
@media (min-width: 1400px) { :root { --gutter: 64px; } }

/* --------------------------------------------------------------------------
   Reset — only what we actually need, not a full normalise
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Any author `display` rule beats the browser's own [hidden] styling, so
   without this the hidden attribute silently does nothing on .card, .empty
   and anything else we give a display value to. */
[hidden] { display: none !important; }

img, picture, video { max-width: 100%; display: block; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus must stay visible — this is the only accessible default. */
:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

/* Screen-reader-only text (used for labels that would clutter the design) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section      { padding-block: 56px; }
.section--tight { padding-block: 36px; }
.section--alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

@media (min-width: 900px) {
  .section { padding-block: 88px; }
  .section--tight { padding-block: 56px; }
}

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--display);
  font-weight: 400;          /* Anton only ships one weight */
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

/* Fluid sizes: clamp(min, preferred, max) so type scales with the viewport
   without needing a breakpoint for every step. */
.display--xl { font-size: clamp(2.6rem, 11vw, 6rem); }
.display--lg { font-size: clamp(2rem, 7vw, 3.4rem); }
.display--md { font-size: clamp(1.5rem, 5vw, 2.2rem); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
}

.lede { font-size: clamp(1rem, 2.4vw, 1.18rem); color: var(--muted); }
.muted { color: var(--muted); }
.price { font-weight: 700; color: var(--volt); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  padding: 16px 26px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  /* 48px minimum tap target — thumbs on a phone, not a mouse */
  min-height: 48px;
}

.btn--primary { background: var(--volt); color: var(--on-volt); }
.btn--primary:hover { background: var(--volt-lift); }

.btn--ghost { border-color: var(--line-loud); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* The WhatsApp button carries its own green so it reads as WhatsApp,
   not as a generic call to action. */
.btn--whatsapp { background: #25D366; color: #06251A; }
.btn--whatsapp:hover { background: #3BE57B; }
.btn--whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-height: 62px;
}

.header__logo img { height: 24px; width: auto; }

/* Nav is hidden behind a toggle on phones and laid out inline from 900px up. */
.nav {
  display: none;
  gap: var(--gap-lg);
}
.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--volt);
  border-bottom-color: var(--volt);
}

.header__actions { display: flex; align-items: center; gap: var(--gap-sm); }

.header__cta { display: none; }

/* Bag pill with a live count */
.bag-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid var(--line-loud);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
}
.bag-link:hover { border-color: var(--volt); color: var(--volt); }
.bag-link__count {
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  display: grid;
  place-items: center;
  background: var(--volt);
  color: var(--on-volt);
  font-size: 0.72rem;
  line-height: 1;
}
.bag-link__count[data-empty="true"] { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line-loud);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* The panel that drops down when the hamburger is tapped */
.nav-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: var(--gap-sm) var(--gap);
}
.nav-panel[data-open="true"] { display: block; }
.nav-panel a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.nav-panel a:last-of-type { border-bottom: 0; }

@media (min-width: 900px) {
  .header__bar { min-height: 76px; }
  .header__logo img { height: 30px; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .nav-panel { display: none !important; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { border-bottom: 1px solid var(--line); }

.hero__grid { display: grid; }

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding-block: 44px 48px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); }

/* Portrait on phones so a standing figure is not cropped at the knees;
   the media query below lets it fill the column on desktop. */
.hero__media {
  position: relative;
  background: var(--card);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* The angled volt wedge from the mockup */
.hero__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 110px;
  background: var(--volt);
  clip-path: polygon(0 100%, 100% 26%, 100% 100%);
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }
  .hero__copy {
    padding-block: 80px;
    padding-right: var(--gap-xl);
    justify-content: center;
  }
  .hero__media {
    aspect-ratio: auto;
    min-height: 620px;
    border-left: 1px solid var(--line);
  }
  .hero__media::after { height: 170px; }
}

/* --------------------------------------------------------------------------
   Section heading with a link on the right
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: var(--gap-lg);
  flex-wrap: wrap;
}
.section-head a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt);
  border-bottom: 1px solid transparent;
}
.section-head a:hover { border-bottom-color: var(--volt); }

/* --------------------------------------------------------------------------
   Product grid and cards
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-sm);
}

@media (min-width: 700px)  { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card { display: flex; flex-direction: column; gap: 10px; }

.card__media {
  position: relative;
  background: var(--card);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

/* Second photo fades in on hover where one exists */
.card__media img + img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover .card__media img + img { opacity: 1; }

.card__tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--volt);
  color: var(--on-volt);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.card__name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}
.card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--gap-xs);
  font-size: 0.9rem;
}
.card__colours { color: var(--muted); font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */

.pdp { display: grid; gap: var(--gap-lg); padding-block: var(--gap-lg); }

@media (min-width: 950px) {
  .pdp {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--gap-xl);
    align-items: start;
    padding-block: var(--gap-xl);
  }
  .pdp__info { position: sticky; top: 100px; }
}

.gallery { display: flex; flex-direction: column; gap: var(--gap-sm); }

.gallery__main {
  background: var(--card);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.gallery__thumbs button {
  background: var(--card);
  border: 2px solid transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery__thumbs button[aria-current="true"] { border-color: var(--volt); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { display: flex; flex-direction: column; gap: var(--gap); }

.pdp__price {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--volt);
  line-height: 1;
}

.pdp__note {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--line-loud);
  padding-left: 12px;
}

/* Option pickers — size and colour */
.options { display: flex; flex-direction: column; gap: var(--gap-sm); }

.option__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--gap-xs);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.option__label a { color: var(--volt); text-decoration: underline; font-weight: 600; }

.swatches { display: flex; flex-wrap: wrap; gap: 8px; }

.swatch {
  min-width: 54px;
  min-height: 48px;
  padding: 12px 16px;
  background: none;
  border: 1px solid var(--line-loud);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.swatch:hover { border-color: var(--text); }
.swatch[aria-pressed="true"] {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--on-volt);
}

/* Quantity stepper */
.qty { display: inline-flex; align-items: stretch; border: 1px solid var(--line-loud); }
.qty button {
  width: 48px; min-height: 48px;
  background: none; border: 0;
  font-size: 1.2rem; cursor: pointer;
}
.qty button:hover { color: var(--volt); }
.qty input {
  width: 56px;
  background: none; border: 0;
  text-align: center;
  font-weight: 700;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp__actions { display: flex; flex-direction: column; gap: 10px; }

/* Collapsible detail blocks */
.accordion { border-top: 1px solid var(--line); }
.accordion summary {
  padding: 16px 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--volt); font-size: 1.2rem; }
.accordion[open] summary::after { content: "–"; }
.accordion__body { padding-bottom: 18px; color: var(--muted); font-size: 0.95rem; }
.accordion__body li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 7px;
}
.accordion__body li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 7px; height: 2px;
  background: var(--volt);
}

/* Sticky order bar that appears on phones once you scroll past the button */
.sticky-buy {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: none;
  gap: 10px;
  align-items: center;
  padding: 10px var(--gutter);
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-buy[data-show="true"] { display: flex; }
.sticky-buy .btn { flex: 1; padding-inline: 12px; }
.sticky-buy__price { font-family: var(--display); font-size: 1.3rem; color: var(--volt); }

@media (min-width: 950px) { .sticky-buy { display: none !important; } }

/* --------------------------------------------------------------------------
   Bag and line items
   -------------------------------------------------------------------------- */

.lines { display: flex; flex-direction: column; }

.line {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: var(--gap-sm);
  padding-block: var(--gap);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.line__media { background: var(--card); aspect-ratio: 4 / 5; overflow: hidden; }
.line__media img { width: 100%; height: 100%; object-fit: cover; }
.line__body { display: flex; flex-direction: column; gap: 8px; }
.line__top { display: flex; justify-content: space-between; gap: var(--gap-sm); }
.line__opts { font-size: 0.85rem; color: var(--muted); }
.line__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-sm); }
.line__remove {
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  padding: 8px 0;
}
.line__remove:hover { color: var(--warn); }

@media (min-width: 700px) {
  .line { grid-template-columns: 110px minmax(0, 1fr); }
}

.totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: var(--gap);
}
.totals__row { display: flex; justify-content: space-between; gap: var(--gap-sm); }
.totals__row--grand {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.5rem;
}
.totals__row--grand span:last-child { color: var(--volt); }

.empty {
  padding-block: var(--gap-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--gap-sm); }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px;
  min-height: 48px;
  background: var(--surface);
  border: 1px solid var(--line-loud);
  color: var(--text);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--volt);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field__hint { font-size: 0.8rem; color: var(--muted); }

.field-row { display: grid; gap: var(--gap-sm); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--gap);
}
@media (min-width: 700px) { .form-panel { padding: var(--gap-lg); } }

/* --------------------------------------------------------------------------
   Callout band (the volt "ordering for a gym or a team?" strip)
   -------------------------------------------------------------------------- */

.band {
  background: var(--volt);
  color: var(--on-volt);
  padding-block: 48px;
}
.band__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.band p { color: #24300A; }
.band__actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); align-items: center; }

@media (min-width: 900px) {
  .band { padding-block: 72px; }
  .band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-xl);
  }
  .band__copy { max-width: 700px; }
}

/* --------------------------------------------------------------------------
   Three-step / feature columns
   -------------------------------------------------------------------------- */

.steps { display: grid; gap: var(--gap-lg); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 56px; } }

.step { display: flex; flex-direction: column; gap: 12px; }
.step__num { font-family: var(--display); font-size: 1.25rem; color: var(--volt); }

/* --------------------------------------------------------------------------
   Tables (size guide)
   -------------------------------------------------------------------------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 420px; }
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
tbody tr:hover { background: var(--surface); }

/* --------------------------------------------------------------------------
   Prose blocks (about, exchanges)
   -------------------------------------------------------------------------- */

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: var(--gap); }
.prose p { color: var(--muted); }
.prose h2 { margin-top: var(--gap); }
.prose ul li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 9px; height: 2px;
  background: var(--volt);
}

/* --------------------------------------------------------------------------
   Notices
   -------------------------------------------------------------------------- */

.notice {
  border: 1px solid var(--line-loud);
  border-left: 3px solid var(--volt);
  background: var(--surface);
  padding: var(--gap-sm) var(--gap);
  font-size: 0.92rem;
  color: var(--muted);
}
.notice strong { color: var(--text); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: var(--gap-lg);
}
.footer__grid { display: grid; gap: var(--gap-lg); }
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap-xl); }
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--gap-sm);
}
.footer li { margin-bottom: 9px; }
.footer a { color: var(--muted); font-size: 0.92rem; }
.footer a:hover { color: var(--volt); }
.footer__logo img { height: 26px; margin-bottom: var(--gap-sm); }

.footer__bottom {
  margin-top: var(--gap-lg);
  padding-top: var(--gap);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm) var(--gap);
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Toast — confirmation when something is added to the bag
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translate(-50%, 16px);
  z-index: 90;
  background: var(--volt);
  color: var(--on-volt);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast[data-show="true"] { opacity: 1; transform: translate(-50%, 0); }
