:root {
  --color-red: #d50000;
  --color-red-dark: #a80000;
  --color-black: #080808;
  --color-charcoal: #151515;
  --color-gray-900: #222222;
  --color-gray-700: #555555;
  --color-gray-300: #dddddd;
  --color-gray-100: #f5f5f5;
  --color-white: #ffffff;
  --shadow-soft: 0 14px 34px rgba(8, 8, 8, 0.12);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-gray-900);
  background: var(--color-white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--color-red);
  color: var(--color-white);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Oswald, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.section-inner {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.parts-intro h2,
.dealer-card h2,
.community-card h2,
.news-card h2,
.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading.with-link {
  align-items: center;
}

.mobile-view-all {
  display: none;
}

.text-link {
  color: var(--color-red);
  font-weight: 800;
}

.text-link:hover {
  color: var(--color-red-dark);
}

.text-link.on-dark,
.on-dark-heading,
.on-dark-heading .eyebrow {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red-dark);
}

.btn-secondary {
  border-color: var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-black);
}

.btn-secondary:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.btn-on-dark:hover {
  border-color: var(--color-red);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(8, 8, 8, 0);
  color: var(--color-white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 8, 0.96);
  color: var(--color-white);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.internal-page .site-header {
  background: rgba(8, 8, 8, 0.96);
  color: var(--color-white);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  width: min(100% - 36px, 1440px);
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.header-logo {
  width: clamp(150px, 14vw, 220px);
  height: auto;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.45));
}

.site-header.is-scrolled .header-logo,
.site-header.is-open .header-logo {
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.45));
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 30px;
  place-items: center;
  transform: skewX(-12deg);
  background: var(--color-red);
  color: var(--color-white);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 0.9rem;
}

.brand-name {
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.primary-nav,
.utility-nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 30px);
  font-family: 'Oswald';
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.primary-nav a:hover {
  color: var(--color-red);
}

.utility-nav {
  justify-content: end;
  gap: 10px;
  margin-left: auto;
}

.utility-nav > a,
.menu-toggle,
.mobile-search-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
}

.utility-nav svg,
.mobile-search-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search {
  position: relative;
  width: clamp(340px, 30vw, 420px);
}

.header-search__input {
  width: 100%;
  height: 36px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  font-size: 13px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.header-search__button {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.header-search__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header.is-scrolled .header-search__input,
.site-header.is-open .header-search__input {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.site-header.is-scrolled .header-search__input::placeholder,
.site-header.is-open .header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.site-header.is-scrolled .header-search__button,
.site-header.is-open .header-search__button {
  color: var(--color-white);
}

.header-search.is-active .header-search__input,
.header-search__input:focus {
  border-color: var(--color-white);
  background: var(--color-white);
  color: #111111;
  box-shadow: 0 0 0 2px rgba(213, 0, 0, 0.16);
}

.header-search.is-active .header-search__input::placeholder,
.header-search__input:focus::placeholder {
  color: #777777;
}

.header-search.is-active .header-search__button,
.header-search__input:focus + .header-search__button {
  color: #111111;
}

.mobile-search-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.search-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding: 16px;
  border-radius: 6px;
  background: var(--color-white);
  color: #111111;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  z-index: 1000;
}

.header-search.is-open .search-autocomplete,
.mobile-search-results.is-open {
  display: block;
}

.autocomplete-enter-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e7e7e7;
  color: #777777;
  font-size: 12px;
}

.autocomplete-enter-row span:first-child {
  display: grid;
  min-width: 42px;
  height: 16px;
  place-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  color: #a0a0a0;
  font-size: 10px;
  font-weight: 800;
}

.autocomplete-section {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.autocomplete-section__header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.autocomplete-section__header h3 {
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.autocomplete-section__header a {
  color: var(--color-red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.autocomplete-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.autocomplete-model-card {
  display: block;
  width: auto;
  height: auto;
  padding: 8px;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #fafafa;
  color: #111111;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.autocomplete-model-card:hover,
.autocomplete-model-card:focus-visible {
  border-color: rgba(213, 0, 0, 0.68);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.autocomplete-model-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.autocomplete-model-card span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
}

.autocomplete-list {
  display: grid;
  gap: 10px;
}

.autocomplete-list-item {
  display: flex;
  width: auto;
  height: auto;
  gap: 12px;
  align-items: center;
  color: #111111;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.autocomplete-list-item:hover,
.autocomplete-list-item:focus-visible {
  color: var(--color-red);
}

.autocomplete-list-item img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  opacity: 0.9;
}

.autocomplete-bottom-link {
  display: inline-flex;
  width: auto;
  height: auto;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 900;
}

.autocomplete-empty {
  color: #777777;
  font-size: 13px;
}

.mobile-search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.62);
}

.mobile-search-overlay.is-open {
  display: block;
}

.mobile-search-panel {
  min-height: 100%;
  padding: 18px;
  background: #f5f5f5;
  color: #111111;
}

.mobile-search-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.mobile-search-form {
  position: relative;
  flex: 1;
}

.mobile-search-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: var(--color-white);
  color: #111111;
  font-size: 16px;
  outline: none;
}

.mobile-search-input:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 2px rgba(213, 0, 0, 0.14);
}

.mobile-search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #111111;
}

.mobile-search-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: #111111;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
}

