﻿:root {
  --accent: #d8ff00;
  --accent-strong: #bfff00;
  --black: #000;
  --ink: #070707;
  --panel: #111;
  --panel-2: #161616;
  --line: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: #b8b8b8;
  --soft: #f4f4f0;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 255, 0, 0.1), transparent 26rem),
    linear-gradient(180deg, #080808, #000 60%);
  color: var(--text);
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
.brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.9;
}

h3 {
  font-size: 1.45rem;
  line-height: 1;
}

mark {
  background: transparent;
  color: var(--accent);
}

.promo {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1rem);
  padding: 0.38rem clamp(0.85rem, 4vw, 4.25rem);
  background:
    linear-gradient(180deg, rgba(216, 255, 0, 0.92), rgba(191, 255, 0, 0.78)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.55), transparent 32rem);
  color: #050505;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.promo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.72rem;
  padding: 0.18rem clamp(0.75rem, 2.2vw, 1.2rem);
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)),
    rgba(5, 5, 5, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0.45rem 1.1rem rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 4.8rem;
  padding: 0 clamp(1rem, 4vw, 4.25rem);
  background: #000;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 14vw, 14rem);
  height: clamp(3rem, 4vw, 3.8rem);
  object-fit: cover;
  object-position: center;
}

.footer-logo {
  height: 5rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.05rem, 1.15vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 1.82rem 0 1.72rem;
  color: rgba(248, 248, 241, 0.9);
  text-shadow: 0 0.4rem 1.1rem rgba(0, 0, 0, 0.65);
  transform: skewX(-4deg);
  transition: color 160ms var(--ease), text-shadow 160ms var(--ease), transform 160ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: -0.08rem;
  right: -0.08rem;
  bottom: 0.62rem;
  height: 0.22rem;
  background:
    linear-gradient(90deg, transparent 0 7%, var(--accent) 7% 86%, transparent 86%),
    var(--accent);
  clip-path: polygon(0.35rem 0, 100% 0, calc(100% - 0.35rem) 100%, 0 100%);
  box-shadow: 0 0 1rem rgba(216, 255, 0, 0.46);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  text-shadow: 0 0 0.8rem rgba(216, 255, 0, 0.18), 0 0.5rem 1.1rem rgba(0, 0, 0, 0.72);
  transform: skewX(-7deg) translateY(-1px);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.auth-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(216, 255, 0, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(216, 255, 0, 0.14), rgba(216, 255, 0, 0.04)),
    rgba(0, 0, 0, 0.54);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.auth-nav-button span {
  color: var(--accent);
}

.auth-nav-button em {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.auth-nav-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(216, 255, 0, 0.22), rgba(216, 255, 0, 0.07)),
    rgba(0, 0, 0, 0.74);
}

.auth-nav-button.is-signed-in {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: #fff;
  transition: transform 160ms var(--ease), color 160ms var(--ease);
}

.icon-button:active,
.button:active,
.product-card:active {
  transform: scale(0.97);
}

.icon-button:hover {
  color: var(--accent);
}

.bag b {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
}

.menu-toggle {
  display: none;
}

.auth-open {
  overflow: hidden;
}

.cart-open {
  overflow: hidden;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(0.5rem, 1.5vw, 1rem);
  font-family: 'Manrope', system-ui, sans-serif;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.cart-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 820px);
  max-height: 92svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0a0c0a;
  border: 1px solid rgba(200, 239, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 30px 90px -10px rgba(0, 0, 0, 0.95), 
              0 0 0 1px rgba(200, 239, 0, 0.08) inset;
  animation: cart-panel-in 260ms cubic-bezier(0.23, 1.0, 0.32, 1);
}

@keyframes cart-panel-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cart-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.15);
  border-color: #c8ef00;
  color: #c8ef00;
  transform: scale(1.1);
}

/* (old checkout styles removed - using new premium cart) */

.cart-summary-panel {
  background: #111311;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(200,239,0,0.15);
}

.cart-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-section-title strong {
  color: #c8ef00;
  font-size: 0.7rem;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s ease;
}

.cart-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200, 239, 0, 0.2);
}

