:root {
  --ink: #0e1114;
  --ink-soft: #171c21;
  --panel: #20262c;
  --line: #d7dcdf;
  --muted: #68727a;
  --paper: #f5f6f3;
  --white: #ffffff;
  --blue: #2d8cff;
  --blue-dark: #126bd6;
  --signal: #e8ff37;
  --red: #eb4f45;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(11, 16, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--signal);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  background: var(--ink);
  color: #b8c0c5;
  border-bottom: 1px solid #2c3339;
  font-size: 12px;
  font-weight: 700;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p,
.utility-inner a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.utility-inner [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--signal);
}

.utility-inner a {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 20, 0.98);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.header-row {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}

.brand-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  border-bottom: 3px solid var(--signal);
  border-radius: 2px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.8;
}

.brand-copy strong {
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--signal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
  color: #c8d0d6;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.header-icon,
.menu-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.header-icon:hover,
.menu-button:hover {
  background: #282f35;
  border-color: #384149;
}

.header-icon [data-lucide],
.menu-button [data-lucide] {
  width: 19px;
  height: 19px;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  background: var(--signal);
  color: var(--ink);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.menu-button {
  display: none;
}

.search-row {
  padding-bottom: 13px;
}

.site-search {
  display: grid;
  height: 43px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  overflow: hidden;
  background: #242a30;
  border: 1px solid #384049;
  border-radius: 3px;
}

.site-search [data-lucide] {
  justify-self: center;
  width: 17px;
  height: 17px;
  color: #8d99a4;
}

.site-search input {
  min-width: 0;
  height: 100%;
  padding: 0 8px 0 0;
  background: transparent;
  color: var(--white);
  border: 0;
  outline: none;
  font-size: 13px;
}

.site-search input::placeholder {
  color: #88939c;
}

.site-search button {
  align-self: stretch;
  padding: 0 21px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.site-search button:hover {
  background: var(--blue-dark);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/moto/hero-workshop.png?v=20260807");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-shade {
  width: 52%;
  background: rgba(14, 17, 20, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  max-width: 1240px;
  flex-direction: column;
  justify-content: center;
  padding: 66px 0 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #e1e7ea;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--signal);
}

.eyebrow-dark {
  color: #3b464e;
}

.eyebrow-dark span {
  background: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 17px;
  font-size: 74px;
  font-weight: 800;
  line-height: 0.89;
  text-transform: uppercase;
}

h1 em {
  color: var(--signal);
  font-style: normal;
}

.hero-intro {
  max-width: 460px;
  margin-bottom: 27px;
  color: #d6dde1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button [data-lucide] {
  width: 17px;
  height: 17px;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: var(--white);
  border-color: #87929a;
}

.button-ghost:hover {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--white);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 31px;
  color: #ccd4d8;
  font-size: 12px;
  font-weight: 700;
}

.hero-note [data-lucide] {
  width: 17px;
  height: 17px;
  color: var(--signal);
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  z-index: 1;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  margin: auto;
  color: #b9c4c9;
  font-size: 10px;
  font-weight: 800;
}

.hero-scroll span {
  width: 22px;
  height: 1px;
  background: var(--signal);
}

.quick-categories {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-strip a {
  display: grid;
  min-height: 99px;
  grid-template-columns: 39px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 18px 19px;
  border-right: 1px solid var(--line);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.category-strip a:first-child {
  border-left: 1px solid var(--line);
}

.category-strip a > [data-lucide]:first-child {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.category-strip a > [data-lucide]:last-child {
  justify-self: end;
  width: 17px;
  height: 17px;
  color: #9ca5ab;
}

.category-strip span {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.category-strip small {
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.category-strip a:hover {
  background: var(--ink);
  color: var(--white);
}

.category-strip a:hover span small,
.category-strip a:hover > [data-lucide]:last-child {
  color: #b5c2c9;
}

.section {
  padding: 96px 0;
}

.catalogue-section {
  background: var(--paper);
}

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

h2 {
  margin-bottom: 0;
  font-size: 53px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-description {
  max-width: 370px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-list {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  background: transparent;
  color: #505b63;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.filter-button:hover {
  border-color: #b9c1c5;
  color: var(--ink);
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.match-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.match-count strong {
  color: var(--ink);
}

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

.product-card {
  display: flex;
  min-width: 0;
  min-height: 457px;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0e4e4;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(14, 17, 20, 0.025);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-card:hover {
  border-color: #a8b7c2;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: #161b1f;
}

.product-image::after {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 21px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.image-offset-left img {
  object-position: 18% 45%;
  transform: scale(1.12);
}

.image-offset-bottom img {
  object-position: 48% 85%;
  transform: scale(1.12);
}

.image-offset-right img {
  object-position: 82% 48%;
  transform: scale(1.12);
}

.product-card:hover .image-offset-left img,
.product-card:hover .image-offset-bottom img,
.product-card:hover .image-offset-right img {
  transform: scale(1.18);
}

.image-hero img {
  object-position: 72% 57%;
  transform: scale(1.35);
}

.image-hero-right img {
  object-position: 81% 51%;
}

.product-card:hover .image-hero img {
  transform: scale(1.42);
}

.product-details {
  display: flex;
  min-height: 200px;
  flex: 1;
  flex-direction: column;
  padding: 18px 17px 16px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: #69757f;
  font-size: 9px;
  font-weight: 900;
}

.product-meta span:first-child {
  color: var(--blue-dark);
}

.product-details h3 {
  min-height: 39px;
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-details p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

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

.product-bottom strong {
  font-size: 13px;
  font-weight: 900;
}

.product-bottom button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  border-radius: 3px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.product-bottom button:hover {
  background: var(--signal);
  color: var(--ink);
  transform: rotate(90deg);
}

.product-bottom button [data-lucide] {
  width: 18px;
  height: 18px;
}

.empty-state {
  display: none;
  margin: 30px 0 0;
  padding: 18px;
  background: var(--white);
  color: var(--muted);
  border: 1px dashed #aab4b8;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.fitment-section {
  background: var(--ink);
  color: var(--white);
}

.fitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 80px;
  align-items: center;
  padding: 92px 0;
}

.fitment-copy h2 {
  margin-bottom: 19px;
  font-size: 63px;
}

.fitment-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 24px;
  color: #bac5ca;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.fitment-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 21px;
}

.fitment-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e6ecee;
  font-size: 12px;
  font-weight: 800;
}

.fitment-points [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--signal);
}

.fitment-form {
  display: grid;
  gap: 13px;
  padding: 30px;
  background: #1d242a;
  border: 1px solid #3b4650;
  border-radius: var(--radius);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.form-heading [data-lucide] {
  width: 23px;
  height: 23px;
  color: var(--signal);
}

.fitment-form label {
  display: grid;
  gap: 6px;
  color: #b6c1c7;
  font-size: 10px;
  font-weight: 900;
}

.fitment-form select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  appearance: auto;
  background: #12171b;
  color: var(--white);
  border: 1px solid #3a444d;
  border-radius: 3px;
  outline: none;
  font-size: 13px;
  font-weight: 700;
}

.fitment-form select:focus {
  border-color: var(--blue);
}

.fitment-form .button {
  width: 100%;
  margin-top: 6px;
}

.form-result {
  min-height: 18px;
  margin: 2px 0 0;
  color: #9dadb5;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.standards-section {
  background: var(--white);
}

.standards-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.standards-top .eyebrow,
.standards-top h2 {
  grid-column: 1;
}

.standards-top h2 {
  margin-top: -3px;
}

.standards-top > p:last-child {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.standards-grid article {
  position: relative;
  min-height: 258px;
  padding: 27px 31px 29px 0;
  border-right: 1px solid var(--line);
}

.standards-grid article:not(:first-child) {
  padding-left: 31px;
}

.standards-grid article:last-child {
  border-right: 0;
}

.standard-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #afb8bd;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.standards-grid article > [data-lucide] {
  width: 28px;
  height: 28px;
  margin-bottom: 35px;
  color: var(--blue);
}

.standards-grid h3 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.standards-grid p {
  max-width: 265px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.support-section {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  background: #151b20;
  color: var(--white);
}

.support-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 49%;
  background-image: url("/assets/moto/floating-rotors.png?v=20260807");
  background-position: 52% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.support-image::after {
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 20, 0.24);
  content: "";
}

.support-content {
  position: relative;
  display: flex;
  min-height: 465px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.support-content h2 {
  margin-bottom: 15px;
  font-size: 58px;
}

.support-content p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 0;
  color: #c0cacf;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.support-content .button {
  flex: 0 0 auto;
}

.site-footer {
  background: #0b0e11;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.8fr 1.25fr;
  gap: 45px;
  padding: 61px 0 48px;
}

.brand-footer {
  margin-bottom: 19px;
}

.footer-brand > p {
  max-width: 285px;
  margin-bottom: 17px;
  color: #9ba6ad;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 8px;
  color: #cad2d6;
  font-size: 11px;
  font-weight: 700;
}

.footer-contact [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--signal);
}

.footer-grid h3,
.footer-build > p {
  margin-bottom: 17px;
  color: #88949c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child):not(.footer-build) a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  color: #d5dcdf;
  font-size: 12px;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--signal);
}

.footer-build {
  align-self: start;
  padding: 23px;
  background: #1a2025;
  border: 1px solid #303940;
  border-radius: var(--radius);
}

.footer-build > p {
  margin-bottom: 9px;
  color: var(--signal);
}

.footer-build strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.footer-build a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce4e7;
  font-size: 11px;
  font-weight: 800;
}

.footer-build a [data-lucide] {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #282e33;
}

.footer-bottom small {
  color: #87929a;
  font-size: 10px;
  font-weight: 600;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c5d0d4;
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom [data-lucide] {
  width: 14px;
  height: 14px;
}

.chat-button {
  position: fixed;
  right: 21px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  gap: 0;
  padding: 6px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 17px 36px rgba(14, 41, 74, 0.34);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.chat-button:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

.chat-button [data-lucide] {
  width: 20px;
  height: 20px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 16px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid #3b4650;
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(45, 140, 255, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .header-row {
    gap: 25px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fitment-layout {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 40px, 1240px);
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
    padding-bottom: 13px;
  }

  .mobile-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-menu a {
    padding: 11px;
    background: #22282e;
    color: #d9e0e3;
    border: 1px solid #384149;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    min-height: 560px;
  }

  .hero-shade {
    width: 64%;
  }

  h1 {
    font-size: 64px;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-strip a:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-description {
    max-width: 520px;
  }

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

  .fitment-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 0;
  }

  .fitment-form {
    max-width: 560px;
  }

  .standards-top {
    grid-template-columns: 1fr;
  }

  .standards-top > p:last-child {
    grid-row: auto;
    grid-column: 1;
    max-width: 550px;
  }

  .standards-grid article {
    padding-right: 20px;
  }

  .standards-grid article:not(:first-child) {
    padding-left: 20px;
  }

  .support-image {
    width: 43%;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.7fr 0.7fr;
  }

  .footer-build {
    grid-column: 1 / -1;
    max-width: 380px;
  }
}

@media (max-width: 580px) {
  .container,
  .mobile-menu {
    width: calc(100% - 28px);
  }

  .utility-inner {
    min-height: 38px;
    justify-content: center;
  }

  .utility-inner p {
    display: none;
  }

  .header-row {
    min-height: 64px;
  }

  .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .brand-copy span {
    font-size: 7px;
  }

  .phone-link,
  .header-actions > [data-open-search] {
    display: none;
  }

  .header-icon,
  .menu-button {
    width: 37px;
    height: 37px;
  }

  .search-row {
    padding-bottom: 10px;
  }

  .site-search {
    height: 40px;
    grid-template-columns: 37px 1fr auto;
  }

  .site-search button {
    padding: 0 14px;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    width: 100%;
    background: rgba(14, 17, 20, 0.6);
  }

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

  h1 {
    font-size: 52px;
  }

  .hero-intro {
    max-width: 325px;
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    max-width: 280px;
    margin-top: 22px;
    font-size: 11px;
  }

  .hero-scroll {
    bottom: 17px;
  }

  .category-strip {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .category-strip a,
  .category-strip a:first-child,
  .category-strip a:nth-child(3) {
    min-height: 76px;
    padding: 13px 22px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  h2,
  .fitment-copy h2,
  .support-content h2 {
    font-size: 45px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 26px;
  }

  .catalogue-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .filter-list {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px;
  }

  .match-count {
    padding-left: 1px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    min-height: 422px;
  }

  .product-image {
    height: 244px;
  }

  .product-details h3 {
    min-height: 0;
  }

  .fitment-layout {
    gap: 29px;
    padding: 64px 0;
  }

  .fitment-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .fitment-form {
    padding: 22px;
  }

  .standards-top {
    gap: 17px;
    padding-bottom: 32px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid article,
  .standards-grid article:not(:first-child) {
    min-height: 190px;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .standards-grid article:last-child {
    border-bottom: 0;
  }

  .standards-grid article > [data-lucide] {
    margin-bottom: 18px;
  }

  .standard-number {
    top: 27px;
    right: 0;
  }

  .support-section,
  .support-content {
    min-height: 590px;
  }

  .support-image {
    top: auto;
    width: 100%;
    height: 295px;
    background-position: center;
  }

  .support-image::after {
    background: rgba(14, 17, 20, 0.42);
  }

  .support-content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 23px;
    padding-top: 64px;
  }

  .support-content p:not(.eyebrow) {
    max-width: 360px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
    padding: 49px 0 36px;
  }

  .footer-brand,
  .footer-build {
    grid-column: 1 / -1;
  }

  .footer-build {
    max-width: none;
  }

  .footer-bottom {
    min-height: 80px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }

  .chat-button {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
  }

  .toast {
    right: 14px;
    bottom: 83px;
    max-width: calc(100vw - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
