/* ==========================================================================
   Madsen Performance — Design Tokens
   ========================================================================== */
:root {
  --black: #0a0a0c;
  --charcoal: #141519;
  --charcoal-alt: #101115;
  --steel-800: #1d1f24;
  --steel-700: #2a2c33;
  --chrome-100: #f2f3f5;
  --chrome-300: #c7c9d1;
  --chrome-500: #9a9da6;
  --chrome-700: #6b6e77;
  --red-500: #e2261c;
  --red-600: #c81f16;
  --red-700: #9c180f;
  --red-glow: rgba(226, 38, 28, 0.28);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--chrome-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--chrome-100);
}

p { margin: 0; color: var(--chrome-300); }

::selection { background: var(--red-500); color: var(--chrome-100); }

:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 3px;
}

/* ==========================================================================
   Reusable elements
   ========================================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-500);
  margin: 0 0 14px;
}

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #d9dbe0 28%, #9a9da6 55%, #e9eaee 72%, #cdd0d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.mono-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--red-500);
  border: 1px solid var(--red-700);
  padding: 3px 9px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary {
  background: var(--red-500);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--red-glow);
}
.btn-primary:hover { background: var(--red-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--chrome-100);
  border-color: var(--steel-700);
}
.btn-outline:hover { border-color: var(--chrome-300); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

.section { padding: 110px 0; }
.section-alt { background: var(--charcoal-alt); }
.section-dark { background: var(--charcoal); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-title { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.section-lead { margin-top: 18px; font-size: 17px; color: var(--chrome-500); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
}
.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--chrome-300);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--chrome-100); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red-500);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--steel-700);
  border-radius: var(--radius);
  color: var(--chrome-100);
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.cart-btn:hover { border-color: var(--chrome-300); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red-500);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--chrome-100);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 190px 0 0;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #17181d 0%, var(--black) 60%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  opacity: 0.55;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.9) 25%, transparent 85%);
}
.hero-gear {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 46vw;
  max-width: 620px;
  height: auto;
  color: var(--chrome-700);
  opacity: 0.22;
  animation: spin 90s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-gear { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.04;
  margin-top: 10px;
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 560px;
  font-size: 17px;
  color: var(--chrome-500);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.manifest {
  position: relative;
  z-index: 1;
  margin-top: 96px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(20, 21, 25, 0.5);
}
.manifest-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 30px 28px;
  flex-wrap: wrap;
}
.manifest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.manifest-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--chrome-100);
}
.manifest-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-700);
}
.manifest-div {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 90px;
}
.about-copy .btn { margin-top: 30px; }

.about-badge { display: flex; justify-content: center; }
.stamp { width: 240px; height: 240px; color: var(--chrome-300); }
.stamp-ring-outer { fill: none; stroke: var(--steel-700); stroke-width: 1; }
.stamp-ring-inner { fill: none; stroke: var(--red-700); stroke-width: 1; stroke-dasharray: 2 4; }
.stamp-text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  fill: var(--chrome-500);
  text-transform: uppercase;
}
.stamp-mp {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  fill: var(--chrome-100);
  text-anchor: middle;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel-700);
  border: 1px solid var(--steel-700);
}
.advantage-card {
  background: var(--black);
  padding: 32px 26px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.advantage-card:hover { border-top-color: var(--red-500); background: var(--charcoal-alt); }
.advantage-card h3 {
  font-size: 17px;
  margin: 4px 0 10px;
}
.advantage-card p { font-size: 14.5px; }

/* ==========================================================================
   Shop — filters + product grid
   ========================================================================== */
.cat-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red-500);
  border: 1px solid var(--red-700);
  padding: 3px 7px;
  min-width: 34px;
  display: inline-block;
  text-align: center;
  border-radius: var(--radius);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--steel-700);
  color: var(--chrome-300);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.filter-pill:hover { border-color: var(--chrome-300); color: var(--chrome-100); }
.filter-pill.is-active {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}
.filter-pill.is-active .cat-code { border-color: rgba(255,255,255,0.6); color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--black);
  border: 1px solid var(--steel-700);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.product-card:hover { background: var(--charcoal-alt); border-color: var(--chrome-700); }
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--steel-700);
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.product-media span {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--steel-700);
  letter-spacing: 0.02em;
}
.product-brand {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-700);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--chrome-100);
  line-height: 1.3;
  margin-bottom: 10px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.product-stars { color: var(--red-500); font-size: 13px; letter-spacing: 1px; }