.cart-item img {
  width: 68px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.item-spec {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
  margin-left: auto;
  padding-right: 8px;
}

.remove-btn {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  border-radius: 6px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.remove-btn:hover {
  background: rgba(255,80,80,0.1);
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.cart-summary-panel h3 {
  font-size: 0.85rem;
  margin: 0 0 8px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #aaa;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid rgba(200,239,0,0.2);
  padding-top: 10px;
  margin-top: 8px;
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.trust-badges .badge {
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(200,239,0,0.08);
  color: #c8ef00;
  border-radius: 20px;
  white-space: nowrap;
}

.empty-cart {
  padding: 40px 20px;
  text-align: center;
  color: #666;
}

.empty-cart a {
  color: #c8ef00;
}

.cart-summary-panel .btn-primary,
.cart-summary-panel .btn-secondary {
  width: 100%;
  margin-top: 4px;
}

/* Form in checkout */
.checkout-form {
  padding: 10px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: #1a1c1a;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #1a1c1a;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 12px 0;
  font-size: 13px;
}

.mini-total {
  margin-top: 6px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: #c8ef00;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.btn-primary {
  background: linear-gradient(180deg, #c8ef00, #a8c800);
  color: #111;
  border: none;
  font-weight: 700;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #444;
  color: #ddd;
}

.confirmation-screen {
  padding: 30px 20px;
  text-align: center;
}

.success-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  background: #c8ef00;
  color: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 0 8px rgba(200,239,0,0.15);
}

.confirmation-screen h2 {
  font-size: 22px;
  margin: 0 0 8px;
}

.order-ref {
  font-family: monospace;
  background: #1a1c1a;
  padding: 2px 8px;
  border-radius: 4px;
  color: #c8ef00;
}

.confirm-summary {
  text-align: left;
  background: #1a1c1a;
  padding: 14px;
  border-radius: 10px;
  margin: 20px 0;
}

.confirm-item, .confirm-total {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}

.confirm-total {
  border-top: 1px solid #333;
  padding-top: 8px;
  margin-top: 4px;
  font-weight: 700;
  color: #c8ef00;
}

.confirm-message {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.cart-head {
  display: grid;
  align-content: start;
  max-width: 43rem;
  padding-right: 3rem;
}

.cart-head > .eyebrow,
.cart-total-card > .eyebrow {
  justify-self: start;
  width: fit-content;
}

.cart-panel h2 {
  max-width: 44rem;
  margin-top: 0.55rem;
  color: #fff;
  font-size: clamp(2.65rem, 4.8vw, 4.2rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.cart-copy {
  max-width: 34rem;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.38;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18.5rem, 0.78fr);
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  align-items: start;
  min-height: 0;
}

.cart-products,
.cart-total-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.05rem;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.cart-products {
  display: grid;
  gap: 0.65rem;
  padding: clamp(0.7rem, 1.45vw, 0.9rem);
}

.cart-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-section-title strong {
  color: var(--accent);
}

.cart-items {
  display: grid;
  gap: 0.58rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 7.1rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 5.25rem;
  padding: 0.58rem;
  border: 1px solid rgba(216, 255, 0, 0.11);
  border-radius: 0.85rem;
  background:
    linear-gradient(90deg, rgba(216, 255, 0, 0.065), rgba(0, 0, 0, 0.36)),
    rgba(255, 255, 255, 0.018);
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease);
}

.cart-item:hover {
  border-color: rgba(216, 255, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(216, 255, 0, 0.09), rgba(0, 0, 0, 0.36)),
    rgba(255, 255, 255, 0.025);
  transform: translateY(-1px);
}

.cart-item img {
  width: 7.1rem;
  height: 4.35rem;
  border-radius: 0.62rem;
  object-fit: cover;
  object-position: 58% 54%;
  background: #090909;
}

.cart-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 0.98;
}

.cart-item p {
  margin: 0.24rem 0 0.34rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-item strong {
  color: var(--accent);
  font-weight: 900;
}

.cart-item button {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}

.cart-item button:hover {
  border-color: rgba(216, 255, 0, 0.48);
  background: rgba(216, 255, 0, 0.08);
  color: #fff;
}

.cart-item button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.cart-summary {
  display: grid;
  gap: 0.58rem;
}

.cart-total-card {
  display: grid;
  gap: 0.72rem;
  position: sticky;
  top: 0.2rem;
  padding: clamp(0.78rem, 1.45vw, 1rem);
  border-color: rgba(216, 255, 0, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 255, 0, 0.16), transparent 10rem),
    rgba(0, 0, 0, 0.42);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary div:last-child {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.98rem;
}

.cart-summary strong {
  color: #fff;
}

.cart-summary div:last-child strong {
  color: var(--accent);
}

.cart-checkout,
.cart-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.cart-made-uk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(216, 255, 0, 0.22);
  border-radius: 999px;
  background: rgba(216, 255, 0, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.uk-flag {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 0.86rem;
  overflow: hidden;
  border-radius: 0.12rem;
  background:
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(transparent 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 46%, #cf142b 46% 54%, transparent 54%),
    linear-gradient(transparent 42%, #cf142b 42% 58%, transparent 58%),
    linear-gradient(27deg, transparent 41%, #fff 41% 47%, #cf142b 47% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(153deg, transparent 41%, #fff 41% 47%, #cf142b 47% 53%, #fff 53% 59%, transparent 59%),
    #012169;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.cart-checkout {
  gap: 0.75rem;
  background: var(--accent);
  color: #050505;
  box-shadow: 0 0.9rem 2.4rem rgba(216, 255, 0, 0.18);
}

.cart-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2.8rem rgba(216, 255, 0, 0.28);
}

.cart-continue {
  border: 1px solid rgba(216, 255, 0, 0.35);
  background: transparent;
  color: #fff;
}

.cart-continue:hover {
  border-color: rgba(216, 255, 0, 0.75);
  transform: translateY(-1px);
}

.cart-secure-note {
  display: flex;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.cart-secure-note svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.cookie-consent {
  position: fixed;
  inset: auto clamp(0.75rem, 2vw, 1.5rem) clamp(0.75rem, 2vw, 1.5rem) auto;
  z-index: 70;
  width: min(94vw, 380px);
  animation: cookie-rise 360ms var(--ease) both;
  font-family: 'Manrope', system-ui, sans-serif;
}

@keyframes cookie-rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cookie-panel {
  background: #0f1110;
  border: 1px solid rgba(216, 255, 0, 0.25);
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65), 
              inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.cookie-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.cookie-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.cookie-head .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8ef00;
  margin: 0 0 2px;
  font-weight: 700;
}

.cookie-close {
  background: transparent;
  border: 0;
  color: #777;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 6px;
  cursor: pointer;
  opacity: 0.7;
}
.cookie-close:hover {
  color: #fff;
  opacity: 1;
}

.cookie-copy {
  margin-bottom: 14px;
}

.cookie-copy p {
  margin: 0;
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 500;
}

.cookie-policy-link {
  font-size: 0.75rem;
  color: #c8ef00;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}
.cookie-policy-link:hover {
  text-decoration: underline;
}

.cookie-preferences {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.cookie-preferences label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  background: #181a19;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.82rem;
}

.cookie-preferences span {
  display: grid;
  line-height: 1.25;
}

.cookie-preferences strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.cookie-preferences small {
  color: #666;
  font-size: 0.7rem;
}

.cookie-preferences input {
  width: 16px;
  height: 16px;
  accent-color: #c8ef00;
  cursor: pointer;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cookie-actions button {
  height: 42px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.15s ease;
  cursor: pointer;
  border: 1px solid;
}

.cookie-actions button:hover {
  transform: translateY(-1px);
}

.cookie-accept {
  background: #c8ef00;
  border-color: #c8ef00;
  color: #111;
  font-weight: 800;
}

.cookie-decline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: #ccc;
}

.cookie-manage {
  grid-column: 1 / -1;
  height: auto;
  padding: 6px 0;
  font-size: 0.72rem;
  color: #888;
  border: none;
  background: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: 0.04em;
}

.cookie-save {
  grid-column: 1 / -1;
  background: #c8ef00;
  border-color: #c8ef00;
  color: #111;
  font-weight: 800;
}

.policy-section {
  display: grid;
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
  background: #050505;
}

.policy-section article {
  max-width: 62rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border: 1px solid rgba(216, 255, 0, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.policy-section h2 {
  color: var(--accent);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.policy-section p {
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.65;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(216, 255, 0, 0.16), transparent 30rem),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.auth-card {
  position: relative;
  width: min(100%, 29rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid rgba(216, 255, 0, 0.22);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(216, 255, 0, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(5, 5, 5, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.auth-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.auth-close:hover {
  color: var(--accent);
  border-color: rgba(216, 255, 0, 0.35);
}

.auth-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-card h2 {
  max-width: 22rem;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.auth-copy {
  margin: 0.85rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.auth-google,
.auth-submit,
.auth-garage,
.auth-logout {
  width: 100%;
  min-height: 3.1rem;
  border-radius: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #fff;
  color: #060606;
}

.auth-google-mark {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #101010;
  color: #fff;
  font-weight: 900;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
}

.auth-tabs button {
  min-height: 2.35rem;
  border: 0;
  border-radius: 0.42rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-tabs .active {
  background: var(--accent);
  color: #050505;
}

.auth-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
}

.auth-form label span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-form input {
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.48rem;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 0 0.9rem;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(216, 255, 0, 0.58);
  box-shadow: 0 0 0 3px rgba(216, 255, 0, 0.12);
}

.auth-submit,
.auth-garage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #050505;
}

.auth-garage {
  text-decoration: none;
}

.auth-logout {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
}

.auth-message {
  min-height: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
}

.auth-message[data-type="error"] {
  color: #ff6b6b;
}

.auth-message[data-type="success"] {
  color: var(--accent);
}

.auth-legal {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  line-height: 1.45;
}

.auth-signed {
  text-align: center;
}

.auth-avatar {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #050505;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(216, 255, 0, 0.35);
}

.auth-modal.is-signed-in {
  z-index: 9999;
  padding: clamp(0.8rem, 2.5vw, 1.5rem);
}

.auth-modal.is-signed-in .auth-backdrop {
  background:
    radial-gradient(circle at 50% 16%, rgba(216, 255, 0, 0.17), transparent 20rem),
    rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(13px);
}

.auth-modal.is-signed-in .auth-card {
  width: min(86vw, 39rem);
  max-height: min(88svh, 39rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 255, 0, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(9, 10, 7, 0.94), rgba(3, 4, 3, 0.98));
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(216, 255, 0, 0.24);
}

.auth-modal.is-signed-in .auth-close {
  top: 7%;
  right: 7%;
  z-index: 3;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
}

.auth-modal.is-signed-in .auth-close svg {
  opacity: 1;
}

.garage-modal {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  text-align: center;
  isolation: isolate;
}

.garage-modal::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 6%;
  border: 1px solid rgba(216, 255, 0, 0.34);
  border-radius: 1.55rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(2, 3, 2, 0.8) 54%, rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 82% 48%, rgba(216, 255, 0, 0.08), transparent 17rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 5rem rgba(0, 0, 0, 0.64),
    0 1.4rem 3.5rem rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.garage-modal-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.auth-modal.is-signed-in .garage-avatar {
  position: absolute;
  top: 12.4%;
  left: 50%;
  width: 14.4%;
  height: 14.4%;
  margin: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--accent);
  color: #050505;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 2rem rgba(216, 255, 0, 0.58), 0 0 4.5rem rgba(216, 255, 0, 0.25);
  z-index: 1;
}

.garage-welcome {
  position: absolute;
  z-index: 1;
  top: 30.6%;
  left: 18%;
  display: grid;
  place-items: center;
  width: 64%;
  min-height: 22%;
}

.garage-status {
  margin: 0 0 0.68rem;
  color: var(--accent);
  font-family: inherit;
  font-size: clamp(0.58rem, 0.92vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.42em;
}

.garage-welcome h2 {
  max-width: 24rem;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.35rem, 4.05vw, 3.2rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0.35rem 1.4rem rgba(0, 0, 0, 0.5);
}

.garage-welcome p:not(.garage-status) {
  max-width: 22rem;
  margin: 0.78rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.74rem, 1.02vw, 0.88rem);
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.garage-account-note {
  position: absolute;
  top: 49.9%;
  left: 27%;
  width: 46%;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: clamp(0.62rem, 1.05vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  display: none;
}

.garage-quick-links {
  position: absolute;
  z-index: 1;
  top: 57.1%;
  left: 24%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 52%;
  height: 7%;
  border: 1px solid rgba(216, 255, 0, 0.2);
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.44);
}

.garage-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.42rem, 1vw, 0.75rem);
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.62rem, 0.95vw, 0.76rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.garage-quick-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.garage-quick-links svg {
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  color: var(--accent);
}

.auth-modal.is-signed-in .garage-primary-btn.auth-garage {
  position: absolute;
  z-index: 1;
  top: 68.6%;
  left: 20%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.7vw, 1.15rem);
  width: 60%;
  height: 8%;
  min-height: 0;
  border: 1px solid var(--accent);
  border-radius: 0.62rem;
  background: var(--accent);
  color: #050505;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.08rem, 1.9vw, 1.48rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 0 2.2rem rgba(216, 255, 0, 0.22);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.auth-modal.is-signed-in .garage-primary-btn.auth-garage:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 3rem rgba(216, 255, 0, 0.34);
}

.auth-modal.is-signed-in .garage-primary-btn.auth-garage svg {
  width: 1em;
  height: 1em;
}

.auth-modal.is-signed-in .garage-secondary-btn.auth-logout {
  position: absolute;
  z-index: 1;
  top: 79.6%;
  left: 20%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  height: 6.8%;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(216, 255, 0, 0.38);
  border-radius: 0.62rem;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.86rem, 1.25vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.auth-modal.is-signed-in .garage-secondary-btn.auth-logout:hover {
  color: var(--accent);
}

.garage-footer-text {
  position: absolute;
  z-index: 1;
  bottom: 8.3%;
  left: 18%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 64%;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.52rem, 0.82vw, 0.62rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.garage-footer-text svg {
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
  color: var(--accent);
}

@media (max-width: 620px) {
  .auth-modal.is-signed-in {
    padding: 0.55rem;
  }

  .auth-modal.is-signed-in .auth-card {
    width: min(94vw, 32rem);
    max-height: min(94svh, 32rem);
    border-radius: 1.7rem;
  }

  .auth-modal.is-signed-in .auth-close {
    width: 2rem;
    height: 2rem;
  }

  .garage-modal::before {
    inset: 6.2%;
    border-radius: 1rem;
  }
}

/* (duplicate cart styles cleaned) */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.cart-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.cart-subtitle {
  font-size: 0.75rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

.cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #888;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.1);
  border-color: #c8ef00;
  color: #c8ef00;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 680px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-review {
  padding: 16px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cart-section-header {
  margin-bottom: 12px;
}

.cart-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c8ef00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.015);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.cart-item img {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.item-spec {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
  margin-left: auto;
  padding-right: 8px;
}

.remove-btn {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  border-radius: 4px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255,100,100,0.3);
}

.cart-summary-panel {
  background: #111311;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(200,239,0,0.08);
}

.cart-summary-panel h3 {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #ccc;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(200,239,0,0.12);
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(200,239,0,0.06);
  color: #c8ef00;
  border-radius: 999px;
  border: 1px solid rgba(200,239,0,0.15);
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  height: 42px;
  font-size: 0.85rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 999px;
  height: 42px;
  font-size: 0.82rem;
}

.checkout-form {
  padding: 12px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #161816;
  border: 1px solid #2a2c2a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #161816;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin: 6px 0;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c8ef00;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.confirmation-screen {
  padding: 20px 16px;
  text-align: center;
}

.success-icon {
  font-size: 42px;
  color: #c8ef00;
  margin-bottom: 10px;
}

.confirmation-screen h2 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.order-ref {
  font-family: monospace;
  font-size: 0.8rem;
  color: #c8ef00;
}

.confirm-summary {
  background: #161816;
  padding: 10px;
  border-radius: 6px;
  margin: 12px 0;
  text-align: left;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 0.8rem;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #333;
  color: #c8ef00;
}

.confirm-message {
  font-size: 0.78rem;
  color: #888;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.empty-cart {
  padding: 30px 10px;
  color: #666;
  text-align: center;
}

@media (max-width: 620px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.08);
  }
}

/* (duplicate cleaned) */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.cart-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.cart-subtitle {
  font-size: 0.75rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

.cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #888;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.1);
  border-color: #c8ef00;
  color: #c8ef00;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 680px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-review {
  padding: 16px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cart-section-header {
  margin-bottom: 12px;
}

.cart-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c8ef00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.015);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.cart-item img {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.item-spec {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
  margin-left: auto;
  padding-right: 8px;
}

.remove-btn {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  border-radius: 4px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255,100,100,0.3);
}

.cart-summary-panel {
  background: #111311;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(200,239,0,0.08);
}

.cart-summary-panel h3 {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #ccc;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(200,239,0,0.12);
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(200,239,0,0.06);
  color: #c8ef00;
  border-radius: 999px;
  border: 1px solid rgba(200,239,0,0.15);
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  height: 42px;
  font-size: 0.85rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 999px;
  height: 42px;
  font-size: 0.82rem;
}

.checkout-form {
  padding: 12px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #161816;
  border: 1px solid #2a2c2a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #161816;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin: 6px 0;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c8ef00;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.confirmation-screen {
  padding: 20px 16px;
  text-align: center;
}

.success-icon {
  font-size: 42px;
  color: #c8ef00;
  margin-bottom: 10px;
}

.confirmation-screen h2 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.order-ref {
  font-family: monospace;
  font-size: 0.8rem;
  color: #c8ef00;
}

.confirm-summary {
  background: #161816;
  padding: 10px;
  border-radius: 6px;
  margin: 12px 0;
  text-align: left;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 0.8rem;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #333;
  color: #c8ef00;
}

.confirm-message {
  font-size: 0.78rem;
  color: #888;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.empty-cart {
  padding: 30px 10px;
  color: #666;
  text-align: center;
}

@media (max-width: 620px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.08);
  }
}

/* (duplicate cleaned) */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.cart-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.cart-subtitle {
  font-size: 0.75rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

.cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #888;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.1);
  border-color: #c8ef00;
  color: #c8ef00;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 680px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-review {
  padding: 16px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cart-section-header {
  margin-bottom: 12px;
}

.cart-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c8ef00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.015);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.cart-item img {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.item-spec {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
  margin-left: auto;
  padding-right: 8px;
}

.remove-btn {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  border-radius: 4px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255,100,100,0.3);
}

.cart-summary-panel {
  background: #111311;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(200,239,0,0.08);
}

.cart-summary-panel h3 {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #ccc;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(200,239,0,0.12);
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(200,239,0,0.06);
  color: #c8ef00;
  border-radius: 999px;
  border: 1px solid rgba(200,239,0,0.15);
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  height: 42px;
  font-size: 0.85rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 999px;
  height: 42px;
  font-size: 0.82rem;
}

.checkout-form {
  padding: 12px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #161816;
  border: 1px solid #2a2c2a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #161816;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin: 6px 0;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c8ef00;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.confirmation-screen {
  padding: 20px 16px;
  text-align: center;
}

.success-icon {
  font-size: 42px;
  color: #c8ef00;
  margin-bottom: 10px;
}

.confirmation-screen h2 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.order-ref {
  font-family: monospace;
  font-size: 0.8rem;
  color: #c8ef00;
}

.confirm-summary {
  background: #161816;
  padding: 10px;
  border-radius: 6px;
  margin: 12px 0;
  text-align: left;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 0.8rem;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #333;
  color: #c8ef00;
}

.confirm-message {
  font-size: 0.78rem;
  color: #888;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.empty-cart {
  padding: 30px 10px;
  color: #666;
  text-align: center;
}

@media (max-width: 620px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.08);
  }
}

/* === PREMIUM CART UPGRADE - Way Better Look === */
.cart-modal {
  padding: 12px;
}

.cart-panel {
  background: #0a0c0a;
  border: 1px solid rgba(200, 239, 0, 0.18);
  border-radius: 20px;
  box-shadow: 0 30px 90px -15px rgba(0,0,0,0.95);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.cart-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.cart-subtitle {
  font-size: 0.75rem;
  color: #888;
  display: block;
  margin-top: 2px;
}

.cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #888;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.1);
  border-color: #c8ef00;
  color: #c8ef00;
}

.checkout-progress {
  display: flex;
  gap: 8px;
  padding: 0 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.checkout-progress .step {
  font-size: 0.7rem;
  color: #666;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.checkout-progress .step.active {
  color: #c8ef00;
  background: rgba(200, 239, 0, 0.1);
  font-weight: 600;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 680px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-review {
  padding: 16px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cart-section-header {
  margin-bottom: 12px;
}

.cart-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c8ef00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.015);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.cart-item img {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}

.item-spec {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
  margin-left: auto;
}

.remove-btn {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  border-radius: 4px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255,100,100,0.3);
}

.cart-summary-panel {
  background: #111311;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(200,239,0,0.08);
}

.cart-summary-panel h3 {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #ccc;
}

.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(200,239,0,0.12);
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(200,239,0,0.06);
  color: #c8ef00;
  border-radius: 999px;
  border: 1px solid rgba(200,239,0,0.15);
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  height: 42px;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 999px;
  height: 42px;
  font-size: 0.82rem;
  cursor: pointer;
}

.checkout-form {
  padding: 12px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #161816;
  border: 1px solid #2a2c2a;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #161816;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin: 6px 0;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c8ef00;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.confirmation-screen {
  padding: 20px 16px;
  text-align: center;
}

.success-icon {
  font-size: 42px;
  color: #c8ef00;
  margin-bottom: 10px;
}

.confirmation-screen h2 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.order-ref {
  font-family: monospace;
  font-size: 0.8rem;
  color: #c8ef00;
}

.confirm-summary {
  background: #161816;
  padding: 10px;
  border-radius: 6px;
  margin: 12px 0;
  text-align: left;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 0.8rem;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #333;
  color: #c8ef00;
}

.confirm-message {
  font-size: 0.78rem;
  color: #888;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.empty-cart {
  padding: 30px 10px;
  color: #666;
  text-align: center;
}

@media (max-width: 620px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.08);
  }
}

/* === WAY BETTER CART - PREMIUM MODERN UPGRADE === */
.cart-modal {
  padding: 12px;
}

.cart-panel {
  background: #0a0c0a;
  border: 1px solid rgba(200, 239, 0, 0.18);
  border-radius: 20px;
  box-shadow: 0 30px 90px -15px rgba(0,0,0,0.95), 0 0 0 1px rgba(200, 239, 0, 0.06) inset;
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #777;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.15s ease;
}

.cart-close:hover {
  background: rgba(200, 239, 0, 0.12);
  border-color: #c8ef00;
  color: #c8ef00;
}

.cart-head {
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-head h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  letter-spacing: -0.015em;
}

.cart-copy {
  font-size: 0.78rem;
  color: #777;
  margin: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  flex: 1;
  min-height: 0;
}

@media (max-width: 680px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-review {
  padding: 14px 18px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cart-section-header {
  margin-bottom: 10px;
}

.cart-section-header .section-title {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 2px;
}

.cart-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #c8ef00;
  letter-spacing: 0.04em;
}

.cart-section-header h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.cart-section-header .section-subtitle {
  font-size: 0.68rem;
  color: #666;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 8px;
  background: rgba(255,255,255,0.012);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.025);
}

.cart-item img {
  width: 58px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h3 {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1px;
  line-height: 1.15;
}

.item-spec {
  font-size: 0.7rem;
  color: #777;
  margin: 0;
}

.item-price {
  font-size: 0.86rem;
  font-weight: 700;
  color: #c8ef00;
  white-space: nowrap;
}

.remove-btn {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: #666;
  border-radius: 4px;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.remove-btn:hover {
  color: #ff6b6b;
  border-color: rgba(255,100,100,0.3);
}

.cart-summary-panel {
  background: #0f110f;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(200,239,0,0.08);
}

.cart-summary-panel h3 {
  font-size: 0.75rem;
  color: #777;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #ccc;
}

.summary-row.total {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(200,239,0,0.12);
}

.summary-row.total strong {
  color: #c8ef00;
}

.trust-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(200,239,0,0.06);
  color: #c8ef00;
  border-radius: 999px;
  border: 1px solid rgba(200,239,0,0.15);
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  height: 42px;
  font-size: 0.85rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 999px;
  height: 42px;
  font-size: 0.82rem;
}

.checkout-form {
  padding: 12px 16px 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 3px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #161816;
  border: 1px solid #2a2c2a;
  color: #fff;
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
}

.order-summary-mini {
  background: #161816;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  margin: 6px 0;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c8ef00;
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.confirmation-screen {
  padding: 22px 16px;
  text-align: center;
}

.success-icon {
  font-size: 38px;
  color: #c8ef00;
  margin-bottom: 10px;
}

.confirmation-screen h2 {
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: #fff;
}

.order-ref {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #c8ef00;
  background: #161816;
  padding: 1px 6px;
  border-radius: 3px;
}

.confirm-summary {
  background: #161816;
  padding: 8px 10px;
  border-radius: 6px;
  margin: 12px 0;
  text-align: left;
  font-size: 0.78rem;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  color: #ccc;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  padding-top: 4px;
  margin-top: 4px;
  border-top: 1px solid #2a2c2a;
  color: #c8ef00;
}

.confirm-message {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.35;
  margin: 0;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.btn-primary {
  background: #c8ef00;
  color: #111;
  border: none;
  padding: 0 18px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  height: 36px;
  font-size: 0.8rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  height: 36px;
  font-size: 0.78rem;
}

.empty-cart {
  padding: 24px 10px;
  color: #666;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 620px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.08);
  }
}
  }

  .garage-status {
    margin-bottom: 0.45rem;
    font-size: clamp(0.42rem, 1.75vw, 0.6rem);
    letter-spacing: 0.3em;
  }

  .garage-welcome h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.35rem);
  }

  .garage-welcome p:not(.garage-status) {
    max-width: 15rem;
    margin-top: 0.5rem;
    font-size: clamp(0.58rem, 2.35vw, 0.72rem);
  }

  .garage-account-note {
    display: none;
  }

  .garage-quick-links a {
    gap: 0.35rem;
    font-size: clamp(0.46rem, 1.95vw, 0.58rem);
  }

  .garage-quick-links svg {
    width: 1.18em;
    height: 1.18em;
  }

  .auth-modal.is-signed-in .garage-primary-btn.auth-garage {
    font-size: clamp(0.82rem, 3.4vw, 1.02rem);
  }

  .auth-modal.is-signed-in .garage-secondary-btn.auth-logout {
    font-size: clamp(0.68rem, 2.7vw, 0.82rem);
  }

  .garage-footer-text {
    gap: 0.45rem;
    font-size: clamp(0.42rem, 1.95vw, 0.62rem);
    letter-spacing: 0.11em;
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - 6.8rem);
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.6rem) clamp(1rem, 4vw, 4.25rem) 5.8rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 34%, rgba(0, 0, 0, 0.16) 72%),
    linear-gradient(180deg, transparent 80%, #0d0d0d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #020202;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06) translate3d(0.8%, 0.3%, 0);
  transform-origin: 62% 48%;
  will-change: opacity, transform, filter;
}

.hero-bg-layer.is-active {
  opacity: 1;
  transform: scale(1.02) translate3d(0, 0, 0);
  animation: heroKenBurns 9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-bg-layer.is-entering {
  animation: heroFadeIn 1100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-bg-layer.is-leaving {
  animation: none;
  opacity: 0;
  transform: scale(1.08) translate3d(-0.4%, 0, 0);
  filter: saturate(0.85) contrast(1.06) brightness(0.72);
  transition:
    opacity 920ms cubic-bezier(0.55, 0, 1, 0.45),
    transform 1200ms cubic-bezier(0.55, 0, 1, 0.45),
    filter 920ms ease;
}

.hero-bg-wipe {
  position: absolute;
  inset: -20% -30%;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 50%, color-mix(in srgb, var(--hero-accent, var(--accent)) 52%, transparent), transparent 18rem),
    linear-gradient(102deg,
      transparent 0 38%,
      color-mix(in srgb, var(--hero-accent, var(--accent)) 8%, transparent) 42%,
      color-mix(in srgb, var(--hero-accent, var(--accent)) 70%, white 30%) 48.5%,
      rgba(255, 255, 255, 0.68) 50%,
      color-mix(in srgb, var(--hero-accent, var(--accent)) 20%, transparent) 54%,
      transparent 60% 100%);
  filter: blur(2.5px);
  mix-blend-mode: screen;
  transform: translate3d(-66%, 0, 0) skewX(-10deg);
  will-change: opacity, transform;
}

.hero-is-changing .hero-bg-wipe {
  animation: heroNeonWipe 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-copy {
  max-width: 36rem;
  padding-top: 1rem;
  animation: rise 640ms var(--ease) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.24rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 440px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hero-feature-strip {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 8px 0 14px;
  object-fit: contain;
}

.hero-cta-group {
  gap: 16px;
}

.button-row,
.section-head,
.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.button-row {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.1rem;
  padding: 0.9rem 1.7rem;
  border: 1px solid var(--accent);
  border-radius: 0.18rem;
  background: var(--accent);
  color: #050505;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}

.button.ghost {
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
}

.button:hover {
  background: #fff;
  border-color: #fff;
}

.bike-selector {
  position: absolute;
  left: clamp(1rem, 4vw, 4.25rem);
  right: clamp(1rem, 4vw, 4.25rem);
  bottom: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 13rem) repeat(4, minmax(10.5rem, 1fr));
  min-height: 4.1rem;
  overflow: auto hidden;
  border: 1px solid var(--line);
  border-radius: 0.36rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.9), rgba(0, 0, 0, 0.82));
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 50px rgba(0, 0, 0, 0.34);
}

.bike-selector-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  min-width: 0;
  max-width: 100%;
  padding: 0 1.05rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.bike-selector strong,
.bike-selector button,
.bike-selector a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0 1.05rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  text-decoration: none;
  color: #8f8f8f;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bike-selector-heading strong {
  display: block;
  padding: 0;
  border: 0;
  color: var(--accent);
  line-height: 1;
}

.bike-selector-heading span {
  max-width: 100%;
  color: rgba(143, 143, 143, 0.82);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.bike-selector button,
.bike-selector a {
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.bike-selector strong,
.bike-selector .selected {
  color: var(--accent);
}

.bike-selector .selected {
  background:
    radial-gradient(circle at 20% 50%, rgba(216, 255, 0, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(216, 255, 0, 0.16), rgba(216, 255, 0, 0.04));
  box-shadow: inset 0 -2px 0 var(--accent);
}

.bike-selector button:hover,
.bike-selector a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.bike-selector .selected:hover {
  color: var(--accent);
}

.bike-selector button span:not(.bike-icon),
.bike-selector a span:not(.bike-icon) {
  display: grid;
  min-width: 0;
  gap: 0.08rem;
}

.bike-selector button small,
.bike-selector a small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.bike-selector button em,
.bike-selector a em {
  font-style: normal;
  line-height: 1;
}

.bike-icon {
  flex: 0 0 auto;
  width: 3.35rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.bike-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.65) opacity(0.68);
  transition: filter 180ms var(--ease), transform 180ms var(--ease);
}

.bike-selector button:hover .bike-icon img,
.bike-selector a:hover .bike-icon img {
  filter: grayscale(0.4) brightness(2) opacity(0.9);
  transform: translateY(-1px);
}

.bike-selector .selected .bike-icon img {
  filter:
    brightness(0)
    saturate(100%)
    invert(88%)
    sepia(96%)
    saturate(1765%)
    hue-rotate(18deg)
    brightness(107%)
    contrast(107%)
    drop-shadow(0 0 10px rgba(216, 255, 0, 0.6));
}

.light-section {
  padding: clamp(2rem, 5vw, 4.3rem) clamp(1rem, 4vw, 4.25rem);
  background: var(--soft);
  color: #0b0b0b;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head a {
  color: #101010;
  font-weight: 900;
  text-transform: uppercase;
}

.home-shop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 2rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1rem);
}

.product-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.36rem;
  background: #fbfbf7;
  color: #070707;
  box-shadow: 0 0.85rem 2.35rem rgba(0, 0, 0, 0.11);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.product-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(216, 255, 0, 0.74);
  box-shadow: 0 1.25rem 3.4rem rgba(0, 0, 0, 0.18);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #080808;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--crop);
  transform: scale(1.08);
  transform-origin: var(--crop);
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.15);
  filter: saturate(1.16) contrast(1.04);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-image .tag {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  z-index: 1;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  padding: 0.82rem;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: start;
}

.product-info h3 {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 0.96;
}

.product-info strong {
  display: block;
  margin: 0;
  padding-top: 0.06rem;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.product-strapline {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-rating span {
  color: var(--accent);
  letter-spacing: -0.08em;
  text-shadow: 0 0 0 #0b0b0b;
}

.product-rating b {
  color: #111;
}

.product-info p {
  margin: -0.1rem 0 0;
  color: #525252;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.1rem;
}

.quick-design {
  color: #151515;
  font-size: 0.64rem;
  font-weight: 950;
  text-align: right;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(216, 255, 0, 0.9);
  text-underline-offset: 0.22rem;
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.45rem;
  margin-top: auto;
  padding: 0 0.82rem;
  border: 1px solid #111;
  border-radius: 0.18rem;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}

.product-button svg {
  width: 1rem;
  height: 1rem;
}

.product-card:hover .product-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

.swatches,
.color-row,
.filter-colours {
  display: flex;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.swatches i,
.filter-colours button,
.colour-dot {
  width: 0.82rem;
  height: 0.82rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.custom-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border-radius: 0.28rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58)),
    url("../img/footer banner image/Custom Card Background (Ultra HD) - SURRONSKINS.COM.png") center / cover;
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(216, 255, 0, 0.18), 0 1rem 2.4rem rgba(0, 0, 0, 0.16);
}

.custom-card h2 {
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(2.2rem, 3.1vw, 3.35rem);
  line-height: 0.88;
}

.custom-card ul,
.check-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.custom-card li,
.check-list li {
  margin: 0.7rem 0;
  color: #e8e8e8;
}

.custom-card li::before,
.check-list li::before {
  content: "\2713";
  color: var(--accent);
  margin-right: 0.55rem;
}

.dark-band {
  padding: clamp(2rem, 5vw, 4.3rem) clamp(1rem, 4vw, 4.25rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(21rem, 0.46fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.2vw, 3.6rem);
  align-items: center;
}

.mini-builds {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

#community-builds {
  align-items: center;
}

#community-builds h2 {
  max-width: 40rem;
  margin-top: 0.9rem;
  line-height: 0.88;
}

#community-builds .mini-builds {
  align-items: stretch;
}

#community-builds .build-card {
  min-height: clamp(13rem, 13vw, 15.8rem);
}

#community-builds .build-card img {
  height: 100%;
  aspect-ratio: auto;
}

.rating-banner {
  position: relative;
  min-height: clamp(14rem, 20vw, 18rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1rem, 4vw, 4.25rem);
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(3, 3, 3, 0.97) 0%, rgba(3, 3, 3, 0.78) 38%, rgba(3, 3, 3, 0.3) 68%, rgba(3, 3, 3, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.82)),
    url("../img/rating banner image/rating-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rating-banner-copy {
  max-width: 58rem;
}

.rating-banner-note {
  max-width: 38rem;
  margin: 0.7rem 0 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.rating-banner h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2.65rem, 4.7vw, 4.65rem);
}

.rating-banner h2 span,
.rating-banner h2 mark {
  display: block;
}

.rating-stats {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  flex-wrap: wrap;
}

.rating-stats div {
  position: relative;
  min-width: 8.6rem;
  padding-left: 1.25rem;
}

.rating-stats div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.rating-stats div:first-child {
  padding-left: 0;
}

.rating-stats div:first-child::before {
  display: none;
}

.rating-stats b,
.rating-stats span {
  display: block;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-stats b {
  font-size: 1rem;
}

.rating-stats span {
  color: #d7d7d7;
  font-size: 0.9rem;
}

.rating-banner .button {
  min-width: 17rem;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.builder-page {
  display: grid;
  grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
  min-height: calc(100svh - 6.8rem);
  background: #060606;
}

.config-panel {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  background: #0d0d0d;
}

.config-panel h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.builder-control {
  display: grid;
  grid-template-columns: 1.45rem 1fr;
  gap: 0.3rem 0.7rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.builder-control span {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
}

.builder-control b {
  align-self: center;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.builder-control select,
.builder-control input,
.contact-page input,
.contact-page textarea,
.product-detail select {
  grid-column: 2;
  width: 100%;
  min-height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 0.18rem;
  background: #151515;
  color: #fff;
  padding: 0.65rem;
}

.colour-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-color: rgba(255, 255, 255, 0.35);
}

.colour-dot.active {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.upload {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  border: 1px solid var(--line);
  background: #151515;
  color: #fff;
  padding: 0 0.8rem;
}

.preview-stage {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
}

.builder-tabs,
.tab-row {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
}

.builder-tabs button,
.tab-row button {
  min-height: 2.35rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #aaa;
  padding: 0 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.builder-tabs .active,
.tab-row .active {
  color: var(--accent);
  border-color: var(--accent);
}

.bike-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 27rem;
  overflow: hidden;
}

.bike-preview img {
  width: min(62rem, 100%);
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  object-position: 49% 24%;
  transform: scale(1.82);
  transform-origin: 49% 24%;
  filter: saturate(1.1) contrast(1.06);
}

.number-preview,
.name-preview {
  position: absolute;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-shadow: 0 0 1rem #000;
}

.number-preview {
  left: 27%;
  top: 35%;
  font-size: 3rem;
}

.name-preview {
  right: 32%;
  top: 39%;
  font-size: 1.2rem;
}

.preview-tools {
  position: absolute;
  right: 1rem;
  top: 5rem;
  display: grid;
  gap: 0.6rem;
}

.preview-tools button {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.builder-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 20rem);
  gap: 1rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.builder-bottom p {
  color: var(--muted);
}

.price-box {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.92);
}

.price-box strong {
  display: block;
  margin: 0.2rem 0 0.9rem;
  font-size: 2rem;
}

.catalog-page {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(1rem, 4vw, 3rem) clamp(1rem, 4vw, 4.25rem);
  background: #080808;
}

.filters {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.filters h1 {
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.filters h3 {
  margin: 1.2rem 0 0.7rem;
  font-size: 1rem;
}

.filter-list {
  display: grid;
  gap: 0.35rem;
}

.filter-list button,
.filter-colours button {
  border: 0;
  background: transparent;
  color: #9c9c9c;
  text-align: left;
  font-size: 0.82rem;
}

.filter-list .active {
  color: var(--accent);
}

.catalog .product-card {
  background: #f8f8f4;
}

.catalog-top {
  margin-bottom: 1rem;
}

.catalog-top p {
  color: var(--muted);
}

.catalog-top select {
  min-height: 2.25rem;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
}

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  max-width: 38rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.catalog-empty h3 {
  margin: 0;
  font-size: 1.35rem;
}

.catalog-empty p {
  margin: 0;
  color: #525252;
  line-height: 1.5;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 31rem);
  gap: 2rem;
  padding: clamp(1rem, 4vw, 3rem) clamp(1rem, 4vw, 4.25rem);
  background: #080808;
}

.gallery-view {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.gallery-view > img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  object-position: 37% 55%;
  transform: scale(1.72);
  transform-origin: 37% 55%;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 2rem;
}

.gallery-arrow:first-child {
  left: 1rem;
}

.gallery-arrow:nth-child(3) {
  right: 1rem;
}

.thumb-row {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.55rem;
}

.thumb-row button {
  width: 5rem;
  aspect-ratio: 1.25;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.15rem;
  background: #111;
  opacity: 0.7;
}

.thumb-row .active {
  opacity: 1;
  border-color: var(--accent);
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.1);
}

.product-detail {
  align-self: center;
}

.product-detail h1 {
  margin: 0.6rem 0;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.product-price {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 1.65rem;
}

.product-detail p,
.story-page p,
.contact-page p,
.simple-page p {
  color: var(--muted);
  line-height: 1.65;
}

.rating {
  margin: 1rem 0;
  color: var(--accent);
}

.rating span {
  color: var(--muted);
}

.product-detail label {
  display: grid;
  gap: 0.35rem;
  margin: 0.9rem 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-row div {
  display: grid;
  gap: 0.2rem;
}

.feature-row span {
  color: var(--muted);
}

.gallery-page,
.reviews-page,
.simple-page {
  padding: clamp(1.5rem, 5vw, 4.25rem);
  background: #080808;
}

.gallery-page h1,
.reviews-page h1,
.simple-page h1 {
  margin-top: 0.6rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.build-grid,
.review-grid,
.merch-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.build-card,
.review-grid article,
.merch-grid article,
.article-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: #111;
}

.build-card img,
.review-grid img,
.article-grid img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
}

.review-grid img,
.article-grid img {
  transform: scale(1.7);
}

.build-card img {
  object-position: center;
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.build-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.06);
}

.build-card .build-info,
.review-grid article,
.merch-grid article,
.article-grid article {
  padding: 0.85rem;
}

.build-card .build-info,
.build-card .build-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.build-card .build-info {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  transition: opacity 180ms var(--ease);
}

.build-card .build-overlay {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 0.95rem;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(216, 255, 0, 0.16), transparent 48%);
  transform: translateY(0.45rem);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.build-card:hover .build-info {
  opacity: 0;
}

.build-card:hover .build-overlay {
  opacity: 1;
  transform: translateY(0);
}

.build-card b,
.review-grid b,
.article-grid h3 {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.build-card span,
.review-grid p,
.article-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.featured-builds {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.25rem);
  border-top: 1px solid var(--line);
  background: #0b0b0b;
}

.featured-builds img {
  width: 100%;
  height: 23rem;
  object-fit: cover;
  object-position: 60% 20%;
  transform: scale(1.05);
}

.featured-builds aside {
  padding: 1rem;
  border: 1px solid var(--line);
  background: #101010;
}

.featured-builds aside p {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  gap: 0.5rem;
  color: var(--muted);
}

.featured-builds aside b {
  color: var(--accent);
}

.featured-builds aside strong {
  display: block;
  margin-top: 1rem;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
}

.featured-builds small {
  display: block;
  color: #fff;
  font-size: 0.8rem;
}

.review-score {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.4rem;
}

.review-score strong {
  font-size: 3rem;
}

.review-score span {
  color: var(--accent);
}

.review-grid span {
  color: var(--accent);
}

.merch-visual {
  display: grid;
  place-items: center;
  min-height: 15rem;
  background: linear-gradient(145deg, #191919, #070707);
}

.merch-visual img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transform: scale(1.7);
  opacity: 0.7;
}

.article-grid a {
  color: var(--accent);
  font-weight: 900;
}

.garage-page {
  display: grid;
  grid-template-columns: minmax(15rem, 21rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: calc(100svh - 6.8rem);
  padding: clamp(1.25rem, 4vw, 4.25rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 255, 0, 0.08), transparent 22rem),
    linear-gradient(180deg, #060705, #050505);
}

.garage-nav {
  display: grid;
  align-self: start;
  gap: 1.6rem;
  position: sticky;
  top: 7.8rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(216, 255, 0, 0.16);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(12, 14, 10, 0.92), rgba(3, 3, 3, 0.95)),
    radial-gradient(circle at 0 0, rgba(216, 255, 0, 0.08), transparent 12rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.36);
}

.garage-nav h1 {
  margin: 0;
  color: #f8f8f1;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.84;
}

.garage-nav nav {
  display: grid;
  gap: 0.7rem;
}

.garage-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.7rem;
  padding-left: 0.85rem;
  border-left: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.garage-nav a:hover {
  color: #fff;
  transform: translateX(0.15rem);
}

.garage-nav .active {
  border-color: var(--accent);
  color: var(--accent);
}

.garage-main {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.garage-hero-card,
.garage-panel,
.garage-section-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.98));
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.32);
}

.garage-hero-card {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-color: rgba(216, 255, 0, 0.22);
  border-radius: 1.4rem;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.72)),
    url("../img/hero%20image/SURRONSKINS.COM%20WE%20ARE%20THE%20BEST%20CUSTOM%20GRAPHICS%20SUPPLIER%20FOR%20SURRON%20BIKES%20AND%20MORE%20-%20green%20bike.png") center right / cover no-repeat;
}