.mobile-search-results {
  display: none;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.search-lock {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--color-black);
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 34%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: min(100% - 40px, var(--content));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding-top: 76px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 3px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.34rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero-h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5.6vw, 4.2rem);
}

.hero h1 span,
.hero-h1 span {
  display: block;
}

.hero-subheadline {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.hero-learn-btn {
  border: 2px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
}

.hero-learn-btn:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: #333333;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: min(40px, 4vw);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.circle-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.48);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 3px;
  cursor: pointer;
}

.circle-btn:hover {
  border-color: var(--color-red);
  background: var(--color-red);
}

.circle-btn.light {
  flex: 0 0 auto;
  border-color: var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-black);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--color-red);
}

.advantages {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
  color: var(--color-white);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.advantage-grid article {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.line-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--color-red);
  border-radius: 999px;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
}

.advantage-grid h2 {
  margin-bottom: 2px;
  color: var(--color-white);
  font-size: 0.98rem;
}

.advantage-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.guided {
  background: var(--color-gray-300);
}

.guided-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.lineup-card,
.product-card,
.seller-card,
.video-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.guide-card:hover,
.lineup-card:hover,
.product-card:hover,
.seller-card:hover,
.video-card:hover {
  transform: translateY(-5px);
}

.guide-card img,
.lineup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.guide-card:hover img,
.lineup-card:hover img,
.product-card:hover .product-media img {
  transform: scale(1.05);
}

.guide-card::after,
.lineup-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
}

.guide-card-content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.guide-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(213, 0, 0, 0.9);
  font-weight: 900;
}

.guide-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.guide-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.red-arrow {
  color: var(--color-red);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-showcase-block + .product-showcase-block {
  margin-top: 62px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius);
  background: var(--color-white);
}

.product-card:hover {
  border-color: rgba(213, 0, 0, 0.5);
  box-shadow: var(--shadow-soft);
}

.product-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--color-gray-100);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.34rem 0.56rem;
  border-radius: 3px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.model-number,
.review-count {
  color: var(--color-gray-700);
}

.model-number {
  margin: auto 0 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card .model-number {
  display: none;
}

.price {
  margin: 12px 0;
  font-size: 1.26rem;
  font-weight: 900;
}

.swatches {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.product-card .swatches {
  display: none;
}

.swatches span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--color-gray-300);
}

.spec-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.spec-box {
  display: grid;
  min-height: 66px;
  align-content: center;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  padding: 9px 7px;
  background: #fafafa;
  text-align: center;
}

.spec-value {
  color: var(--color-black);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.spec-label {
  margin-top: 4px;
  color: var(--color-gray-700);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .btn {
  font-size: 0.8rem;
  white-space: nowrap;
}

.seller-card .spec-boxes {
  display: none;
}

.lineup {
  background: var(--color-white);
}

.lineup-section-spacing {
  padding: 0 0 100px;
}

.lineup-layout {
  display: grid;
  grid-template-columns: 0.95fr 2.05fr;
  gap: 28px;
}

.lineup-intro {
  display: flex;
  min-height: 440px;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--color-black);
  color: var(--color-white);
}

.lineup-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}

.lineup-intro p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lineup-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--color-white);
}

.lineup-card h3 {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  font-size: 1.6rem;
}

.parts-finder {
  padding: 88px 0;
  background: #101010;
  color: var(--color-white);
}

.parts-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
}

.parts-intro,
.parts-panel {
  padding: 34px;
}

.parts-panel {
  border-left: 1px solid rgba(213, 0, 0, 0.42);
}

.parts-intro h2 {
  margin-bottom: 18px;
}

.parts-intro p,
.parts-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.parts-panel h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.parts-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 18px 0;
}

.parts-search input,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 0 14px;
  outline: none;
}

.parts-search input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.parts-search input:focus,
.newsletter-form input:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(213, 0, 0, 0.2);
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.suggestions {
  position: absolute;
  z-index: 5;
  top: calc(100% + 6px);
  left: 0;
  display: none;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: #222;
}

