/* ═══════════════════════════════════════════════════════════════════════════
   BURN DOWN YOUR LOCAL DATA CENTER
   Visual language: a decommissioning notice cable-tied to a server rack.
   Cold rolled steel, hazard tape, ember. Everything squared off — no soft
   corners anywhere in the build, because racks don't have them.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Fonts, self-hosted ───────────────────────────────────────────────────────
   These were originally pulled from Google Fonts with @import. Two reasons
   that had to go, in order of importance:

   1. It broke the site in Firefox. An @import is RENDER-BLOCKING, and
      Firefox's Enhanced Tracking Protection — on by default in private
      windows — blocks fonts.googleapis.com as a third party. A blocked
      import that hangs rather than fails fast means the parent stylesheet
      never applies, so the page renders with no CSS at all. Not a subtle
      degradation: completely unstyled.
   2. A brand about not handing infrastructure to hyperscalers should not
      phone Google on every page load to draw its own letterforms.

   Self-hosting is also simply faster: no extra DNS + TLS handshake, and no
   serialised request chain (CSS → @import → font file).

   Big Shoulders Display and IBM Plex Sans are VARIABLE fonts — one file
   covers the whole weight range, which is why the ranges below are declared
   rather than one @font-face per weight. Both are SIL Open Font License 1.1,
   which explicitly permits redistribution and self-hosting.
   ─────────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Big Shoulders Display';
  src: url('/static/fonts/bigshoulders-var.woff2') format('woff2-variations');
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/static/fonts/plexsans-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/static/fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/static/fonts/plexmono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/static/fonts/plexmono-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --void: #0b0c0e;
  --panel: #141619;
  --panel-2: #1b1e23;
  --steel: #262b31;
  --steel-hi: #363d45;
  --ash: #e8e6e3;
  --muted: #878e96;
  --dim: #5e666e;

  --ember: #ff5a1f;
  --ember-hot: #ff7a45;
  --amber: #ffb020;
  --signal: #3ddc84;
  --alarm: #ff3b30;

  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --gut: clamp(1rem, 4vw, 3rem);
  --maxw: 1340px;
}

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

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

body {
  margin: 0;
  background: var(--void);
  color: var(--ash);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  /* Fine grain over the whole page so flat fills read as painted metal. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ember); color: var(--void); }

/* ── Type ──────────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }

.mono { font-family: var(--mono); }

.tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
}
.tag--muted { color: var(--dim); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* Hazard tape — the brand's one recurring ornament. */
.hazard {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg, var(--amber) 0 14px, var(--void) 14px 28px
  );
  opacity: .85;
}
.hazard--thin { height: 4px; opacity: .5; }

/* ── Announcement + header ─────────────────────────────────────────────── */
.announce {
  background: var(--ember);
  color: var(--void);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: .55rem 1rem;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, .92);
  -webkit-backdrop-filter: blur(14px); /* Safari, iOS included, still wants the prefix */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--steel);
}
.masthead__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem var(--gut);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark {
  width: 34px; height: 34px;
  flex: none;
  border: 2px solid var(--ember);
  display: grid;
  place-items: center;
  position: relative;
}
/* Three rack units, the middle one on fire. */
.brand__mark::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--ember);
  box-shadow: 0 -5px 0 var(--muted), 0 5px 0 var(--muted);
}
.brand__text {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 12ch;
}
.brand__text em { color: var(--ember); font-style: normal; }

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav a:hover, .nav a.is-active { color: var(--ash); border-bottom-color: var(--ember); }

.cart-link {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--steel-hi);
  padding: .5rem .85rem;
  color: var(--ash);
  transition: border-color .18s, background .18s;
  white-space: nowrap;
}
.cart-link:hover { border-color: var(--ember); background: rgba(255, 90, 31, .08); }
.cart-link b { color: var(--ember); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--steel-hi);
  color: var(--ash);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  padding: .5rem .7rem;
  cursor: pointer;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    padding-top: .8rem;
    border-top: 1px solid var(--steel);
    margin-top: .8rem;
  }
  .masthead__inner { flex-wrap: wrap; }
  .nav.is-open { display: flex; }
  .nav a { padding: .55rem 0; width: 100%; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--steel);
}
/* Ember glow rising from the floor of the section. */
.hero::before {
  content: '';
  position: absolute;
  left: 50%; bottom: -55%;
  width: min(1100px, 130vw); aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 90, 31, .20) 0%, rgba(255, 90, 31, .05) 42%, transparent 68%);
  pointer-events: none;
}
/* Rack rails receding in the background. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 74px);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero h1 {
  max-width: 16ch;
  margin: 1.1rem 0 0;
}
.hero h1 .burn {
  color: var(--ember);
  display: inline-block;
  text-shadow: 0 0 42px rgba(255, 90, 31, .55);
}
.hero__sub {
  margin: 1.6rem 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }

/* Staggered entrance — one orchestrated load beats scattered fidgeting. */
.rise { opacity: 0; transform: translateY(18px); animation: rise .7s cubic-bezier(.2, .7, .3, 1) forwards; }
.rise:nth-child(1) { animation-delay: .05s; }
.rise:nth-child(2) { animation-delay: .13s; }
.rise:nth-child(3) { animation-delay: .21s; }
.rise:nth-child(4) { animation-delay: .29s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .95rem 1.6rem;
  border: 1px solid var(--ember);
  background: var(--ember);
  color: var(--void);
  cursor: pointer;
  position: relative;
  transition: transform .14s, box-shadow .18s, background .18s;
}
.btn:hover { background: var(--ember-hot); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(255, 90, 31, .35); }
.btn:active { transform: none; box-shadow: none; }
.btn--ghost { background: transparent; color: var(--ash); border-color: var(--steel-hi); }
.btn--ghost:hover { background: rgba(255, 255, 255, .04); border-color: var(--ash); box-shadow: 4px 4px 0 rgba(255, 255, 255, .1); }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled], .btn.is-disabled {
  opacity: .4; pointer-events: none; filter: grayscale(1);
}