.garage-hero-card h2 {
  max-width: 46rem;
  margin: 0;
  color: #f8f8f1;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
}

.garage-hero-card > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.garage-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.garage-stat-grid article {
  padding: 1rem;
  border: 1px solid rgba(216, 255, 0, 0.18);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.48);
}

.garage-stat-grid strong {
  display: block;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.garage-stat-grid span,
.garage-stat-grid small {
  display: block;
  text-transform: uppercase;
}

.garage-stat-grid span {
  margin-top: 0.25rem;
  color: #fff;
  font-weight: 900;
}

.garage-stat-grid small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
}

.garage-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.garage-section-card {
  display: grid;
  gap: 0.55rem;
  min-height: 12rem;
  padding: 1.1rem;
  border-radius: 1rem;
}

.garage-section-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.garage-section-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.garage-section-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.garage-section-card a,
.garage-panel .section-head a,
.garage-downloads a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.garage-section-card a {
  align-self: end;
}

.garage-section-card svg,
.garage-panel .section-head a svg,
.garage-downloads a svg {
  width: 1rem;
  height: 1rem;
}

.garage-panel {
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border-radius: 1.1rem;
}

.garage-panel .section-head {
  margin-bottom: 1rem;
}

.garage-panel .section-head h2,
.garage-downloads h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.garage-downloads {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) 1fr;
  gap: 1rem;
  align-items: start;
}