.suggestions.is-open {
  display: block;
}

.suggestions button {
  display: block;
  width: 100%;
  border: 0;
  padding: 11px 12px;
  background: transparent;
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
}

.suggestions button:hover,
.suggestions button:focus {
  background: rgba(213, 0, 0, 0.22);
}

.chip-row,
.part-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.part-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-white);
  padding: 0.58rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.chip:hover,
.part-chip:hover {
  border-color: var(--color-red);
  background: rgba(213, 0, 0, 0.18);
}

.part-category-grid {
  margin: 20px 0 18px;
}

.videos {
  padding: 88px 0;
  background: #404040;
  color: var(--color-white);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
}

.featured-video,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.featured-video .video-copy {
  padding: 24px;
}

.featured-video h3 {
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.featured-video p,
.video-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.video-embed,
.video-modal-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-open {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000000;
  color: var(--color-white);
  cursor: pointer;
}

.video-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.video-open::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(213, 0, 0, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-play-button::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--color-white);
}

.video-open:hover img,
.video-open:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.video-open:hover .video-play-button,
.video-open:focus-visible .video-play-button {
  background: var(--color-red-dark);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-title-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.video-title-button:hover,
.video-title-button:focus-visible {
  color: var(--color-red);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.video-card .video-copy {
  padding: 16px;
}

.video-card h3 {
  margin-bottom: 4px;
  font-size: 1.34rem;
}

.video-card p:last-child,
.featured-video p:last-child {
  margin-bottom: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.seller-carousel {
  display: block;
}

.seller-carousel > .circle-btn {
  display: none;
}

.seller-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
}

.seller-track::-webkit-scrollbar {
  display: none;
}

.seller-card {
  min-width: 0;
}

.seller-card .product-media {
  height: 150px;
}

.seller-card .product-body {
  padding: 14px;
}

.seller-card .product-body h3 {
  font-size: 1.22rem;
}

.seller-card .price {
  font-size: 1.02rem;
}

.stars {
  color: var(--color-red);
  font-size: 0.9rem;
}

.dealer-community {
  padding: 88px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.dealer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 22px;
}

.dealer-card,
.community-card,
.news-card,
.map-preview {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
}

.dealer-card,
.community-card,
.news-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dealer-card h2,
.community-card h2,
.news-card h2 {
  margin-bottom: 16px;
}

.dealer-card p:not(.eyebrow),
.community-card p:not(.eyebrow),
.news-card > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.news-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    #151515;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.resource-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.resource-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.resource-row:hover {
  border-color: rgba(213, 0, 0, 0.82);
  background: rgba(213, 0, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(213, 0, 0, 0.16);
}

.resource-row img {
  width: 92px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 4px;
}

.resource-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.resource-title {
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.1;
}

.resource-category {
  color: rgba(255, 255, 255, 0.58);
  font-family: Oswald, "Arial Narrow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-arrow {
  margin-left: auto;
  color: var(--color-red);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.resource-row:hover .resource-arrow {
  color: #ff2b2b;
  transform: translateX(2px);
}

.news-cta {
  justify-content: center;
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.map-preview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.11) 50%, transparent 51%) 0 0 / 82px 82px,
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.11) 50%, transparent 51%) 0 0 / 82px 82px,
    radial-gradient(circle at 28% 62%, rgba(213, 0, 0, 0.28), transparent 22%),
    #1f1f1f;
}

.map-preview span {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid var(--color-white);
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  background: var(--color-red);
}

.map-preview span:nth-child(1) {
  left: 28%;
  top: 40%;
}

.map-preview span:nth-child(2) {
  left: 58%;
  top: 28%;
}

.map-preview span:nth-child(3) {
  left: 66%;
  top: 64%;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.social-row a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 900;
}

.social-row a:hover {
  border-color: var(--color-red);
  background: var(--color-red);
}

.community-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.community-strip img {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.newsletter {
  padding: 36px 0;
  background: var(--color-red);
  color: var(--color-white);
}

.newsletter-inner,
.newsletter-copy,
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 22px;
}

.newsletter-inner {
  justify-content: space-between;
}

.mail-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 1.6rem;
}

.newsletter h2 {
  margin-bottom: 5px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.84);
}

.newsletter-form {
  width: min(100%, 520px);
}

.newsletter-form input {
  border-color: transparent;
  background: var(--color-white);
  color: var(--color-black);
}

.site-footer {
  padding: 70px 0 48px;
  background: var(--color-charcoal);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 0.9fr;
  gap: 36px;
}

.footer-brand p,
.footer-columns a,
.trust-block,
.legal {
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-img {
  width: min(220px, 100%);
  height: auto;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.45));
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 18px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer-column h2,
.trust-block h2 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-columns a:hover,
.legal a:hover {
  color: var(--color-white);
}