.product-count { font-family: var(--font-mono); font-size: 11px; color: var(--chrome-700); }
.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--chrome-100);
}
.add-to-cart {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid var(--red-700);
  color: var(--red-500);
  padding: 9px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.add-to-cart:hover { background: var(--red-500); color: #fff; }
.add-to-cart.is-added { background: var(--chrome-100); border-color: var(--chrome-100); color: var(--black); }

/* ==========================================================================
   Partners
   ========================================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel-700);
  border: 1px solid var(--steel-700);
}
.partner-tile {
  background: var(--charcoal);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.partner-tile:hover { background: var(--steel-800); }
.partner-tile span {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chrome-300);
  transition: color 0.2s var(--ease);
}
.partner-tile:hover span { color: var(--red-500); }
.partner-tile-more span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--chrome-700);
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--steel-700);
}
.step { position: relative; }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--black);
  background: var(--chrome-100);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; }

/* ==========================================================================
   Apply / Wholesale form
   ========================================================================== */
.apply-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.apply-list { margin-top: 26px; }
.apply-list li {
  font-size: 14.5px;
  color: var(--chrome-500);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.apply-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--red-500);
}

.apply-form {
  background: var(--black);
  border: 1px solid var(--steel-700);
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.apply-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome-500);
  margin-bottom: 8px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form textarea {
  width: 100%;
  background: var(--charcoal-alt);
  border: 1px solid var(--steel-700);
  color: var(--chrome-100);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease);
}
.apply-form input:focus, .apply-form textarea:focus {
  border-color: var(--red-500);
  outline: none;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--chrome-300);
}
.checkbox input { accent-color: var(--red-500); width: 15px; height: 15px; }
.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--chrome-700);
  text-align: center;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  border: 1px solid var(--steel-700);
  padding: 26px;
  background: var(--charcoal-alt);
}
.contact-card p { font-size: 17px; color: var(--chrome-100); }
.contact-card a:hover { color: var(--red-500); }
.contact-map {
  border: 1px solid var(--steel-700);
  overflow: hidden;
  min-height: 320px;
  filter: grayscale(0.4) contrast(1.1) invert(0.92) hue-rotate(180deg);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--chrome-700); }
.footer-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 16px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact p, .footer-contact a {
  font-size: 14.5px;
  color: var(--chrome-500);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--chrome-100); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 28px;
}
.footer-bottom p { font-size: 12.5px; color: var(--chrome-700); text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--charcoal);
    padding: 20px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--steel-700);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-badge { order: -1; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }

  .partner-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr 1fr; row-gap: 46px; }
  .steps::before { display: none; }

  .apply-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .advantages-grid { grid-template-columns: 1fr; }
  .manifest-item { padding: 0 20px; }
  .form-row-split { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  .product-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 7, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 200;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: var(--charcoal);
  border-left: 1px solid var(--steel-700);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--steel-700);
}
.cart-drawer-head h3 { font-size: 18px; }
.cart-close {
  background: transparent;
  border: none;
  color: var(--chrome-300);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.cart-close:hover { color: var(--red-500); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 26px;
}
.cart-empty {
  padding: 40px 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--chrome-700);
}
.cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--steel-800);
}
.cart-item-thumb {
  width: 52px;
  height: 52px;
  border: 1px solid var(--steel-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--steel-700);
  background: var(--black);
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 13.5px;
  text-transform: uppercase;
  color: var(--chrome-100);
  margin-bottom: 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--steel-700);
  background: transparent;
  color: var(--chrome-300);
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1;
  font-size: 13px;
}
.qty-btn:hover { border-color: var(--chrome-300); color: var(--chrome-100); }
.qty-value {
  font-family: var(--font-mono);
  font-size: 13px;
  min-width: 16px;
  text-align: center;
}
.cart-item-remove {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chrome-700);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 4px;
}
.cart-item-remove:hover { color: var(--red-500); }
.cart-item-price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome-100);
  text-align: right;
  white-space: nowrap;
}

.cart-footer {
  padding: 22px 26px 26px;
  border-top: 1px solid var(--steel-700);
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--chrome-100);
  margin-bottom: 16px;
}