.garage-downloads > div:last-child {
  display: grid;
  gap: 0.65rem;
}

.garage-downloads a {
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(216, 255, 0, 0.16);
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.82);
}

.garage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.garage-form-grid label {
  display: grid;
  gap: 0.45rem;
}

.garage-form-grid label span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garage-form-grid input,
.garage-form-grid select,
.garage-wide-field textarea {
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0 1rem;
  font: inherit;
}

.garage-form-grid select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%) calc(100% - 1.25rem) 50% / 0.45rem 0.45rem no-repeat,
    rgba(0, 0, 0, 0.35);
}

.garage-wide-field textarea {
  min-height: 6.5rem;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.garage-form-grid .button {
  width: max-content;
  min-width: 13rem;
}

.garage-account-panel {
  overflow: hidden;
}

.garage-profile-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}

.garage-profile-card,
.garage-profile-form section {
  border: 1px solid rgba(216, 255, 0, 0.14);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 255, 0, 0.1), transparent 12rem),
    rgba(0, 0, 0, 0.34);
}

.garage-profile-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  text-align: center;
}

.garage-profile-avatar {
  display: grid;
  place-items: center;
  width: clamp(7rem, 12vw, 9rem);
  height: clamp(7rem, 12vw, 9rem);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.36), transparent 26%),
    var(--accent);
  color: #050505;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 3rem rgba(216, 255, 0, 0.34);
}

