:root {
  --navy-950: #021322;
  --navy-900: #031b30;
  --navy-850: #052442;
  --navy-800: #082d51;
  --ink: #071831;
  --red: #d51f26;
  --red-dark: #a61218;
  --white: #fff;
  --muted: #606975;
  --line: #dfe3e7;
  --shadow: 0 7px 18px rgba(3, 27, 48, .12);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ee2a31, #ff6a54);
  box-shadow: 0 0 12px rgba(238, 42, 49, .65);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-shell {
  width: 100%;
  margin: 0;
  background: #fff;
  min-height: 100vh;
}

.storefront-grid {
  display: block;
  min-width: 0;
}
.left-pane { width: 100%; min-width: 0; }

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  height: 129px;
  color: #fff;
  background:
    radial-gradient(circle at 65% -30%, rgba(15, 65, 103, .56), transparent 46%),
    linear-gradient(135deg, #061a2d, #00111f 78%);
}
.header-main {
  position: relative;
  height: 92px;
  padding: 16px 42px 10px;
  display: grid;
  grid-template-columns: 273px minmax(340px, 500px) 1fr;
  align-items: center;
  gap: 32px;
}
.brand { width: 235px; }
.brand img { width: 100%; height: auto; }
.site-search {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 33vw, 500px);
  height: 35px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 42px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2), 0 7px 20px rgba(0,0,0,.12);
  transform: translate(-50%, -50%);
  transition: box-shadow .25s ease, transform .25s ease;
}
.site-search:focus-within { box-shadow: 0 0 0 2px rgba(238, 42, 49, .65), 0 8px 22px rgba(0,0,0,.2); transform: translate(-50%, calc(-50% - 1px)); }
.site-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 13px;
  color: #273546;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
}
.site-search input::placeholder { color: #7c8188; opacity: 1; }
.site-search button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #d8282e, #ad1016);
  display: grid;
  place-items: center;
}
.site-search svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-actions { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.account-action, .cart-action {
  position: relative;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 7px;
}
.search-toggle { display: none; }
.account-action svg, .cart-action svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.account-action span { display: grid; text-align: left; line-height: 1.05; }
.account-action strong { font-size: 12px; }
.account-action small { font-size: 11px; margin-top: 3px; }
.cart-action > span { font-size: 12px; font-weight: 600; }
.cart-count {
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  color: #fff;
  background: #e31f26;
  font: 700 9px/16px Inter, sans-serif;
  text-align: center;
}
.menu-toggle { display: none; }
.primary-nav {
  height: 37px;
  display: grid;
  grid-template-columns: 215px repeat(6, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(90deg, #061b31, #06223c);
}
.primary-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease;
}
.primary-nav a:not(.category-nav):hover, .primary-nav a:not(.category-nav).active { background: rgba(255,255,255,.045); color: #f03a40; }
.primary-nav .category-nav {
  justify-content: flex-start;
  gap: 10px;
  margin-left: 42px;
  padding-left: 11px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(135deg, #db292f, #ad1117);
}
.category-nav svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.chevron { padding-left: 4px; font-size: 12px; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  height: 500px;
  overflow: hidden;
  color: #fff;
  background: #031a2e url("../images/hero-truck.png") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 22, 39, 1) 0%, rgba(2, 22, 39, 1) 50%, rgba(2, 22, 39, .72) 56%, rgba(2, 22, 39, .18) 64%, transparent 72%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(0, 12, 22, .48));
  pointer-events: none;
}
.hero-vfx {
  position: absolute;
  z-index: 0;
  left: 43%;
  bottom: -25%;
  width: 52%;
  height: 70%;
  opacity: .24;
  transform: skewX(-18deg);
  background: repeating-linear-gradient(100deg, transparent 0 45px, rgba(255,255,255,.14) 46px 47px, transparent 49px 94px);
  filter: blur(.5px);
  animation: roadFlow 7s linear infinite;
  pointer-events: none;
}
@keyframes roadFlow { to { transform: skewX(-18deg) translateX(95px); } }
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 76px 8.5%;
  display: flex;
  align-items: flex-start;
}
.hero-copy { transition: opacity .28s ease, transform .28s ease; }
.hero-copy.changing { opacity: 0; transform: translateY(8px); }
.hero h1 { margin: 0; text-transform: uppercase; line-height: .92; letter-spacing: -.9px; }
.hero h1 span, .hero h1 em { display: block; font-weight: 800; font-style: italic; }
.hero h1 span { font-size: 76px; color: #fff; }
.hero h1 em { margin-top: 7px; font-size: 79px; color: #dc1f27; }
.hero p { margin: 23px 0 22px; font-size: 31px; line-height: 1.16; font-weight: 700; text-transform: uppercase; }
.primary-button {
  min-width: 164px;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, #dc282e, #b31218);
  box-shadow: 0 6px 16px rgba(134, 5, 11, .24);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .22s var(--ease), box-shadow .22s ease, filter .22s ease;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(134, 5, 11, .38); filter: brightness(1.1); }
.primary-button span { font-size: 25px; font-weight: 300; line-height: 0; transform: translateY(-1px); }
.slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
}
.slider-dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: #f4f5f6; transition: transform .2s ease, background .2s ease; }
.slider-dots button.active { background: #e41f27; transform: scale(1.12); }

/* Left content */
.benefit-strip {
  width: calc(100% - 84px);
  max-width: 1440px;
  margin: 28px auto 0;
  height: 132px;
  border: 1px solid #e2e4e7;
  border-radius: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.benefit-strip article {
  min-width: 0;
  height: 86px;
  padding: 3px 15px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid #d7dade;
}
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip svg { width: 46px; height: 46px; margin-bottom: 6px; fill: none; stroke: #08295a; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.benefit-strip h2, .benefit-strip p { margin: 0; }
.benefit-strip h2 { font-size: 15px; text-transform: uppercase; }
.benefit-strip p { margin-top: 4px; font-size: 14px; }
.catalog-section { min-width: 0; }
.categories-section { width: calc(100% - 84px); max-width: 1440px; margin: 0 auto; padding: 42px 0 0; }
.section-heading {
  min-height: 27px;
  padding: 0 6px 0 11px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.section-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.section-heading a {
  padding-top: 1px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .2s ease;
}
.section-heading a:hover { color: var(--red); }
.section-heading a span { padding-left: 6px; color: var(--red); font-size: 20px; line-height: 0; vertical-align: -2px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  padding-bottom: 0;
}
.categories-section .section-heading { min-height: 42px; }
.category-card {
  position: relative;
  height: 270px;
  min-width: 0;
  border: 1px solid #e2e4e6;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #08172d;
  background: #fff;
  box-shadow: 0 3px 8px rgba(2, 28, 51, .08);
  transition: transform .26s var(--ease), box-shadow .26s ease, border-color .26s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 1px;
  background: var(--red);
  transform-origin: left;
  transition: transform .25s ease;
}
.category-card:hover { z-index: 2; transform: translateY(-5px); border-color: rgba(213,31,38,.35); box-shadow: 0 12px 24px rgba(2,28,51,.14); }
.category-card:hover::after { transform: scaleX(.55); }
.category-card img { width: 100%; height: 170px; object-fit: cover; }
.category-card strong { padding: 11px 16px 0; font-size: 16px; line-height: 1.08; text-transform: uppercase; }
.category-card small { padding: 7px 16px 0; color: #66707a; font-size: 14px; }
.searchable.filtered-out { display: none; }
.no-results { display: none; margin: 30px 0 0; color: #66707a; text-align: center; }
.no-results.visible { display: block; }

.left-footer-grid {
  width: calc(100% - 84px);
  max-width: 1440px;
  height: 220px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(380px, 35%);
  gap: 28px;
}
.brands-panel { min-width: 0; padding: 20px 0; }
.brands-panel h2 { margin: 0 0 28px 10px; font-size: 22px; text-transform: uppercase; }
.brands-panel img { width: min(100%, 690px); height: 78px; object-fit: contain; object-position: left center; }
.testimonial {
  position: relative;
  margin: 0;
  height: 190px;
  padding: 34px 28px 18px 52px;
  border-radius: 9px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(19,75,118,.58), transparent 45%),
    linear-gradient(135deg, #061b32, #052748);
  box-shadow: var(--shadow);
}
.testimonial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent, rgba(255,255,255,.045), transparent); transform: translateX(-100%); animation: shimmer 8s ease-in-out infinite; }
@keyframes shimmer { 0%, 70%, 100% { transform: translateX(-120%); } 85% { transform: translateX(120%); } }
.quote-mark { position: absolute; top: 21px; left: 22px; font-family: Georgia, serif; font-size: 44px; line-height: 1; }
.testimonial p { position: relative; z-index: 1; margin: 0; font-family: Inter, Arial, sans-serif; font-size: 14px; line-height: 1.55; }
.testimonial footer { position: relative; z-index: 1; margin-top: 12px; display: flex; align-items: center; gap: 11px; }
.testimonial footer img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial cite { display: grid; font-style: normal; font-size: 14px; }
.testimonial cite span { margin-top: 3px; }

/* Second design concept — continued below the first */
.right-pane {
  width: 100%;
  margin-top: 38px;
  padding: 46px 42px 38px;
  border-top: 1px solid #e1e6eb;
  background:
    radial-gradient(circle at 100% 0%, rgba(9, 52, 89, .05), transparent 31%),
    linear-gradient(180deg, #f8fafc 0%, #fff 42%);
}
.feature-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  height: 390px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #03152a, #062847);
  box-shadow: 0 5px 15px rgba(2, 28, 51, .08);
  transition: transform .28s var(--ease), box-shadow .28s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(2,28,51,.22); }
.feature-card > img { width: 100%; height: 205px; object-fit: cover; transition: transform .7s var(--ease), filter .35s ease; }
.feature-card:hover > img { transform: scale(1.045); filter: saturate(1.1); }
.feature-card > div { position: relative; height: 185px; padding: 22px 24px; }
.feature-card h2 { margin: 0; font-size: 31px; line-height: 1.01; text-transform: uppercase; }
.feature-card p { margin: 13px 0 0; font-size: 19px; line-height: 1.32; }
.feature-card a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 300;
  line-height: 0;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.feature-card a:hover { color: #061b32; background: #fff; transform: translateX(2px); }

.promo-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1440px;
  height: 310px;
  margin: 28px auto 0;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(23, 80, 123, .9), transparent 46%),
    linear-gradient(110deg, #03162b 0%, #052b4d 58%, #0b3a61 100%);
  box-shadow: var(--shadow);
}
.promo-banner::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px); background-size: 18px 18px; opacity: .25; }
.promo-copy { position: relative; z-index: 2; padding: 42px 0 0 48px; }
.promo-copy h2 { margin: 0 0 25px; font-size: 50px; font-style: italic; line-height: .97; text-transform: uppercase; }
.promo-copy h2 span, .promo-copy h2 em { display: block; }
.promo-copy h2 em { margin-top: 4px; color: #df2028; font-style: italic; }
.promo-copy .primary-button { width: 164px; }
.promo-banner > img { position: absolute; z-index: 1; right: 0; bottom: 0; width: 55%; height: 93%; object-fit: cover; object-position: left bottom; mix-blend-mode: screen; }

.arrivals-section { width: 100%; max-width: 1440px; margin: 0 auto; padding-top: 44px; }
.arrivals-section .section-heading { min-height: 42px; padding: 0 8px; }
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.product-card {
  height: 294px;
  min-width: 0;
  border: 1px solid #e1e4e7;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 9px rgba(2, 28, 51, .09);
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { z-index: 2; transform: translateY(-5px); border-color: rgba(213,31,38,.35); box-shadow: 0 12px 24px rgba(2,28,51,.14); }
.product-card > img { width: 100%; height: 174px; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover > img { transform: scale(1.04); }
.product-info { padding: 12px 15px; }
.product-info h3 { overflow: hidden; margin: 0; font-size: 17px; line-height: 1.08; white-space: nowrap; text-overflow: ellipsis; }
.product-info p { margin: 7px 0 12px; color: #5e6873; font-size: 14px; line-height: 1; white-space: nowrap; }
.product-info > div { display: flex; align-items: center; justify-content: space-between; }
.product-info strong { font-size: 21px; }
.add-cart {
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #031b34;
  transition: transform .2s ease, background .2s ease;
}
.add-cart:hover { transform: scale(1.08); background: var(--red); }
.add-cart.added { animation: cartPop .45s ease; background: #23935b; }
.add-cart svg { width: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
@keyframes cartPop { 50% { transform: scale(1.25) rotate(-7deg); } }

.right-footer-grid {
  width: 100%;
  max-width: 1440px;
  height: 230px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: .97fr 1.03fr;
  gap: 20px;
}
.newsletter-panel, .road-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #061b32, #07335a);
  box-shadow: var(--shadow);
}
.newsletter-panel { padding: 31px 28px; }
.newsletter-panel h2, .road-panel h2 { position: relative; z-index: 2; margin: 0; font-size: 26px; text-transform: uppercase; }
.newsletter-panel p { position: relative; z-index: 2; margin: 10px 0 20px; font-size: 16px; font-weight: 600; line-height: 1.3; }
.truck-watermark { position: absolute; right: -10px; top: 24px; width: 250px; height: 150px; opacity: .11; background: url("../images/hero-truck.png") 73% center / 290% auto no-repeat; filter: grayscale(1); }
.newsletter-form { position: relative; z-index: 2; width: min(100%, 480px); height: 50px; display: grid; grid-template-columns: 1fr 120px; border-radius: 5px; overflow: hidden; }
.newsletter-form input { min-width: 0; padding: 0 16px; border: 0; outline: 0; font-family: Inter, Arial, sans-serif; font-size: 12px; }
.newsletter-form button { border: 0; color: #fff; background: linear-gradient(135deg, #d6272e, #aa1116); font-size: 14px; font-weight: 700; text-transform: uppercase; transition: filter .2s ease; }
.newsletter-form button:hover { filter: brightness(1.14); }
.newsletter-form.invalid { box-shadow: 0 0 0 2px #ff6a70; }
.newsletter-form.success button { background: #24945c; }
.road-panel { padding: 31px 30px; }
.road-panel ul { position: relative; z-index: 2; margin: 15px 0 0; padding: 0; list-style: none; }
.road-panel li { position: relative; margin-bottom: 12px; padding-left: 23px; font-size: 16px; line-height: 1.05; }
.road-panel li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 15px; height: 15px; border-radius: 50%; color: #fff; background: #e3242b; font: 700 10px/15px Inter, sans-serif; text-align: center; }
.gear-watermark { position: absolute; right: -24px; bottom: -42px; color: rgba(66, 118, 158, .2); font-size: 170px; line-height: 1; }
.mobile-footer { display: none; }

/* Motion + utilities */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.toast {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 18px;
  border-radius: 7px;
  color: #fff;
  background: #052747;
  box-shadow: 0 14px 34px rgba(2,19,34,.28);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: none; }
body.cart-open { overflow: hidden; }
.back-to-top {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 78px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 22px rgba(151,7,13,.3);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }

/* Large desktop tuning */
/* Tablet — reflow into a conventional storefront */
@media (max-width: 1100px) {
  .site-shell { width: 100%; }
  .storefront-grid { display: flex; flex-direction: column; }
  .header-main { grid-template-columns: 235px 1fr auto; }
  .site-header { height: auto; }
  .primary-nav { grid-template-columns: 184px repeat(6, 1fr); }
  .hero { height: clamp(360px, 46vw, 500px); background-position: center; }
  .hero-content { padding: clamp(55px, 8vw, 95px) 7vw; }
  .hero h1 span, .hero h1 em { font-size: clamp(50px, 7vw, 76px); }
  .hero p { font-size: clamp(22px, 3vw, 30px); }
  .benefit-strip { margin-top: 28px; }
  .categories-section { width: auto; margin: 0; padding: 34px 26px 0; }
  .category-grid { grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .left-footer-grid { width: auto; height: auto; margin: 28px 26px 0; grid-template-columns: 1.1fr .9fr; }
  .right-pane { padding: 28px 26px 30px; }
  .feature-card { height: 330px; }
  .feature-card > img { height: 175px; }
  .feature-card > div { height: 155px; padding: 18px 20px; }
  .feature-card h2 { font-size: 26px; }
  .feature-card p { font-size: 17px; }
  .promo-banner { height: 245px; }
  .promo-copy { padding: 38px; }
  .promo-copy h2 { font-size: 42px; }
  .arrivals-section { padding-top: 34px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card { height: 242px; }
  .product-card > img { height: 135px; }
  .right-footer-grid { height: 220px; }
  .mobile-footer { display: flex; min-height: 100px; padding: 22px 28px; align-items: center; justify-content: space-between; color: #fff; background: #021728; }
  .mobile-footer img { width: 220px; }
  .mobile-footer p { font-size: 18px; text-transform: uppercase; }
}

@media (max-width: 760px) {
  .header-main { height: 74px; padding: 8px 16px; grid-template-columns: 172px 1fr; gap: 8px; }
  .brand { width: 170px; }
  .site-search { position: absolute; left: 16px; right: 16px; top: 82px; width: auto; height: 42px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
  .site-header.search-open .site-search { opacity: 1; transform: none; pointer-events: auto; }
  .header-actions { grid-column: 2; gap: 13px; }
  .account-action { display: none; }
  .search-toggle { width: 25px; height: 25px; padding: 2px; border: 0; place-items: center; color: #fff; background: transparent; }
  .search-toggle { display: grid; }
  .search-toggle svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .cart-action > span { display: none; }
  .cart-action svg { width: 25px; height: 25px; }
  .menu-toggle { width: 27px; height: 25px; padding: 2px; border: 0; display: flex; flex-direction: column; justify-content: space-around; background: transparent; }
  .menu-toggle span { width: 100%; height: 2px; border-radius: 2px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; top: 74px; left: 0; right: 0; height: auto; padding: 9px 16px 18px; display: none; grid-template-columns: 1fr 1fr; gap: 2px; border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 14px 30px rgba(0,0,0,.3); }
  .site-header.menu-open .primary-nav { display: grid; }
  .primary-nav a { min-height: 42px; justify-content: flex-start; padding: 0 14px; }
  .primary-nav .category-nav { grid-column: 1 / -1; justify-content: flex-start; margin-left: 0; padding-left: 14px; border-radius: 4px; }
  .hero { height: 480px; background-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(2,22,39,.98) 0%, rgba(2,22,39,.9) 47%, rgba(2,22,39,.15) 100%); }
  .hero-content { padding: 68px 26px; }
  .hero h1 span, .hero h1 em { font-size: clamp(44px, 13vw, 66px); }
  .hero p { font-size: 22px; }
  .slider-dots { left: 50%; transform: translateX(-50%); }
  .benefit-strip { height: auto; margin: 20px 16px 0; padding: 12px 0; grid-template-columns: 1fr 1fr; }
  .benefit-strip article { min-height: 103px; border-bottom: 1px solid #d7dade; }
  .benefit-strip article:nth-child(2) { border-right: 0; }
  .benefit-strip article:nth-child(n+3) { border-bottom: 0; }
  .categories-section { width: auto; margin: 0; padding: 30px 16px 0; }
  .section-heading { padding: 0 2px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card { height: 230px; }
  .category-card img { height: 146px; object-fit: cover; }
  .left-footer-grid { width: auto; margin: 22px 16px 0; display: flex; flex-direction: column; gap: 16px; }
  .brands-panel { min-height: 130px; }
  .testimonial { height: auto; min-height: 185px; border-radius: 8px; }
  .right-pane { padding: 24px 16px; }
  .feature-grid { display: flex; gap: 13px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
  .feature-grid::-webkit-scrollbar { display: none; }
  .feature-card { flex: 0 0 78vw; scroll-snap-align: start; }
  .feature-card > div { height: 155px; padding: 18px 20px; }
  .promo-banner { height: 300px; }
  .promo-copy { padding: 26px 22px; }
  .promo-copy h2 { font-size: 34px; }
  .promo-banner > img { width: 88%; height: 62%; opacity: .8; }
  .arrivals-section { padding-top: 30px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { height: 250px; }
  .product-card > img { height: 145px; }
  .product-info h3 { font-size: 15px; }
  .product-info p { font-size: 13px; }
  .right-footer-grid { height: auto; grid-template-columns: 1fr; }
  .newsletter-panel, .road-panel { min-height: 180px; padding: 24px 20px; }
  .newsletter-panel h2, .road-panel h2 { font-size: 22px; }
  .newsletter-panel p, .road-panel li { font-size: 14px; }
  .newsletter-form { height: 44px; }
  .mobile-footer { flex-direction: column; gap: 12px; text-align: center; }
  .mobile-footer p { margin: 0; }
}

@media (max-width: 390px) {
  .header-main { grid-template-columns: 150px 1fr; }
  .brand { width: 148px; }
  .hero-content { padding-left: 20px; }
  .hero h1 span, .hero h1 em { font-size: 42px; }
  .category-grid, .product-grid { grid-template-columns: 1fr; }
  .category-card, .product-card { height: auto; min-height: 265px; }
  .category-card img, .product-card > img { height: 175px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* WordPress integration */
.primary-nav .menu { display: contents; margin: 0; padding: 0; list-style: none; }
.primary-nav .menu > li { display: contents; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { background: rgba(255,255,255,.045); color: #f03a40; }
.brand .custom-logo { width: 235px; height: auto; object-fit: contain; }
.product-card-link { display: block; color: inherit; }
.product-card-link:focus-visible,
.category-card:focus-visible,
.feature-card a:focus-visible,
.primary-button:focus-visible { outline: 3px solid #ff5258; outline-offset: 3px; }
.product-card-link img { width: 100%; height: 174px; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .product-card-link img { transform: scale(1.04); }
.product-card > img { display: none; }
.content-shell { width: min(100% - 48px, 1160px); min-height: 58vh; margin: 0 auto; padding: 70px 0 90px; }
.content-shell h1 { margin: 0 0 24px; font-size: clamp(42px, 6vw, 72px); line-height: 1; text-transform: uppercase; }
.content-shell h1::after { content: ""; display: block; width: 72px; height: 4px; margin-top: 18px; background: var(--red); }
.content-shell .entry-content { max-width: 800px; font: 16px/1.75 Inter, Arial, sans-serif; }
.archive-intro { margin-bottom: 35px; }
.archive-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.archive-products .product-card { height: 315px; }
.single-product-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 56px; align-items: center; }
.single-product-image { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.single-product-image img { width: 100%; min-height: 380px; object-fit: contain; }
.single-product-copy .product-sku { color: var(--muted); font: 500 14px Inter, sans-serif; }
.single-product-copy .product-price { margin: 18px 0; font-size: 36px; font-weight: 800; }
.single-product-copy .entry-content { margin-bottom: 28px; }
.single-product-copy .add-cart { width: auto; height: 46px; padding: 0 24px; gap: 10px; display: inline-flex; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.empty-state { padding: 40px; border: 1px solid var(--line); border-radius: 10px; text-align: center; }
.empty-cart-message { margin: 20px 0; color: var(--muted); font: 14px/1.6 Inter, Arial, sans-serif; text-align: center; }
.content-list { display: grid; gap: 18px; }
.content-card { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.content-card h2 { margin: 0 0 10px; font-size: 30px; text-transform: uppercase; }
.content-card h2 a:hover { color: var(--red); }
.content-card p, .archive-intro p, .not-found p { font: 16px/1.7 Inter, Arial, sans-serif; }
.navigation.pagination { margin-top: 36px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers { min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 5px; display: inline-grid; place-items: center; background: #fff; font: 700 13px Inter, Arial, sans-serif; }
.page-numbers.current, .page-numbers:hover { color: #fff; border-color: var(--red); background: var(--red); }
.add-cart.added { animation: cartPulse .5s var(--ease); }
@keyframes cartPulse { 50% { transform: scale(1.14); } }
.mini-cart-overlay { position: fixed; z-index: 89; inset: 0; opacity: 0; visibility: hidden; background: rgba(1, 14, 26, .58); transition: opacity .25s ease, visibility .25s ease; }
.mini-cart-overlay.open { opacity: 1; visibility: visible; }
.mini-cart {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(410px, 92vw);
  height: 100vh;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  box-shadow: -18px 0 44px rgba(2,19,34,.24);
  transform: translateX(105%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}
.mini-cart.open { transform: none; }
.mini-cart-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mini-cart-head h2 { margin: 0; font-size: 28px; text-transform: uppercase; }
.mini-cart-close { width: 36px; height: 36px; border: 0; border-radius: 50%; color: #fff; background: var(--navy-900); font-size: 22px; }
.mini-cart-items { display: grid; gap: 14px; padding: 20px 0; }
.mini-cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mini-cart-item img { width: 72px; height: 64px; border-radius: 6px; object-fit: cover; }
.mini-cart-item strong { display: block; font-size: 17px; }
.mini-cart-item small { color: var(--muted); font: 12px Inter, sans-serif; }
.mini-cart-remove { border: 0; color: var(--red); background: transparent; font-size: 20px; }
.mini-cart-total { display: flex; justify-content: space-between; padding-top: 18px; border-top: 2px solid var(--ink); font-size: 24px; font-weight: 800; text-transform: uppercase; }
.site-footer { min-height: 120px; padding: 28px 42px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: #021728; }
.site-footer img { width: 220px; }
.site-footer p { margin: 0; font-size: 17px; text-transform: uppercase; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.admin-bar .mini-cart { top: 32px; height: calc(100vh - 32px); }

@media (max-width: 1100px) {
  .archive-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .primary-nav .menu { display: contents; }
  .product-card-link img { height: 145px; }
  .archive-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-product-layout { grid-template-columns: 1fr; gap: 28px; }
  .single-product-image img { min-height: 270px; }
  .site-footer { flex-direction: column; gap: 15px; padding: 26px 16px; text-align: center; }
  body.admin-bar .mini-cart { top: 46px; height: calc(100vh - 46px); }
  .content-shell { width: min(100% - 32px, 1160px); padding: 48px 0 65px; }
}