/* ── Section headers ───────────────────────────────────────────────────── */
.sec { padding: clamp(3.5rem, 9vh, 6rem) 0; }
.sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--steel);
}
.sec__head p { margin: .6rem 0 0; color: var(--muted); max-width: 52ch; }

/* ── Product grid ──────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}

.card {
  background: var(--void);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s;
}
.card:hover { background: var(--panel); }

.card__media {
  aspect-ratio: 4 / 5;
  background: var(--panel-2);
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1), filter .4s;
  filter: saturate(.92);
}
.card:hover .card__media img { transform: scale(1.045); filter: saturate(1.05); }

/* Placeholder when a product has no photo yet: a rack elevation. */
.card__media--empty {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(0deg, var(--panel-2) 0 22px, var(--panel) 22px 24px);
}
.card__media--empty span { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; color: var(--dim); }

.card__body { padding: 1.1rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card__title { font-family: var(--display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; line-height: .95; }
.card__meta { font-family: var(--mono); font-size: .72rem; color: var(--dim); letter-spacing: .08em; }
.card__price { font-family: var(--mono); font-size: .95rem; font-weight: 600; margin-top: auto; padding-top: .6rem; }
.card__price s { color: var(--dim); font-weight: 400; margin-right: .5rem; }

.flag {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .38rem .7rem;
  background: var(--ember);
  color: var(--void);
  z-index: 2;
}
.flag--out { background: var(--steel-hi); color: var(--muted); }
.flag--low { background: var(--amber); color: var(--void); }

/* ── Product detail ────────────────────────────────────────────────────── */
.pdp { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); padding: clamp(2rem, 6vh, 4rem) 0; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

.gallery { display: flex; flex-direction: column; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.gallery__main { aspect-ratio: 1; background: var(--panel-2); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 1px; }
.gallery__thumbs button {
  aspect-ratio: 1; padding: 0; border: 0; background: var(--panel-2); cursor: pointer; overflow: hidden;
  outline-offset: -2px;
}
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .2s; }
.gallery__thumbs button[aria-current='true'] img, .gallery__thumbs button:hover img { opacity: 1; }
.gallery__thumbs button[aria-current='true'] { outline: 2px solid var(--ember); }

.pdp__title { margin: .7rem 0 .3rem; }
.pdp__price { font-family: var(--mono); font-size: 1.5rem; font-weight: 600; margin: 1.1rem 0; }
.pdp__price s { color: var(--dim); font-size: 1.05rem; font-weight: 400; margin-right: .6rem; }
.pdp__desc { color: var(--muted); white-space: pre-line; }

.spec {
  margin-top: 2rem;
  border-top: 1px solid var(--steel);
  font-family: var(--mono);
  font-size: .78rem;
}
.spec div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--steel); }
.spec dt, .spec span:first-child { color: var(--dim); letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }

/* Size picker — laid out like a patch panel. */
.opts { margin: 1.8rem 0; }
.opts__label { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: .7rem; }
.swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 500;
  min-width: 3.4rem;
  padding: .7rem .9rem;
  text-align: center;
  border: 1px solid var(--steel-hi);
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  transition: all .16s;
  position: relative;
}
.swatch:hover:not(:disabled) { border-color: var(--ash); }
.swatch[aria-pressed='true'] { background: var(--ember); border-color: var(--ember); color: var(--void); font-weight: 600; }
.swatch:disabled {
  color: var(--dim);
  cursor: not-allowed;
  border-color: var(--steel);
  background: repeating-linear-gradient(-45deg, transparent 0 5px, rgba(255, 255, 255, .04) 5px 10px);
}

.stock-line { font-family: var(--mono); font-size: .76rem; margin: 1rem 0; letter-spacing: .06em; }
.stock-line--in { color: var(--signal); }
.stock-line--low { color: var(--amber); }
.stock-line--out { color: var(--dim); }
.stock-line b { font-weight: 600; }