.garage-profile-card h3 {
  margin: 0.4rem 0 0;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}

.garage-profile-card p,
.garage-profile-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.garage-profile-card small {
  max-width: 16rem;
  font-size: 0.75rem;
  line-height: 1.45;
}

.garage-profile-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.garage-profile-tags span {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(216, 255, 0, 0.2);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.garage-photo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.35rem;
}

.garage-photo-actions button {
  min-height: 2.65rem;
  border: 1px solid rgba(216, 255, 0, 0.24);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.garage-photo-actions button:first-child {
  background: var(--accent);
  color: #050505;
}

.garage-profile-form {
  display: grid;
  gap: 1rem;
}

.garage-profile-form section {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.25rem);
}

.garage-profile-form h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.garage-wide-field {
  display: grid;
  gap: 0.45rem;
}

.garage-wide-field span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garage-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.garage-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
}

.garage-toggle input {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
}

.garage-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.garage-logout-panel {
  display: grid;
  align-content: center;
  min-height: 28rem;
}

.garage-logout-panel h2 {
  max-width: 42rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.9;
}

.garage-logout-panel > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.order-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 2rem;
}

.order-list article {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #101010;
}

.order-list mark {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(216, 255, 0, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .garage-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garage-downloads,
  .garage-profile-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .garage-nav {
    position: static;
  }

  .garage-nav nav {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .garage-nav a {
    flex: 0 0 auto;
    min-height: 2.35rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left-width: 1px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    font-size: 0.78rem;
  }

  .garage-nav .active {
    border-color: var(--accent);
    background: rgba(216, 255, 0, 0.1);
  }

  .garage-stat-grid,
  .garage-section-grid,
  .garage-form-grid,
  .garage-toggle-grid {
    grid-template-columns: 1fr;
  }

  .garage-profile-actions,
  .garage-photo-actions {
    grid-template-columns: 1fr;
  }

  .garage-profile-actions .button {
    width: 100%;
  }
}

.story-page,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 6.8rem);
  padding: clamp(1.5rem, 5vw, 4.25rem);
  background: #080808;
}

.story-page img,
.contact-page img {
  width: 100%;
  height: clamp(18rem, 45vw, 34rem);
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-page img {
  object-position: 60% 83%;
}

.race img {
  object-position: 50% 100%;
}

.story-page h1,
.contact-page h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.proof-grid span {
  padding: 0.85rem;
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-page {
  grid-template-columns: minmax(20rem, 34rem) minmax(0, 1fr);
}

.contact-page form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #101010;
}

.contact-page textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-hero {
  position: relative;
  min-height: calc(100svh - 6.8rem);
  display: grid;
  grid-template-columns: minmax(20rem, 39rem) minmax(16rem, 24rem);
  align-items: end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 4.25rem);
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 36%, rgba(5, 5, 5, 0.36) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), #050505 96%);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/hero image/SURRONSKINS.COM WE ARE THE BEST CUSTOM GRAPHICS SUPPLIER FOR SURRON BIKES AND MORE - green bike.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.01);
}

.contact-hero-copy {
  max-width: 42rem;
  padding-bottom: clamp(1rem, 4vw, 3rem);
  animation: rise 520ms var(--ease) both;
}

.contact-hero-copy h1 {
  max-width: 13ch;
  margin: 0.75rem 0 1rem;
  font-size: clamp(4.3rem, 8.4vw, 8.8rem);
}

.contact-hero-copy p {
  max-width: 36rem;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.contact-status {
  align-self: end;
  margin-bottom: clamp(1rem, 4vw, 3rem);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 12, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-status span,
.contact-status b,
.contact-form label span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-status strong {
  display: block;
  margin: 0.45rem 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-status p,
.contact-status small {
  color: #fff;
  line-height: 1.5;
}

.contact-status div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-options {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1px;
  padding: 1px clamp(1rem, 4vw, 4.25rem);
  background: #202020;
}

.contact-route {
  min-height: 13.5rem;
  padding: clamp(1rem, 2.5vw, 1.55rem);
  background: #080808;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.contact-route:hover {
  background: #101010;
  transform: translateY(-0.2rem);
}

.contact-route div {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.contact-route h3 {
  margin-bottom: 0.45rem;
  font-size: 1.55rem;
}

.contact-route strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
}

.contact-route p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.contact-intake {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 4.25rem);
  background:
    linear-gradient(180deg, #080808, #050505),
    #080808;
}

.intake-copy {
  position: sticky;
  top: 7.2rem;
}

.intake-copy h2 {
  max-width: 9ch;
  margin: 0.8rem 0 1rem;
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
}

.intake-copy p {
  max-width: 35rem;
  color: #fff;
  line-height: 1.65;
}

.intake-visual {
  margin-top: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101010;
}

.intake-visual img {
  width: 100%;
  height: clamp(17rem, 32vw, 28rem);
  object-fit: cover;
  object-position: right center;
  transform: scale(1.02);
  transition: transform 320ms var(--ease);
}

.intake-visual:hover img {
  transform: scale(1.06);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0d0d0d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.18rem;
  background: #151515;
  color: #fff;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}

.contact-form textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d8d8d;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #191919;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

.form-footer p {
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.contact-proof {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  padding: 1px clamp(1rem, 4vw, 4.25rem) clamp(2.5rem, 6vw, 5rem);
  background: #202020;
}

.contact-proof div {
  min-height: 11rem;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  background: #080808;
}

.contact-proof b {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.3rem;
  line-height: 0.8;
}

.contact-proof span {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.contact-proof p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.not-found {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - 6.8rem);
  padding: clamp(2rem, 5vw, 4.25rem);
}

.not-found h1 {
  color: var(--accent);
  font-size: clamp(6rem, 14vw, 13rem);
}

.not-found img {
  height: 32rem;
  object-fit: cover;
  object-position: right center;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 62%, rgba(216, 255, 0, 0.16), transparent);
}

.footer-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.25vw, 1rem);
  padding: clamp(0.9rem, 1.8vw, 1.2rem) clamp(1rem, 2.5vw, 2rem) clamp(0.65rem, 1.2vw, 0.8rem);
}

.footer a {
  color: #fff;
}

.footer-card {
  min-height: clamp(8.6rem, 10.5vw, 10rem);
  padding: clamp(0.85rem, 1.6vw, 1.1rem);
  border: 1px solid rgba(216, 255, 0, 0.82);
  border-radius: 0.28rem;
  background-color: #070707;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62)),
    var(--footer-card-bg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background-position 260ms var(--ease);
}

.footer-card:hover {
  transform: translateY(-0.16rem);
  border-color: var(--accent);
  background-position: center 48%;
  box-shadow:
    0 0 0 1px rgba(216, 255, 0, 0.18),
    0 0.8rem 2rem rgba(0, 0, 0, 0.34),
    inset 0 0 2rem rgba(216, 255, 0, 0.06);
}

.footer-card-shop {
  --footer-card-bg: url("../img/footer banner image/Shop Card Background (Ultra HD) - SURRONSKINS.COM.png");
}

.footer-card-custom {
  --footer-card-bg: url("../img/footer banner image/Custom Card Background (Ultra HD) - SURRONSKINS.COM.png");
}

.footer-card-community {
  --footer-card-bg: url("../img/footer banner image/Community Card Background (Ultra HD) - SURRONSKINS.COM.png");
}

.footer-card-support {
  --footer-card-bg: url("../img/footer banner image/Support Card Background (Ultra HD) - SURRONSKINS.COM.png");
}

.footer-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.footer-card h3 svg {
  width: 1.75rem;
  height: 1.75rem;
}

.footer-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 1.8rem;
  border-bottom: 1px solid rgba(216, 255, 0, 0.2);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 160ms var(--ease), padding-left 160ms var(--ease), border-color 160ms var(--ease);
}

.footer-card a svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #fff;
  transition: transform 160ms var(--ease), color 160ms var(--ease);
}

.footer-card a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
  border-color: rgba(216, 255, 0, 0.5);
}

.footer-card a:hover svg {
  color: var(--accent);
  transform: translateX(0.18rem);
}

.footer-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24rem, 0.72fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(14.5rem, 19vw, 18rem);
  padding: clamp(1.3rem, 3vw, 2rem) clamp(1rem, 3vw, 3.2rem);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.12) 100%),
    url("../img/footer banner image/SURRONSKINS.COM FORREST FOOTER IMAGE - BEST SURRON SKINS AND GRAPHICS IN THE UK - BUY NOW - footer image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-brand-block {
  max-width: 35rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  width: min(27rem, 82vw);
  height: auto;
}

.footer-brand-block p {
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  flex-wrap: wrap;
}

.footer-social {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social span {
  display: grid;
  place-items: center;
  width: clamp(3.8rem, 5vw, 4.8rem);
  height: clamp(3.8rem, 5vw, 4.8rem);
  border: 1px solid rgba(216, 255, 0, 0.75);
  border-radius: 0.28rem;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 160ms var(--ease), transform 160ms var(--ease), border-color 160ms var(--ease);
}

.footer-social img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
}

.footer-social-logo-instagram {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.footer-social-logo-tiktok {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
}

.footer-social-logo-youtube {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.55);
}

.footer-social:hover span {
  background: rgba(216, 255, 0, 0.08);
  border-color: var(--accent);
  transform: translateY(-0.18rem);
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0.8rem clamp(1rem, 3vw, 3.2rem);
  border-top: 1px solid rgba(216, 255, 0, 0.28);
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(120deg, transparent 0 1.2rem, rgba(255, 255, 255, 0.04) 1.2rem 1.55rem);
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 0.86rem;
}

.footer-bottom strong {
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-built-by {
  margin-left: auto;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0.82;
  transition: color 160ms var(--ease), opacity 160ms var(--ease);
}

.footer-built-by:hover {
  color: var(--accent);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(0.6rem);
  animation: rise 420ms var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.08) translate3d(1.4%, 0.4%, 0);
    filter: saturate(1.42) contrast(1.14) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1.02) translate3d(0, 0, 0);
    filter: saturate(1.08) contrast(1.04) brightness(1);
  }
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.025) translate3d(0.35%, 0.15%, 0); }
  100% { transform: scale(1.01)  translate3d(-0.2%, -0.1%, 0); }
}

@keyframes heroNeonWipe {
  0%  {
    opacity: 0;
    transform: translate3d(-70%, 0, 0) skewX(-10deg);
  }
  14% { opacity: 0.78; }
  55% { opacity: 0.58; }
  100% {
    opacity: 0;
    transform: translate3d(74%, 0, 0) skewX(-10deg);
  }
}

