.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 2px;
  padding-top: 2px;
}
.product-card {
  min-width: 0;
}
.product-card__image-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  background: #f1efec;
  padding: 0;
}
.product-card__image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.product-card__worn {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card__image-button:hover .product-card__still,
.product-card__image-button:focus-visible .product-card__still {
  opacity: 0;
}
.product-card__image-button:hover .product-card__worn,
.product-card__image-button:focus-visible .product-card__worn {
  opacity: 1;
  transform: scale(1.02);
}
.product-grid--standalone {
  padding: 2px 30px 0;
  background: #fff;
}
.product-card__quick {
  position: absolute;
  inset: auto 10px 10px;
  min-height: 40px;
  transform: translateY(60px);
  background: #fff;
  padding: 9px 12px;
  font-size: .8rem;
  transition: transform 180ms ease;
}
.product-card__image-button:hover .product-card__quick,
.product-card__image-button:focus-visible .product-card__quick {
  transform: translateY(0);
}
.product-card__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 14px 10px 10px;
  font-size: .82rem;
  line-height: 1.35;
}
.product-card__name {
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 600;
  text-align: left;
}
.product-card__info span:nth-of-type(1) {
  grid-column: 1;
  color: #666;
}
.product-card__info span:last-child {
  grid-column: 2;
  grid-row: 1;
}
.product-card__stock {
  display: block;
  margin: 0 0 10px;
  padding-inline: 10px;
  color: #666;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card__stock--out {
  color: var(--crimson);
}
.product-card--sold-out .product-card__still,
.product-card--sold-out .product-card__worn {
  filter: grayscale(1) contrast(.9);
}
.product-dialog__copy .product-card__stock {
  margin: 4px 0 16px;
  padding-inline: 0;
}
.product-card__add {
  width: calc(100% - 20px);
  min-height: 44px;
  margin-inline: 10px;
  border: 1px solid #111;
  background: #fff;
  font-size: .82rem;
}
.product-card__add:hover,
.product-dialog__add:hover,
.checkout-button:hover {
  background: #111;
  color: #fff;
}
dialog {
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  background: #fff;
  padding: 0;
  color: #111;
}
dialog::backdrop {
  background: rgba(0, 0, 0, .26);
  backdrop-filter: blur(2px);
}
.dialog-close {
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
}
.product-dialog {
  inset: 0 0 0 auto;
  width: min(920px, 94vw);
  height: 100dvh;
}
.product-dialog > .dialog-close {
  position: absolute;
  inset: 14px 14px auto auto;
}
.product-dialog__layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 100%;
}
.product-dialog__layout > img {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}
.product-dialog__copy {
  align-self: center;
  padding: 80px 42px 56px;
}
.product-code,
.product-dialog__colour,
.product-disclaimer {
  color: #666;
  font-size: .78rem;
}
.product-dialog__copy h2 {
  margin: 18px 0 8px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  letter-spacing: -.055em;
}
.product-dialog__note {
  max-width: 40ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.4;
}
.product-dialog__price {
  margin: 26px 0;
  font-size: 1.15rem;
}
.product-dialog__add,
.checkout-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 600;
}
.product-dialog__add:hover,
.checkout-button:hover {
  background: #fff;
  color: #111;
}
.product-facts {
  margin: 38px 0 24px;
  border-top: 1px solid #d7d7d7;
}
.product-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #d7d7d7;
  font-size: .78rem;
}
.product-facts dd {
  margin: 0;
}
.product-facts dt {
  color: #666;
}
.bag-dialog {
  inset: 0 0 0 auto;
  width: min(520px, 100vw);
  height: 100dvh;
}
.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid #dedede;
  padding: 12px 22px;
}
.dialog-heading h2 {
  margin: 0;
  font-size: 1.15rem;
}
.bag-lines {
  height: calc(100dvh - 320px);
  overflow-y: auto;
  padding: 0 22px;
}
.bag-empty {
  margin-top: 48px;
  color: #666;
}
.bag-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #dedede;
}
.bag-line img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}
.bag-line h3 {
  margin: 0 0 4px;
  font-size: .95rem;
}
.bag-line p,
.bag-line label,
.bag-line button {
  margin: 0;
  color: #666;
  font-size: .75rem;
}
.bag-line label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bag-line input {
  width: 52px;
  min-height: 38px;
  border: 1px solid #ccc;
  padding: 4px 6px;
}
.bag-line button {
  min-height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
}
.bag-summary {
  position: absolute;
  inset: auto 0 0;
  border-top: 1px solid #111;
  background: #fff;
  padding: 20px 22px 24px;
}
.bag-summary > p:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bag-summary > p:not(:first-child) {
  color: #666;
  font-size: .74rem;
}
.checkout-note {
  margin: 10px 0 0;
}
.product-dialog__wordmark {
  display: flex;
  gap: 18px;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
  font-size: .86rem;
}
.product-dialog__wordmark legend {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}
.product-dialog__wordmark label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bag-line select {
  border: 1px solid #111;
  background: #fff;
  padding: 2px 6px;
  font: inherit;
  font-size: .78rem;
}
.product-dialog__bag {
  display: block;
  margin: 12px 0 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #666;
  font-size: .8rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.evidence-dialog {
  inset: 0 0 0 auto;
  width: min(520px, 100vw);
  height: 100dvh;
}
.evidence-dialog__intro {
  margin: 0;
  padding: 22px 22px 0;
  color: #444;
  font-size: .92rem;
  line-height: 1.5;
}
.evidence-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.evidence-form label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.evidence-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #111;
  background: #fff;
  padding: 0 14px;
  font: inherit;
}
.evidence-form label.evidence-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
  color: #444;
}
.evidence-form__consent input {
  margin-top: 4px;
}
.evidence-form__where {
  border: 0;
  padding: 0;
  margin: 0;
}
.evidence-form__where legend {
  width: 100%;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.evidence-form__hint {
  margin: 6px 0 10px;
  color: #666;
  font-size: .78rem;
  line-height: 1.45;
}
.evidence-form__where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.evidence-form__field {
  display: grid;
  gap: 6px;
  align-content: start;
}
.evidence-form input[type="text"]:not(.evidence-form__hp),
.evidence-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  padding: 0 14px;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.evidence-form select {
  /* the chevron is drawn, not downloaded */
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.evidence-form__wordmark {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
}
.evidence-form__wordmark legend {
  width: 100%;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.evidence-form .evidence-form__wordmark label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
}
.evidence-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.evidence-form__result {
  min-height: 1.5em;
  margin: 0;
  color: #111;
  font-size: .86rem;
}
/* A successful entry is a receipt, not a thank-you: a stamp, three flat statements, a case
   number and a line of small print that admits what just happened. */
.evidence-form__result--receipt {
  display: grid;
  gap: 6px;
  border: 1px solid #111;
  padding: 16px 16px 14px;
  background: #fff;
}
.evidence-result__stamp {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.evidence-result__line { color: #444; line-height: 1.45; }
.evidence-result__case {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  line-height: 1.9;
  text-transform: uppercase;
  color: #8F1020;
}
.evidence-result__note {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #999;
}
button:focus-visible,
input:focus-visible {
  outline: 3px solid #111;
  outline-offset: 2px;
}
.legal {
  width: min(100%, 860px);
  margin-inline: auto;
  padding: 72px 30px 120px;
}
.legal h1 {
  margin: 14px 0 48px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -.05em;
}
.legal h2 {
  margin: 64px 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -.03em;
}
.legal h3 {
  margin: 28px 0 12px;
  font-size: 1rem;
}
.legal p {
  max-width: 68ch;
}
.legal__intro {
  font-size: 1.05rem;
}
.legal__notice {
  margin: 36px 0;
  border-inline-start: 2px solid #111;
  background: #f4f2ef;
  padding: 18px 20px;
}
.legal__notice p {
  margin: 0;
  font-size: .88rem;
}
.legal__dl {
  margin: 0;
  border-top: 1px solid #111;
}
.legal__dl div {
  display: grid;
  grid-template-columns: minmax(9rem, .34fr) minmax(0, .66fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #d7d7d7;
}
.legal__dl dt {
  color: #666;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal__dl dd {
  margin: 0;
  font-size: .92rem;
}
.legal__small,
.legal__updated {
  color: #666;
  font-size: .82rem;
}
.review-status {
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #f4f2ef;
  padding: 12px 30px;
  color: #444;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.campaign-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}
.footer-lockup__eye {
  display: block;
  width: 60px;
  aspect-ratio: 1476 / 480;
  clip-path: polygon(
    9% 50%, 13% 48%, 17% 40%, 22% 30%, 30% 20%, 40% 12%,
    50% 9%, 60% 12%, 70% 20%, 78% 30%, 83% 40%, 87% 48%,
    91% 50%, 87% 52%, 83% 61%, 78% 71%, 70% 82%, 60% 91%,
    50% 95%, 40% 91%, 30% 82%, 22% 71%, 17% 61%, 13% 52%
  );
}
.footer-lockup__eye img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .legal {
    padding: 48px 20px 88px;
  }
  .legal__dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .review-status {
    padding-inline: 20px;
  }
}
@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .product-dialog__layout {
    display: block;
  }
  .product-dialog__layout > img {
    position: static;
    height: auto;
  }
  .product-dialog__copy {
    padding: 36px 20px 56px;
  }
  .bag-line {
    grid-template-columns: 72px 1fr;
  }
  .bag-line > strong {
    grid-column: 2;
  }
}

/* Evidence log page */
.log-empty {
  margin: 32px 0;
  color: #666;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.log-list {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.log-entry {
  border-top: 1px solid #111;
  padding: 24px 0 32px;
}
.log-entry__meta {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px;
  color: #666;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.log-entry h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.log-entry img {
  margin-top: 16px;
  border: 1px solid #d7d7d7;
}

/* Consent bar — analytics stays denied until this is answered (js/consent.js) */
.consent {
  position: fixed;
  z-index: 90;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px 28px;
  border-top: 1px solid #111;
  background: #fff;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
}
.consent__text p {
  margin: 0;
  max-width: 68ch;
  font-size: .84rem;
  line-height: 1.45;
}
.consent__text p:first-child {
  margin-bottom: 2px;
}
.consent__text a {
  color: inherit;
}
.consent__actions {
  display: flex;
  gap: 10px;
}
.consent__button {
  min-height: 44px;
  border: 1px solid #111;
  background: #111;
  padding: 0 20px;
  color: #fff;
  font: inherit;
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
}
.consent__button--ghost {
  background: #fff;
  color: #111;
  font-weight: 400;
}
@media (max-width: 600px) {
  .consent {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  }
  .consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .consent__button {
    padding: 0 12px;
  }
}

/* --- Mobile shopping ------------------------------------------------------ */
@media (max-width: 600px) {
  /* Two columns beat one long column of eight: you can compare pieces at a glance. */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 32px;
  }
  .product-card__info {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0 6px;
    font-size: .78rem;
  }
  .product-card__info span:last-child {
    grid-column: 1;
    grid-row: auto;
  }
  .product-card__name {
    min-height: 0;
    font-size: .82rem;
    line-height: 1.25;
  }
  .product-card__quick { display: none; }     /* no hover on a phone */
  .product-card__stock { padding-inline: 0; margin-bottom: 8px; }
  .product-card__add {
    min-height: 44px;
    padding-inline: 8px;
    font-size: .78rem;
  }

  /* dialogs run full-bleed and clear the home indicator */
  .product-dialog,
  .bag-dialog,
  .evidence-dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
  }
  .bag-summary { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .bag-lines { height: calc(100dvh - 360px); }
  .evidence-form { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
  .evidence-form__where-grid { grid-template-columns: 1fr; }
  .product-dialog__copy { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  /* the bag line stops being a cramped two-column grid */
  .bag-line {
    grid-template-columns: 88px 1fr;
    column-gap: 14px;
    align-items: start;
  }
  .bag-line img { width: 88px; height: 88px; }
  .bag-line label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
  }
  .bag-line > strong { grid-column: 1 / -1; padding-top: 6px; }
  .bag-line button[data-remove] { min-height: 44px; }
}

/* Tap targets and iOS input behaviour, at every size ------------------------ */
.product-card__name,
.product-dialog__bag,
.site-footer nav a,
.bag-line button[data-remove] {
  min-height: 44px;
}
.product-card__name { display: flex; align-items: center; }
.product-dialog__bag { display: inline-flex; align-items: center; }
.bag-line input,
.bag-line select,
.evidence-form input[type="email"],
.evidence-form input[type="text"],
.evidence-form select {
  font-size: 16px;                 /* below 16px iOS zooms the page on focus */
}
.bag-line input[data-quantity] {
  width: 72px;
  min-height: 44px;
  border: 1px solid #111;
  padding: 0 8px;
  text-align: center;
}
.bag-line select {
  min-height: 44px;
  border: 1px solid #111;
  background: #fff;
  padding: 0 8px;
}
.evidence-form__wordmark label,
.evidence-form__consent {
  min-height: 44px;
}
.evidence-form input[type="radio"],
.evidence-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #111;
}
@media (hover: none) {
  /* the worn image never shows on touch, so do not download or animate it */
  .product-card__worn { display: none; }
}

/* Quantity stepper — tapping beats typing on a phone */
.bag-line__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
.bag-line__label {
  color: #666;
  font-size: .8rem;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111;
}
.qty__step {
  width: 40px;
  min-height: 42px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
}
.bag-line .qty input[data-quantity] {
  width: 40px;
  min-height: 42px;
  border: 0;
  border-inline: 1px solid #111;
  padding: 0;
  text-align: center;
  -moz-appearance: textfield;
}
.bag-line .qty input[data-quantity]::-webkit-outer-spin-button,
.bag-line .qty input[data-quantity]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.bag-line > div { min-width: 0; }
.bag-line select {
  max-width: 170px;
  min-width: 0;
}
.bag-line__row + .bag-line__row { margin-top: 8px; }
.qty__step { font-size: 1.25rem; font-weight: 600; line-height: 1; }
.bag-line > div { display: grid; gap: 2px; }

/* ---------------------------------------------------------------------------
   First reserve — the status headline as a live readout.
   drop-status.js writes the real remaining count (config reserve, minus real sales and
   reservations from /api/stock) and re-renders it whenever the live numbers land.
   js/first-reserve.js churns the digits for ~600ms before they settle on that number.
   Only the render glitches: inventing the figure would be false scarcity, blacklisted by
   UCPD Annex I §7, and the same manipulation this brand exists to refuse.
   --------------------------------------------------------------------------- */
.status__count {
  font-variant-numeric: tabular-nums;   /* churn cannot shift the line */
}
[data-first-reserve][data-glitching] .status__count {
  animation: first-reserve-jitter 55ms steps(2, end) infinite;
  text-shadow: -2px 0 rgba(232, 0, 0, .7), 2px 0 rgba(0, 190, 232, .7);
}
@keyframes first-reserve-jitter {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-1px, 1px); }
  100% { transform: translate(1px, 0); }
}

/* ---------------------------------------------------------------------------
   CRT interference on the card hover.
   Pointer devices only — a touch screen has no hover, and the worn image is already
   hidden there — and off entirely under reduced motion.
   --------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .product-card__image-button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    /* Scanlines over fractal noise, both inline so nothing leaves the origin. */
    background-image:
      repeating-linear-gradient(to bottom, rgba(0, 0, 0, .22) 0 1px, transparent 1px 3px),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 100% 100%, 120px 120px;
    mix-blend-mode: overlay;
    transition: opacity 220ms ease;
  }
  .product-card__image-button:hover::after,
  .product-card__image-button:focus-visible::after {
    opacity: .55;
    animation: crt-roll 2.6s linear infinite, crt-flicker 140ms steps(2, end) 6;
  }
  /* Channel separation on the incoming frame, decaying as the signal locks. */
  .product-card__image-button:hover .product-card__worn,
  .product-card__image-button:focus-visible .product-card__worn {
    animation: crt-split 420ms steps(3, end) 1;
  }
}
@keyframes crt-roll {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 0, 0 120px; }
}
@keyframes crt-flicker {
  0%   { opacity: .55; }
  50%  { opacity: .28; }
  100% { opacity: .55; }
}
@keyframes crt-split {
  0%   { filter: drop-shadow(-3px 0 rgba(232, 0, 0, .8)) drop-shadow(3px 0 rgba(0, 190, 232, .8)); transform: translateX(-2px) scale(1.02); }
  50%  { filter: drop-shadow(2px 0 rgba(232, 0, 0, .5)) drop-shadow(-2px 0 rgba(0, 190, 232, .5)); transform: translateX(1px) scale(1.02); }
  100% { filter: none; transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  [data-first-reserve][data-glitching] .status__count,
  .product-card__image-button::after,
  .product-card__image-button:hover::after,
  .product-card__image-button:focus-visible::after,
  .product-card__image-button:hover .product-card__worn,
  .product-card__image-button:focus-visible .product-card__worn {
    animation: none;
  }
  [data-first-reserve][data-glitching] .status__count { text-shadow: none; }
  .product-card__image-button::after { display: none; }
}

/* Shipping is chosen before checkout so the price shown is the price charged. */
.bag-shipping {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 14px 0 8px;
  font-size: .8rem;
}
.bag-shipping select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  padding: 0 10px;
  font: inherit;
  font-size: 16px;
}
.bag-shipping-total {
  display: flex;
  justify-content: space-between;
  margin: 6px 0 14px !important;
  color: #111 !important;
  font-size: .8rem !important;
}