.qty { display: flex; align-items: stretch; border: 1px solid var(--steel-hi); width: max-content; }
.qty button { background: none; border: 0; color: var(--ash); font-family: var(--mono); font-size: 1.1rem; width: 2.6rem; cursor: pointer; }
.qty button:hover { background: var(--panel-2); color: var(--ember); }
.qty input {
  width: 3.2rem; text-align: center; background: none; border: 0; color: var(--ash);
  font-family: var(--mono); font-size: .95rem; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-row { display: flex; gap: .8rem; align-items: stretch; margin-top: 1.4rem; flex-wrap: wrap; }
.buy-row .btn { flex: 1; min-width: 200px; justify-content: center; }

/* ── Cart / tables ─────────────────────────────────────────────────────── */
.linetable { width: 100%; border-collapse: collapse; }
.linetable th {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); text-align: left; padding: .8rem 0; border-bottom: 1px solid var(--steel); font-weight: 500;
}
.linetable td { padding: 1.2rem 0; border-bottom: 1px solid var(--steel); vertical-align: top; }
.linetable .num { text-align: right; font-family: var(--mono); white-space: nowrap; }

.lineitem { display: flex; gap: 1rem; align-items: flex-start; }
.lineitem__img { width: 76px; height: 95px; flex: none; object-fit: cover; background: var(--panel-2); }
.lineitem__name { font-family: var(--display); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; line-height: 1; }
.lineitem__meta { font-family: var(--mono); font-size: .72rem; color: var(--dim); margin-top: .35rem; }

.totals { font-family: var(--mono); font-size: .9rem; }
.totals div { display: flex; justify-content: space-between; gap: 2rem; padding: .55rem 0; }
.totals div.is-total {
  border-top: 1px solid var(--steel-hi); margin-top: .5rem; padding-top: .9rem;
  font-size: 1.35rem; font-weight: 600;
}
.totals .label { color: var(--muted); }
.totals .is-total .label { color: var(--ash); }
.totals .free { color: var(--signal); }

.panel { background: var(--panel); border: 1px solid var(--steel); padding: clamp(1.3rem, 3vw, 2rem); }

.cart-layout { display: grid; grid-template-columns: 1.6fr .8fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 880px) { .cart-layout { grid-template-columns: 1fr; } }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dim); margin-bottom: .45rem;
}
.input, input[type='text'], input[type='email'], input[type='password'], input[type='number'], input[type='date'], select, textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--steel-hi);
  color: var(--ash);
  font-family: var(--body);
  font-size: .95rem;
  padding: .75rem .9rem;
  transition: border-color .18s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ember); }
textarea { min-height: 130px; resize: vertical; font-family: var(--body); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.inline-form { display: flex; gap: .5rem; }
.inline-form input { flex: 1; }

/* ── Notices ───────────────────────────────────────────────────────────── */
.notice {
  border-left: 3px solid var(--amber);
  background: rgba(255, 176, 32, .07);
  padding: .9rem 1.1rem;
  font-size: .9rem;
  margin-bottom: 1.2rem;
}
.notice--bad { border-color: var(--alarm); background: rgba(255, 59, 48, .08); }
.notice--good { border-color: var(--signal); background: rgba(61, 220, 132, .07); }
.notice ul { margin: .4rem 0 0; padding-left: 1.1rem; }

.empty { text-align: center; padding: clamp(3rem, 12vh, 7rem) 1rem; }
.empty h2 { color: var(--steel-hi); }
.empty p { color: var(--muted); margin: 1rem auto 2rem; max-width: 42ch; }

/* ── Marquee strip ─────────────────────────────────────────────────────── */
.strip {
  border-block: 1px solid var(--steel);
  background: var(--panel);
  overflow: hidden;
  padding: .9rem 0;
}
.strip__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: slide 42s linear infinite;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.strip__track span::before { content: '◆'; color: var(--ember); margin-right: 3rem; }
@keyframes slide { to { transform: translateX(-50%); } }
.strip:hover .strip__track { animation-play-state: paused; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--steel); padding: clamp(2.5rem, 6vh, 4rem) 0 2rem; margin-top: 2rem; }
.foot__grid { display: grid; grid-template-columns: 1.6fr repeat(auto-fit, minmax(150px, 1fr)); gap: 2.4rem; }
.foot h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin: 0 0 .9rem; font-weight: 500; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.foot a { color: var(--muted); font-size: .9rem; transition: color .18s; }
.foot a:hover { color: var(--ember); }
.foot__bottom {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--steel);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--mono); font-size: .7rem; color: var(--dim); letter-spacing: .1em;
}

/* ── Utility ───────────────────────────────────────────────────────────── */
.stack > * + * { margin-top: 1.2rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.crumb { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.crumb a:hover { color: var(--ember); }
.status-pill {
  display: inline-block; font-family: var(--mono); font-size: .64rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; padding: .3rem .6rem; border: 1px solid currentColor;
}
.status-pill--paid { color: var(--signal); }
.status-pill--shipped { color: var(--ember); }
.status-pill--pending { color: var(--amber); }
.status-pill--cancelled, .status-pill--refunded { color: var(--dim); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ember); color: var(--void);
  padding: .7rem 1.1rem; font-family: var(--mono); font-size: .78rem; z-index: 100;
}
.skip:focus { left: 0; }