@media (max-width: 1100px) {
  .product-grid,
  .product-grid.compact,
  .build-grid,
  .review-grid,
  .merch-grid,
  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-shop,
  .product-page,
  .featured-builds,
  .story-page,
  .contact-page,
  .contact-hero,
  .contact-intake {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    align-items: end;
    min-height: 48rem;
  }

  .contact-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.9) 58%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.18));
  }

  .contact-hero-bg {
    background-position: 64% center;
  }

  .contact-status {
    max-width: 28rem;
    margin-bottom: 0;
  }

  .contact-options,
  .contact-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-copy {
    position: static;
  }

  .custom-card {
    min-height: 23rem;
  }

  .bike-selector {
    grid-template-columns: 12rem repeat(4, minmax(10.5rem, 1fr));
  }
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-total-card {
    position: static;
  }

  .promo {
    justify-content: center;
    gap: 0.5rem;
  }

  .promo span:nth-child(n+3) {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 0.7rem;
    min-height: 4rem;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: 6rem 0 auto;
    display: grid;
    justify-content: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.97);
    transform: translateY(-120%);
    transition: transform 220ms var(--ease);
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .header-actions {
    justify-content: end;
    gap: 0.35rem;
  }

  .auth-nav-button {
    height: 2.15rem;
    padding: 0 0.65rem;
    font-size: 0.58rem;
  }

  .auth-nav-button em,
  .account-trigger {
    display: none;
  }

  .hero {
    min-height: 48rem;
    align-items: end;
    padding-bottom: 6.6rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.94) 62%),
      linear-gradient(180deg, transparent 85%, #0d0d0d);
  }

  .hero-bg-layer {
    background-position: right center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 16px 0 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-feature-strip {
    max-width: 100%;
    margin: 6px 0 14px;
  }

  .hero-cta-group {
    gap: 12px;
  }

  .builder-page,
  .catalog-page,
  .garage-page {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .builder-bottom {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .contact-options,
  .contact-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-showcase {
    grid-template-columns: 1fr;
    background-position: center;
  }
}

@media (min-width: 721px) and (max-width: 920px) {
  .cart-panel {
    width: min(96vw, 54rem);
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(16.5rem, 0.85fr);
  }

  .cart-total-card {
    position: sticky;
    top: 0.2rem;
  }

  .cart-panel h2 {
    font-size: clamp(3rem, 7vw, 4.2rem);
  }

  .cart-item {
    grid-template-columns: 6.4rem 1fr auto;
    gap: 0.7rem;
  }

  .cart-item img {
    width: 6.4rem;
    height: 4.4rem;
  }

  .cart-item h3 {
    font-size: 1.12rem;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .promo {
    font-size: 0.66rem;
    min-height: 2.35rem;
    padding-inline: 0.6rem;
  }

  .promo span {
    min-height: 1.55rem;
    padding-inline: 0.7rem;
  }

  .cart-modal {
    justify-items: center;
    align-items: center;
    padding: 0.6rem;
  }

  .cart-panel {
    width: 100%;
    max-height: 92svh;
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .cart-head {
    padding-right: 2.5rem;
  }

  /* === PREMIUM CHECKOUT UPGRADE === */
  .premium-checkout {
    max-width: 980px !important;
    width: min(96vw, 980px);
  }

  .checkout-progress {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .checkout-progress .step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.45);
  }

  .checkout-progress .step.active {
    color: #c8ef00;
  }

  .checkout-progress .step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    font-size: 0.72rem;
    font-weight: 900;
  }

  .checkout-progress .step.active span {
    background: #c8ef00;
    color: #111;
  }

  .cart-review {
    display: grid;
    gap: 1rem;
  }

  .cart-summary-panel {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(216, 255, 0, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    display: grid;
    gap: 0.85rem;
  }

  .cart-summary-panel h3 {
    font-size: 0.95rem;
    margin: 0;
    color: #fff;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
  }

  .summary-row.total {
    border-top: 1px solid rgba(216,255,0,0.15);
    padding-top: 0.7rem;
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
  }

  .trust-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 0.4rem 0;
  }

  .trust-badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    background: rgba(200,239,0,0.1);
    border: 1px solid rgba(200,239,0,0.3);
    border-radius: 999px;
    color: #c8ef00;
    font-weight: 700;
  }

  .btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.1rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .btn-primary {
    background: #c8ef00;
    color: #111;
    border: 1px solid #c8ef00;
  }

  .btn-primary:hover {
    background: #b3d600;
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
  }

  .checkout-form {
    display: grid;
    gap: 1rem;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .form-group {
    display: grid;
    gap: 0.3rem;
  }

  .form-group.full {
    grid-column: 1 / -1;
  }

  .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.65rem;
    padding: 0.7rem 0.9rem;
    color: #fff;
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 82px;
    resize: vertical;
  }

  .order-summary-mini {
    background: rgba(0,0,0,0.35);
    border-radius: 0.75rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
  }

  .mini-total {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    font-weight: 700;
    color: #fff;
  }

  .form-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.4rem;
  }

  .confirmation-screen {
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .success-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1rem;
    background: #c8ef00;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
  }

  .confirmation-screen h2 {
    font-size: 1.85rem;
    margin: 0 0 0.4rem;
  }

  .order-ref {
    font-size: 0.9rem;
    color: #c8ef00;
  }

  .confirm-summary {
    background: rgba(0,0,0,0.35);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    margin: 1.1rem 0;
    text-align: left;
  }

  .confirm-item {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
  }

  .confirm-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.55rem;
    font-weight: 800;
    font-size: 1rem;
  }

  .confirm-message {
    max-width: 32rem;
    margin: 0 auto;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
  }

  .confirm-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.1rem;
  }

  .empty-cart {
    padding: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 720px) {
    .cart-layout {
      grid-template-columns: 1fr;
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
  }

  .cart-panel h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .cart-item {
    grid-template-columns: 5rem 1fr auto;
    gap: 0.7rem;
    padding: 0.65rem;
  }

  .cart-item img {
    width: 5rem;
    height: 4rem;
  }

  .cart-item h3 {
    font-size: 1.12rem;
  }

  .cart-copy {
    font-size: 0.92rem;
  }

  .cookie-consent {
    inset: auto 0.65rem 0.65rem;
    width: auto;
  }

  .cookie-panel {
    border-radius: 12px;
    padding: 14px 16px;
  }

  .cookie-head h2 {
    font-size: 1.15rem;
  }

  .cookie-copy p {
    font-size: 0.8rem;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .cookie-actions button {
    height: 38px;
    font-size: 0.72rem;
  }

  .cookie-preferences label {
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .cookie-manage {
    font-size: 0.68rem;
  }

  .brand-logo {
    height: 2.6rem;
  }

  .icon-button {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    min-height: 44rem;
  }

  .button {
    width: 100%;
  }

  .bike-selector {
    left: 0.75rem;
    right: 0.75rem;
  }

  .product-grid,
  .product-grid.compact,
  .build-grid,
  .review-grid,
  .merch-grid,
  .article-grid,
  .mini-builds {
    grid-template-columns: 1fr 1fr;
  }

  .split-section,
  .rating-banner,
  .not-found {
    grid-template-columns: 1fr;
  }

  #community-builds {
    grid-template-columns: minmax(0, 1fr);
  }

  #community-builds .mini-builds {
    width: 100%;
  }

  #community-builds .build-card {
    min-height: 0;
  }

  #community-builds .build-card img {
    height: auto;
    aspect-ratio: 1.24;
  }

  .rating-banner {
    align-items: end;
    background-position: 58% center;
  }

  .rating-banner .button {
    justify-self: start;
  }

  .model-grid { grid-template-columns: repeat(3, 1fr); }
  .finish-grid { grid-template-columns: repeat(2, 1fr); }
  .palette-grid { grid-template-columns: repeat(6, 1fr); }

  .gallery-page .section-head,
  .reviews-page .section-head,
  .catalog-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-view {
    min-height: 25rem;
  }

  .gallery-view > img {
    height: 25rem;
  }

  .bike-preview {
    min-height: 22rem;
  }

  .bike-preview img {
    transform: scale(2.18);
  }

  .preview-tools {
    top: 4.2rem;
  }

  .order-list article {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .feature-row,
  .field-pair,
  .form-footer,
  .contact-options,
  .contact-proof {
    grid-template-columns: 1fr;
  }

  .footer-card-grid,
  .footer-showcase {
    grid-template-columns: 1fr;
  }

  .footer-card-grid {
    padding-top: 1rem;
  }

  .footer-showcase {
    min-height: 28rem;
    background-position: 58% center;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-built-by {
    margin-left: 0;
  }

  .footer-bottom strong {
    border-left: 0;
    padding-left: 0;
  }

  .footer-logo {
    width: min(21rem, 86vw);
  }

  .rating-banner {
    min-height: 25rem;
    background-position: 62% center;
  }

  .rating-banner h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .rating-stats {
    display: grid;
    gap: 0.8rem;
  }

  .rating-stats div,
  .rating-stats div:first-child {
    padding-left: 1rem;
  }

  .rating-stats div::before,
  .rating-stats div:first-child::before {
    display: block;
  }

  .contact-hero {
    min-height: 43rem;
    padding-bottom: 2rem;
  }

  .contact-hero-bg {
    background-position: 66% top;
    opacity: 0.82;
  }

  .contact-hero-copy {
    padding-bottom: 0;
  }

  .contact-hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
  }

  .contact-route,
  .contact-proof div {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  #community-builds {
    grid-template-columns: minmax(0, 1fr);
  }

  #community-builds .mini-builds {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #community-builds .build-card {
    min-height: 0;
  }

  #community-builds .build-card img {
    height: auto;
    aspect-ratio: 1.24;
  }
}

@media (max-width: 420px) {
  .product-grid,
  .product-grid.compact,
  .build-grid,
  .review-grid,
  .merch-grid,
  .article-grid,
  .mini-builds {
    grid-template-columns: 1fr;
  }

  #community-builds .mini-builds {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-wipe {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONFIGURATOR V3
   All new classes for the custom-design.html premium builder.
   Old V2 classes (.builder-layout, .config-panel-v2, etc.) are
   removed in a later cleanup task after the new UI is verified.
═══════════════════════════════════════════════════════════════ */

/* ── Custom page body overrides ─────────────────────────────── */
body[data-page="custom"] {
  background: #060606;
}

body[data-page="custom"] .promo {
  display: none;
}

body[data-page="custom"] .site-header {
  position: fixed;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  border-bottom: none;
  z-index: 100;
}

/* ── Hero launch screen ──────────────────────────────────────── */
.cfg-hero {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #060606;
  overflow: hidden;
}

.cfg-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(216, 255, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cfg-hero-bike {
  position: absolute;
  width: 72%;
  max-width: 820px;
  object-fit: contain;
  opacity: 0.22;
  filter: blur(1px) brightness(0.7);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cfg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 960px;
}

.cfg-hero-content .eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.cfg-hero-content h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.84;
  margin-bottom: 2.5rem;
}

.cfg-hero-content h1 mark {
  background: none;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.cfg-hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.cfg-hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-align: center;
  color: inherit;
  font: inherit;
}

.cfg-hero-card:hover {
  background: rgba(216, 255, 0, 0.06);
  border-color: rgba(216, 255, 0, 0.3);
  transform: translateY(-3px);
}

.cfg-hero-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.cfg-hero-card strong {
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  display: block;
}

.cfg-hero-card small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

@media (max-width: 700px) {
  .cfg-hero-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Configurator wrap ───────────────────────────────────────── */
.cfg-wrap {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  background: #060606;
}

/* ── Stage ───────────────────────────────────────────────────── */
.cfg-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cfg-stage-glow {
  position: absolute;
  inset: 0;
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.cfg-preview {
  position: relative;
  z-index: 2;
  width: min(76vw, 1120px);
  max-height: 72%;
  aspect-ratio: 1747 / 900;
  transition: opacity 0.18s ease, transform 0.18s ease;
  filter: drop-shadow(0 24px 70px rgba(216, 255, 0, 0.12));
}

.cfg-preview::before {
  content: "";
  position: absolute;
  inset: 9% 3% 4%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 65% 58%, rgba(216, 255, 0, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(216, 255, 0, 0.08), transparent 34%, rgba(255, 255, 255, 0.035));
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.cfg-bike-img,
.buy-bike-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease, transform 0.18s ease, clip-path 0.28s ease;
}

.cfg-bike-base[hidden] {
  display: none !important;
}

.cfg-skin-mount,
.cfg-sponsor-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cfg-skin-mount {
  z-index: 3;
}

.cfg-sponsor-layer {
  z-index: 5;
}

.cfg-skin-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.cfg-panel-mask {
  opacity: 0.76;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2.2;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 12px rgba(216, 255, 0, 0.18));
}

.cfg-graphic-mark {
  stroke: rgba(0, 0, 0, 0.52);
  stroke-width: 1.8;
  paint-order: stroke fill;
}

.cfg-sponsor-tag {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  min-width: 42px;
  aspect-ratio: 3 / 1;
  transform: translate(-50%, -50%) rotate(var(--r));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.28rem;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.38rem, 0.68vw, 0.7rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 14px rgba(216, 255, 0, 0.12);
}

.cfg-sponsor-tag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cfg-preview-label {
  position: absolute;
  right: 6.5%;
  bottom: 12%;
  z-index: 7;
  padding: 0.4rem 0.58rem;
  border: 1px solid rgba(216, 255, 0, 0.32);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cfg-preview.is-graphics-only::before,
.cfg-preview.is-split::before {
  opacity: 1;
}

.cfg-preview.is-graphics-only .cfg-skin-svg {
  filter: drop-shadow(0 18px 45px rgba(216, 255, 0, 0.18));
}

.cfg-preview.is-split .cfg-bike-base {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 42% 100%);
}

.cfg-preview.is-split::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  z-index: 8;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(216, 255, 0, 0.9), transparent);
  box-shadow: 0 0 18px rgba(216, 255, 0, 0.6);
  transform: rotate(4deg);
}

