* { box-sizing: border-box; }
:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --line: rgba(255,255,255,.12);
  --muted: rgba(255,255,255,.68);
  --red: #df1717;
  --red-2: #ff2b2b;
  --white: #fff;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 86%, rgba(160,0,0,.18), transparent 30%),
    radial-gradient(circle at 16% 8%, rgba(100,100,100,.12), transparent 25%),
    var(--bg);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.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;
}
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 950;
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.brand span { border-bottom: 5px solid var(--red); }
.links { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.75); }
.links a { font-size: 13px; font-weight: 950; letter-spacing: 1.5px; text-transform: uppercase; }
.links a:hover, footer a:hover { color: #fff; }
.links .order-cta,
.mobile-links .order-cta {
  min-height: 44px;
  background: var(--red);
  color: #fff;
  padding: 0 18px;
}
.links .order-cta:hover,
.mobile-links .order-cta:hover {
  background: var(--red-2);
  color: #fff;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-link span {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.menu-toggle,
.mobile-links { display: none; }
.menu-toggle { width: 50px; padding: 0; }
.mobile-links {
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.96);
  padding: 14px 16px 18px;
}
.mobile-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
body.menu-open { overflow: hidden; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 22px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.button.secondary { border: 1px solid rgba(255,255,255,.32); background: transparent; }
.button:hover, button:hover { background: var(--red-2); }
.button.secondary:hover { background: #fff; color: #000; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--red-2);
  outline-offset: 3px;
}
.hero { padding: 64px 0 34px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 950px;
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 112px);
  line-height: .88;
  letter-spacing: -2px;
  text-transform: uppercase;
}
h2 { font-size: clamp(34px, 5vw, 64px); line-height: .95; text-transform: uppercase; }
p { color: var(--muted); line-height: 1.55; }
.lead { max-width: 720px; color: rgba(255,255,255,.82); font-size: clamp(19px,2.2vw,26px); line-height: 1.32; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; padding: 54px 0; }
.panel {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.46);
  padding: clamp(24px,4vw,42px);
}
.steps { counter-reset: steps; display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; }
.steps li {
  counter-increment: steps;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 16px 18px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
}
.steps li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--red-2);
  display: block;
  font-weight: 950;
  margin-bottom: 6px;
}
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.card-media, .product-main-media {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.card-media { aspect-ratio: 4 / 3; }
.card-media img, .product-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.85) contrast(1.08) brightness(1.05);
}
.product-main-media { aspect-ratio: 4 / 5; }
.product-main-media.contain img, .card-media.contain img { object-fit: contain; padding: 10px; }
.card h2, .card h3 { margin: 16px 0 8px; font-size: 26px; text-transform: uppercase; }
.card p { flex: 1; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.old-price { color: rgba(255,255,255,.46); text-decoration: line-through; font-weight: 850; }
.price { color: #fff; font-size: 28px; font-weight: 950; }
.save { color: var(--red-2); font-size: 13px; font-weight: 950; letter-spacing: 1px; text-transform: uppercase; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.badge {
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.76);
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 34px; padding: 42px 0 68px; }
.thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.thumb {
  border: 1px solid var(--line);
  background: #050505;
  padding: 0;
  aspect-ratio: 4 / 3;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.8) contrast(1.08) brightness(1.06); }
.product-panel {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.48);
  padding: clamp(22px, 4vw, 36px);
}
.order-summary {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding: 14px;
  margin: 14px 0;
  color: rgba(255,255,255,.78);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.field-grid .full { grid-column: 1 / -1; }
label span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 950; letter-spacing: 1.5px; text-transform: uppercase; }
select, input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
textarea {
  width: 100%;
  min-height: 112px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
small { display: block; min-height: 18px; margin-top: 6px; color: var(--red-2); font-weight: 800; }
.field-help { color: rgba(255,255,255,.56); font-weight: 750; }
.compact { margin: 10px 0; }
.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 24px;
  padding: 0 0 70px;
}
.cart-list, .checkout-sections { display: grid; gap: 18px; }
.cart-line {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 14px;
}
.cart-line img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #000;
  filter: grayscale(.75) contrast(1.08);
}
.cart-line-body { min-width: 0; }
.cart-line h2 { font-size: clamp(24px, 4vw, 42px); }
.checkout-summary { align-self: start; position: sticky; top: 18px; }
.payment-note {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  padding: 14px;
  margin-bottom: 18px;
}
.payment-instructions {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.payment-instructions h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 1px;
}
.payment-note-text {
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
}
.payment-method-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.payment-details {
  display: grid;
  gap: 8px;
  margin: 0;
}
.payment-details div {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 8px;
}
.payment-details dt {
  color: rgba(255,255,255,.58);
  font-weight: 850;
}
.payment-details dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.payment-copy { min-height: 44px; }
.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0;
}
.check-row input { width: 18px; min-height: 18px; margin-top: 2px; }
.check-row small { grid-column: 2; }
.form-error { color: var(--red-2); font-weight: 850; }
.toast {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.72);
  padding: 14px;
  margin: 16px 0;
}
.toast-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.stock-list { display: grid; gap: 8px; padding: 0; margin: 14px 0 0; list-style: none; }
.stock-list li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 8px; color: rgba(255,255,255,.75); }
.notice { border-left: 4px solid var(--red); padding-left: 14px; color: rgba(255,255,255,.72); }
.related { padding: 0 0 70px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 26px; }
footer { border-top: 1px solid var(--line); padding: 32px 0; color: rgba(255,255,255,.56); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; }
footer strong { display: block; color: #fff; font-weight: 950; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.66); }
@media (max-width: 880px) {
  .links { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-links.is-open { display: grid; }
  .grid, .product-layout, .footer-grid, .split, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  h1 { font-size: clamp(46px, 14vw, 72px); }
  .checkout-summary { position: static; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .field-grid { grid-template-columns: 1fr; }
  .button, button { width: 100%; }
  .payment-details div { grid-template-columns: 1fr; gap: 4px; }
  .product-layout { padding-top: 22px; }
  .cart-line { grid-template-columns: 96px minmax(0, 1fr); gap: 12px; }
  .cart-line h2 { font-size: 24px; }
  .toast-actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