.footer-toggle {
  display: none;
}

.desktop-footer-title {
  display: block;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.payment-row span,
.dealer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0 0.6rem;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .mobile-search-toggle {
    display: grid;
    order: 2;
  }

  .menu-toggle {
    display: grid;
    order: 4;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .utility-nav {
    order: 3;
  }

  .guided-grid,
  .product-grid,
  .lineup-grid,
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-layout,
  .parts-layout,
  .video-layout,
  .dealer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lineup-intro {
    min-height: auto;
  }

  .parts-panel {
    border-top: 1px solid rgba(213, 0, 0, 0.42);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: min(100% - 28px, var(--content));
  }

  .advantages .section-inner {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .new-releases {
    padding-bottom: 28px;
  }

  .lineup-section-spacing {
    padding-top: 0;
  }

  .header-inner {
    gap: 10px;
    min-height: 68px;
  }

  .brand-name {
    font-size: 1.14rem;
  }

  .header-logo {
    width: 138px;
  }

  .brand-mark {
    width: 38px;
  }

  .utility-nav a {
    width: 36px;
    height: 36px;
  }

  .utility-nav .account-link {
    display: none;
  }

  .primary-nav {
    top: 68px;
  }

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

  .hero,
  .hero-slide img,
  .hero-content {
    min-height: 540px;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-content {
    padding-top: 260px;
    justify-content: flex-start;
  }

  .hero h1,
  .hero-h1 {
    max-width: 340px;
    margin-bottom: 12px;
    font-size: clamp(1.82rem, 8.5vw, 2.25rem);
  }

  .hero-badge {
    margin-bottom: 12px;
    padding: 0.28rem 0.48rem;
    font-size: 0.68rem;
  }

  .hero-subheadline {
    max-width: 330px;
    margin-bottom: 16px;
    font-size: 0.94rem;
  }

  .hero .button-row {
    gap: 8px;
  }

  .hero .btn {
    min-height: 38px;
    padding: 0.48rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.84) 100%);
  }

  .hero-controls {
    right: auto;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .circle-btn {
    width: 36px;
    height: 20px;
    align-items: center;
    padding-bottom: 2px;
    font-size: 1.25rem;
    line-height: 1;
  }

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

  .advantage-grid article {
    min-height: auto;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .advantage-grid .line-icon {
    display: none;
  }

  .advantage-grid h2 {
    font-size: 0.86rem;
  }

  .advantage-grid p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
  }

  .guided-grid {
    display: grid;
    grid-auto-columns: minmax(245px, 76%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .guide-card {
    min-height: 300px;
    scroll-snap-align: start;
  }

  .video-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .lineup-grid {
    display: grid;
    grid-auto-columns: minmax(265px, 82%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .seller-track {
    grid-auto-columns: minmax(238px, 68%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-card,
  .lineup-card {
    scroll-snap-align: start;
  }

  .seller-card {
    scroll-snap-align: start;
  }

  .section-heading,
  .section-heading.with-link,
  .newsletter-inner,
  .newsletter-copy,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .desktop-view-all {
    display: none;
  }

  .mobile-view-all {
    display: inline-flex;
    margin-top: 18px;
  }

  .product-actions,
  .parts-search {
    grid-template-columns: 1fr;
  }

  .lineup-intro,
  .parts-intro,
  .parts-panel,
  .dealer-card,
  .community-card,
  .news-card {
    padding: 24px;
  }

  .resource-row {
    gap: 12px;
    padding: 10px;
  }

  .resource-row img {
    width: 76px;
    height: 48px;
  }

  .seller-carousel {
    margin-inline: -6px;
  }

  .seller-carousel > .circle-btn {
    display: none;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 12px;
  }

  .footer-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--color-white);
    text-align: left;
  }

  .footer-toggle h2 {
    margin: 0;
  }

  .desktop-footer-title {
    display: none;
  }

  .footer-column ul {
    display: none;
    padding-top: 14px;
  }

  .footer-column.is-open ul {
    display: grid;
  }
}
/* Password style */
#password-screen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-family: inherit;
}

.password-box {
  width: min(90%, 380px);
  padding: 32px;
  border-radius: 16px;
  background: #1c1c1c;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.password-box h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.password-box p {
  margin: 0 0 20px;
  color: #ccc;
}

#password-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #444;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 16px;
}

#password-submit {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  background: #e2231a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#password-submit:hover {
  opacity: 0.9;
}

#password-error {
  display: none;
  margin-top: 14px;
  margin-bottom: 0;
  color: #ff6b6b;
  font-size: 14px;
}
/* END password style */