/* ── Top bar ─────────────────────────────────────────────────── */
.cfg-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}

/* ── Customisation Level widget ──────────────────────────────── */
.cust-level {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 6px 14px 6px 12px;
  backdrop-filter: blur(12px);
  pointer-events: all;
}

.cl-track {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-end;
}

.cl-label {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

.cl-tier {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.cl-pips {
  display: flex;
  gap: 3px;
}

.cl-pip {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease;
}

.cl-pip.filled {
  background: var(--pip-colour, var(--accent));
}

.cl-pip.partial {
  background: rgba(216, 255, 0, 0.35);
}

/* ── Race plate ──────────────────────────────────────────────── */
.cfg-plate {
  position: absolute;
  top: 34%;
  left: 52.5%;
  z-index: 6;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 18px 8px;
  backdrop-filter: blur(10px);
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
  min-width: 96px;
}

.cfg-plate-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  transition: color 0.3s, text-shadow 0.3s;
}

.cfg-plate-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.55rem, 1.1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.3s;
}

/* ── View strip ──────────────────────────────────────────────── */
.cfg-views {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.cfg-vbtn {
  width: 58px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cfg-vbtn.active {
  background: rgba(216, 255, 0, 0.1);
  border-color: rgba(216, 255, 0, 0.42);
  color: var(--accent);
}

@media (max-width: 768px) {
  .cfg-preview {
    width: 94%;
    max-height: 55%;
  }

  .cfg-plate {
    top: 35%;
    left: 52%;
    padding: 7px 14px;
  }

  .cfg-plate-num {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .cfg-views {
    right: 8px;
  }

  .cfg-vbtn {
    width: 52px;
    height: 32px;
    font-size: 0.48rem;
  }
}

/* ── Bottom bar ──────────────────────────────────────────────── */
.cfg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.9) 65%, transparent 100%);
  padding-top: 32px;
}

.cfg-tabs {
  display: flex;
  gap: 3px;
  margin: 0 16px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 3px;
}

.cfg-tab {
  flex: 1;
  padding: 7px 4px;
  border-radius: 100px;
  background: none;
  border: none;
  text-align: center;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cfg-tab.active {
  background: var(--accent);
  color: #000;
}

/* ── Panel shared ─────────────────────────────────────────────── */
.cfg-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 14px;
  min-height: 52px;
}

.cfg-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  align-self: center;
}

.cfg-panel-lbl {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── BIKE panel ───────────────────────────────────────────────── */
.cfg-bike-pills {
  display: flex;
  gap: 5px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}

.cfg-model-pill {
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.56rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cfg-model-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(216, 255, 0, 0.06);
}

/* ── KIT panel ────────────────────────────────────────────────── */
.cfg-kit-cards {
  display: flex;
  gap: 6px;
  flex: 1;
  align-items: stretch;
}

.cfg-kit-card {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  font: inherit;
  color: inherit;
}

.cfg-kit-card strong {
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  display: block;
}

.cfg-kit-card .cfg-kit-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.cfg-kit-card small {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  display: block;
}

.cfg-kit-card.active {
  border-color: var(--accent);
  background: rgba(216, 255, 0, 0.05);
}

.cfg-kit-card.active strong {
  color: var(--accent);
}

/* ── Shared CTA (Add to Cart) ─────────────────────────────────── */
.cfg-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cfg-price-lbl {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.cfg-price-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.cfg-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.cfg-cart-btn svg {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
}

.cfg-cart-btn:hover {
  background: #c8ef00;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cfg-panel {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cfg-kit-cards {
    flex-direction: column;
    gap: 4px;
  }

  .cfg-kit-card {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

/* ── COLOURS panel ────────────────────────────────────────────── */
.cfg-panel-colours {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding-bottom: 12px;
}

.cfg-colours-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cfg-colours-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cfg-orb-row {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow-x: auto;
  overflow-y: visible;
  align-items: flex-start;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.cfg-orb-row::-webkit-scrollbar {
  display: none;
}

.cfg-orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 2px;
}

.cfg-orb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: outline 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.cfg-orb-wrap:hover .cfg-orb {
  transform: scale(1.12);
}

.cfg-orb-wrap.active .cfg-orb {
  outline: 2.5px solid #fff;
  outline-offset: 3px;
  transform: scale(1.08);
}

.cfg-orb-name {
  font-size: 0.47rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  text-align: center;
  transition: color 0.15s;
}

.cfg-orb-wrap.active .cfg-orb-name {
  color: rgba(255, 255, 255, 0.8);
}

.cfg-finish-pills {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.cfg-finish-pill {
  padding: 4px 9px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-family: inherit;
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cfg-finish-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(216, 255, 0, 0.05);
}

/* ── NUMBER panel ─────────────────────────────────────────────── */
.cfg-num-fields {
  display: flex;
  gap: 10px;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.cfg-num-field-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cfg-num-field-name {
  flex: 1;
  min-width: 100px;
}

.cfg-field-lbl {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: block;
}

.cfg-num-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 6px 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  width: 58px;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}

.cfg-num-input:focus {
  border-color: var(--accent);
}

.cfg-name-input {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  text-align: left;
  text-transform: uppercase;
}

.cfg-font-pills {
  display: flex;
  gap: 4px;
}

.cfg-font-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-family: inherit;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}

.cfg-font-preview {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.cfg-font-pill.active {
  border-color: rgba(216, 255, 0, 0.5);
  color: var(--accent);
  background: rgba(216, 255, 0, 0.05);
}

.cfg-num-colour-orbs {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* ── LOGOS panel ─────────────────────────────────────────────── */
.cfg-logo-slots {
  display: flex;
  gap: 6px;
  flex: 1;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.cfg-logo-slots::-webkit-scrollbar {
  display: none;
}

.cfg-logo-slot {
  flex-shrink: 0;
  min-width: 70px;
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 9px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  position: relative;
}

.cfg-logo-slot:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.cfg-logo-slot.filled {
  border-color: rgba(216, 255, 0, 0.35);
  background: rgba(216, 255, 0, 0.04);
  border-style: solid;
}

.cfg-logo-slot-icon {
  font-size: 1.1rem;
  opacity: 0.28;
  line-height: 1;
}

.cfg-logo-slot.filled .cfg-logo-slot-icon {
  opacity: 1;
}

.cfg-logo-slot-name {
  font-size: 0.52rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cfg-logo-slot.filled .cfg-logo-slot-name {
  color: var(--accent);
}

.cfg-logo-slot-pos {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.18);
}

/* ── BUY full-screen overlay ─────────────────────────────────── */
.cfg-panel-buy {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  background: #060606;
}

.buy-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.buy-glow {
  position: absolute;
  inset: 0;
  transition: background 0.5s ease;
  pointer-events: none;
}

.buy-preview {
  width: min(88%, 1080px);
  max-height: 82%;
}

.buy-bike-img {
  filter: drop-shadow(0 20px 60px rgba(216, 255, 0, 0.15));
}

.buy-plate {
  position: absolute;
  top: 34%;
  left: 52.5%;
  z-index: 5;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.buy-plate-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
}

.buy-plate-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
}

.buy-stage-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 10;
}

.buy-stage-lbl {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buy-logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}

.buy-logo-text span {
  color: var(--accent);
}

.buy-spec-panel {
  width: 260px;
  flex-shrink: 0;
  background: #080808;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 0;
  overflow-y: auto;
}

.buy-spec-label {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.buy-spec-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-spec-row {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.buy-spec-row:last-child {
  border-bottom: none;
}

.buy-spec-key {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.buy-spec-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.buy-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.buy-spec-edit {
  margin-left: auto;
  font-family: "Manrope", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  text-transform: uppercase;
}

.buy-spec-footer {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 8px;
}

.buy-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.buy-total-lbl {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
}

.buy-total-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.buy-cart-btn {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 13px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
  text-decoration: none;
}

.buy-cart-btn:hover {
  background: #c8ef00;
}

.buy-share-btn {
  width: 100%;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 9px;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .cfg-panel-buy {
    flex-direction: column;
  }

  .buy-stage {
    flex: 0 0 55dvh;
  }

  .buy-spec-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* ── Popular builds section ───────────────────────────────────── */
.popular-builds {
  padding: 4rem 1.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.popular-builds-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.fire-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.28);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6600;
  white-space: nowrap;
}

.popular-builds-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.popular-builds-head p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  margin-left: auto;
}

.pop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pop-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0c0c0c;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.pop-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.pop-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}

.pop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  display: block;
  transition: transform 0.3s;
}

.pop-card:hover .pop-card-img img {
  transform: scale(1.05);
}

.pop-card-body {
  padding: 10px 12px 12px;
}

.pop-card-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 5px;
}

.pop-card-colours {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.pop-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pop-colour-names {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
}

.pop-card-proof {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 600;
  margin-bottom: 9px;
}

.pop-load-btn {
  width: 100%;
  background: rgba(216, 255, 0, 0.08);
  border: 1px solid rgba(216, 255, 0, 0.22);
  border-radius: 100px;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pop-load-btn:hover {
  background: rgba(216, 255, 0, 0.16);
  border-color: rgba(216, 255, 0, 0.45);
}

@media (max-width: 700px) {
  .pop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Community V2 section ─────────────────────────────────────── */
.community-v2 {
  padding: 1rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.community-v2-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-v2-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.community-v2-head a {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 2px;
}

.community-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cc-v2 {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0d0d;
  transition: transform 0.2s, border-color 0.2s;
}

.cc-v2:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.13);
}

.cc-v2-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.cc-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  display: block;
  transition: transform 0.3s;
}

.cc-v2:hover .cc-v2-photo img {
  transform: scale(1.04);
}

.cc-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.cc-v2-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.cc-v2-handle {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.cc-v2-body {
  padding: 8px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.cc-v2-likes {
  font-size: 0.56rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cc-v2-likes::before {
  content: "♥";
  color: #ff2f9a;
  font-size: 0.65rem;
}

.cc-v2-use {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 4px 11px;
  font-family: inherit;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cc-v2-use:hover {
  background: #c8ef00;
}

@media (max-width: 700px) {
  .community-v2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* === SURRONSKINS CONCEPT-TO-REAL IMPROVEMENTS === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.24rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: transparent;
  box-shadow: none;
}

.hero-process {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
  font-size: 0.8rem;
  color: #aaa;
}
.hero-process span {
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.hero-note {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 10px;
  max-width: 420px;
}

.shop-intro-note {
  font-size: 0.82rem;
  color: #888;
  margin: 0 0 16px;
  line-height: 1.35;
}

.product-info p {
  font-size: 0.8rem;
  color: #888;
}

.process-strip {
  background: #111;
  padding: 32px 24px;
  margin: 20px 0;
  border-radius: 16px;
  text-align: center;
}
.process-head h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.process-head p {
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  color: #aaa;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.process-steps .step {
  background: #1a1a1a;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.process-steps .step span {
  background: #c8ef00;
  color: #111;
  font-weight: 800;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
}
.process-footnote {
  font-size: 0.75rem;
  opacity: 0.6;
  margin: 0;
}

/* ============================================
   PREMIUM CART UPGRADE — WAY BETTER LOOK
   Modern dark premium e-commerce cart / enquiry
============================================ */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 12px;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.cart-panel {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 94vh;
  background: #0b0c0b;
  border: 1px solid rgba(200, 239, 0, 0.15);
  border-radius: 22px;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.92),
              inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Manrope", system-ui, sans-serif;
  animation: cartSlide 280ms cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes cartSlide {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 26px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.cart-title h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}

.cart-title h2 .item-count {
  font-size: .85rem;
  font-weight: 500;
  color: #666;
  margin-left: 6px;
}

.cart-sub {
  margin: 2px 0 0;
  font-size: .78rem;
  color: #777;
  line-height: 1.3;
}

.cart-close {
  position: static;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #141514;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: #999;
  font-size: 20px;
  line-height: 1;
  transition: all .15s ease;
  flex-shrink: 0;
}

.cart-close:hover {
  background: #1f211f;
  border-color: #c8ef00;
  color: #c8ef00;
  transform: rotate(90deg);
}

/* Steps */
.checkout-steps {
  display: flex;
  gap: 8px;
  padding: 12px 26px 0;
  font-size: .78rem;
  font-weight: 600;
}

.checkout-steps .step {
  padding: 5px 13px;
  border-radius: 999px;
  background: #111211;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.checkout-steps .step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  background: #222;
  color: #888;
}

.checkout-steps .step.active {
  background: rgba(200,239,0,0.1);
  color: #c8ef00;
  border-color: rgba(200,239,0,0.3);
}

.checkout-steps .step.active .num {
  background: #c8ef00;
  color: #111;
}

/* Main layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 720px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.cart-review {
  padding: 16px 20px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 720px) {
  .cart-review { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PREMIUM ITEM ROW */
.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 12px 12px 12px;
  background: #121312;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  transition: transform .1s ease, border-color .1s ease;
}

.cart-item:hover {
  border-color: rgba(200,239,0,0.12);
  transform: translateY(-1px);
}

.ci-thumb {
  width: 78px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.04);
}

.ci-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ci-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ci-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.ci-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.ci-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
}

.ci-spec {
  font-size: 0.74rem;
  color: #777;
  margin: 1px 0 4px;
  line-height: 1.25;
}

.ci-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  background: #1a1c1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 1px;
  font-size: 13px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #aaa;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  transition: all .1s ease;
  cursor: pointer;
}

.qty-btn:hover {
  background: rgba(200,239,0,0.12);
  color: #c8ef00;
}

.qty-val {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 0 5px;
  font-size: 0.85rem;
}

.ci-line-total {
  margin-left: 2px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #c8ef00;
  letter-spacing: -.2px;
}

.remove-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: #555;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 15px;
  transition: all .15s ease;
}

.remove-btn:hover {
  border-color: #ff5555;
  color: #ff6b6b;
  background: rgba(255,60,60,0.07);
}

/* SUMMARY SIDEBAR */
.cart-summary-panel {
  background: #0f100f;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(200,239,0,0.07);
}

@media (max-width: 720px) {
  .cart-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(200,239,0,0.07);
  }
}

.cart-summary-panel .summary-head h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #666;
  margin: 0 0 2px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .88rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: #aaa;
}

.summary-row strong { color: #ddd; }

.summary-row.total-row {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(200,239,0,0.15);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.summary-row.total-row strong {
  color: #c8ef00;
  font-size: 1.15rem;
}

.summary-row .free {
  color: #7fb300;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 4px 0;
}

.trust-badges .badge {
  font-size: .68rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(200,239,0,0.07);
  color: #a8d100;
  border: 1px solid rgba(200,239,0,0.15);
  white-space: nowrap;
}

.btn-primary,
.cart-summary-panel .btn-primary {
  background: #c8ef00;
  color: #111;
  font-weight: 800;
  font-size: .9rem;
  border: 0;
  border-radius: 999px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .1s ease, box-shadow .1s ease;
  margin-top: 4px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -2px rgba(200,239,0,0.45);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #2b2d2b;
  color: #b3b3b3;
  font-weight: 600;
  font-size: .85rem;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: #444;
  color: #fff;
  background: #151615;
}

.summary-footnote {
  font-size: 0.68rem;
  color: #555;
  text-align: center;
  margin-top: 2px;
}

/* FORM */
.cart-form-wrap {
  padding: 14px 26px 22px;
  overflow: auto;
}

.checkout-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: .7rem;
  letter-spacing: .02em;
  color: #777;
  margin-bottom: 4px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #151615;
  border: 1px solid #272827;
  color: #eee;
  font-size: .92rem;
  padding: 10px 13px;
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c8ef00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,239,0,0.1);
}

.order-mini {
  margin: 14px 0 6px;
  background: #151615;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: .8rem;
}

.mini-items {
  color: #999;
  line-height: 1.4;
  margin-bottom: 4px;
}

.mini-total {
  font-weight: 600;
  color: #ddd;
}

.mini-total strong {
  color: #c8ef00;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.form-actions .btn-secondary { flex: 1; }
.form-actions .btn-primary { flex: 1.4; }

.secure-note {
  font-size: .68rem;
  color: #555;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CONFIRMATION */
.confirmation-screen {
  padding: 32px 28px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-check {
  margin-bottom: 10px;
}

.check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,239,0,0.12);
  color: #c8ef00;
  font-size: 34px;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(200,239,0,0.06);
}

.confirmation-screen h2 {
  font-size: 1.55rem;
  margin: 0 0 4px;
  font-weight: 800;
}

.ref {
  font-family: ui-monospace, monospace;
  font-size: .85rem;
  color: #777;
  margin-bottom: 16px;
}

.ref strong {
  color: #c8ef00;
  letter-spacing: 1px;
}

.confirm-summary {
  width: 100%;
  max-width: 300px;
  background: #131413;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.04);
}

.cs-head {
  font-size: .7rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
  letter-spacing: .08em;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: .85rem;
  color: #ccc;
}

.confirm-item .x {
  color: #777;
  font-weight: 400;
}

.confirm-item .price {
  font-weight: 600;
  color: #ddd;
}

.confirm-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(200,239,0,0.12);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.confirm-total strong {
  color: #c8ef00;
}

.confirm-message {
  max-width: 340px;
  font-size: .82rem;
  line-height: 1.5;
  color: #888;
  margin-bottom: 8px;
}

.confirm-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  margin-top: 6px;
}

.confirm-actions .btn-secondary { flex: 1; }
.confirm-actions .btn-primary { flex: 1; }

.confirm-foot {
  margin-top: 18px;
  font-size: .72rem;
  color: #555;
}

.confirm-foot a { color: #888; text-decoration: underline; }

/* Empty state */
.empty-cart {
  padding: 40px 12px;
  text-align: center;
  color: #666;
}

.empty-cart p {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

/* Small polish */
.cart-panel button {
  font-family: inherit;
}

/* Re-assert the homepage hero container so the layered layout renders reliably. */
body[data-page="home"] .hero {
  position: relative;
  min-height: calc(100svh - 6.8rem);
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.6rem) clamp(1rem, 4vw, 4.25rem) 5.8rem;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 860px) {
  body[data-page="home"] .hero {
    min-height: 48rem;
    align-items: end;
    padding-bottom: 6.6rem;
  }

  body[data-page="home"] .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.94) 62%),
      linear-gradient(180deg, transparent 85%, #0d0d0d);
  }

  body[data-page="home"] .hero-bg-layer {
    background-position: right center;
  }

  body[data-page="home"] .hero-subtitle {
    max-width: 100%;
    margin: 16px 0 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  body[data-page="home"] .hero-feature-strip {
    max-width: 100%;
    margin: 6px 0 14px;
  }

  body[data-page="home"] .hero-cta-group {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .hero {
    min-height: 44rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AUTH V2
   Social login buttons + updated modal layout.
   Old V1 classes (.auth-google, .auth-google-mark, .auth-tabs)
   are removed in Task 6 after visual verification.
═══════════════════════════════════════════════════════════════ */

/* ── Social button stack ─────────────────────────────────────── */
.auth-social-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, opacity 0.18s;
}

.auth-social-btn:hover {
  transform: translateY(-1px);
}

.auth-social-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-social-logo svg {
  width: 20px;
  height: 20px;
}

/* Google — white bg per Google brand guidelines */
.auth-social-btn--google {
  background: #fff;
  color: #202124;
  border: 1px solid #dadce0;
}

.auth-social-btn--google:hover {
  background: #f8f8f8;
}

/* Facebook — brand blue */
.auth-social-btn--facebook {
  background: #1877f2;
  color: #fff;
}

.auth-social-btn--facebook:hover {
  background: #166fe5;
}

/* Apple — black with subtle border so it reads on the dark card */
.auth-social-btn--apple {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-social-btn--apple:hover {
  background: #1a1a1a;
}

/* Unavailable state (SDK blocked by ad blocker) */
.auth-social-btn.is-unavailable {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.auth-social-btn.is-unavailable:hover {
  transform: none;
}

/* ── Email tabs (renamed from .auth-tabs) ────────────────────── */
.auth-email-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
}

.auth-email-tabs button {
  min-height: 2.35rem;
  border: 0;
  border-radius: 0.42rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
}

.auth-email-tabs .active {
  background: var(--accent);
  color: #050505;
}

/* ── Legal footer line ───────────────────────────────────────── */
.auth-legal-v2 {
  margin-top: 0.85rem;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.5;
  text-align: center;
}

.auth-legal-v2 a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-legal-v2 a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE PREMIUM UPGRADE
   Premium hero, trust strip, kit details, why-choose, tabs and
   "Riders also viewed". Layered on top of the base .product-page
   grid; existing classes are left intact.
═══════════════════════════════════════════════════════════════ */

.product-gallery {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.product-gallery .gallery-view {
  min-height: 30rem;
}

.product-hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.8rem;
  border-radius: 0.35rem;
  background: var(--accent);
  color: #050505;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-gallery .thumb-row {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  flex-wrap: wrap;
}

.product-detail-badge {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(216, 255, 0, 0.4);
  border-radius: 2rem;
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-detail-rating {
  margin: 0.75rem 0 0.4rem;
}

.product-lede {
  margin: 0.4rem 0 1.1rem;
  font-size: 1.02rem;
}

.product-benefits {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.benefit-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 255, 0, 0.35);
  background: rgba(216, 255, 0, 0.08);
  color: var(--accent);
}

.benefit-ico svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2.4;
}

.product-cta-stack {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0.6rem;
}

.product-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--accent);
  color: #050505;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.product-primary-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(216, 255, 0, 0.22);
}

.product-primary-cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.product-secondary-cta {
  width: 100%;
  justify-content: center;
  gap: 0.55rem;
}

.product-secondary-cta svg {
  width: 1.05rem;
  height: 1.05rem;
}

.product-enquiry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease;
}

.product-enquiry-link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-enquiry-link svg {
  width: 0.95rem;
  height: 0.95rem;
}

.product-enquiry-link:hover {
  color: var(--accent);
}

.product-detail .small-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.product-detail .small-note svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.product-trust-strip div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.trust-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 255, 0, 0.3);
  background: rgba(216, 255, 0, 0.07);
  color: var(--accent);
}

.trust-emblem svg {
  width: 1.2rem;
  height: 1.2rem;
}

.trust-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.product-trust-strip b {
  color: #fff;
  font-size: 0.9rem;
}

.product-trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-included {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 4.25rem);
  background: #080808;
}

.product-included h2 {
  margin: 0.4rem 0 1.3rem;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
}

.product-included-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.kit-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(216, 255, 0, 0.28);
  background: rgba(216, 255, 0, 0.06);
  color: var(--accent);
}

.kit-ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

.kit-copy {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 0.2rem 0.75rem;
  align-items: baseline;
  flex: 1;
}

.product-included-list strong {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-included-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

.product-included-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #0d0d0d;
}

.product-included-media img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  transform: scale(1.5);
}

.product-why {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 4.25rem);
  background: #0b0b0b;
  border-top: 1px solid var(--line);
}

.product-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.product-why-grid article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #101010;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-why-grid article:hover {
  border-color: rgba(216, 255, 0, 0.45);
  transform: translateY(-2px);
}

.why-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 0.95rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(216, 255, 0, 0.3);
  background: rgba(216, 255, 0, 0.07);
  color: var(--accent);
}

.why-emblem svg {
  width: 1.4rem;
  height: 1.4rem;
}

.product-why-grid article:hover .why-emblem {
  background: rgba(216, 255, 0, 0.13);
}

.product-why-grid h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 1.15rem;
}

.product-why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-tabs {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 4.25rem);
  background: #080808;
}

.product-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.tab-ico {
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 0.85;
}

.tab-ico svg {
  width: 1rem;
  height: 1rem;
}

.product-tab:hover {
  color: #fff;
}

.product-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.product-tab-panel {
  display: none;
  max-width: 52rem;
  padding-top: 1.4rem;
}

.product-tab-panel.active {
  display: block;
}

.product-tab-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-related {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 4.25rem);
  background: #0b0b0b;
  border-top: 1px solid var(--line);
}

.product-related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.product-related-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.product-related-head a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-related-head a svg {
  width: 0.9rem;
  height: 0.9rem;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #101010;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.related-card-img {
  overflow: hidden;
  aspect-ratio: 1.3;
  background: #0d0d0d;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.6);
  transition: transform 0.3s ease;
}

.related-card:hover .related-card-img img {
  transform: scale(1.68);
}

.related-card-body {
  display: grid;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1.1rem;
}

.related-card-bike {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card-body h3 {
  margin: 0;
  font-size: 1.1rem;
}

.related-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.15rem;
}

.related-card-foot strong {
  color: var(--accent);
  font-size: 1.05rem;
}

.related-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card-cta svg {
  width: 0.85rem;
  height: 0.85rem;
}

@media (max-width: 860px) {
  .product-included {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-included-media {
    order: -1;
  }
  .product-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kit-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.15rem;
  }
}

@media (max-width: 560px) {
  .product-related-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .related-card {
    scroll-snap-align: start;
  }
}
