:root {
  --braking-red: #e30613;
  --braking-red-dark: #b8000a;
  --braking-black: #070707;
  --braking-ink: #151515;
  --braking-gray: #666;
  --braking-line: #e3e3e3;
  --braking-surface: #f5f5f5;
  --braking-container: 1200px;
  --braking-shadow: 0 18px 45px rgba(0, 0, 0, .1);
}

html {
  scroll-behavior: smooth;
}

body.braking-site {
  margin: 0;
  color: var(--braking-ink);
  background: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.braking-site *,
.braking-site *::before,
.braking-site *::after {
  box-sizing: border-box;
}

.braking-site img {
  max-width: 100%;
  height: auto;
}

.braking-site a {
  color: inherit;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.braking-site a:hover {
  color: var(--braking-red);
  text-decoration: none;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  color: #fff;
  background: var(--braking-red);
}

.site-button,
.braking-site button[type="submit"],
.braking-site input[type="submit"],
.braking-site .checkout-button,
.braking-site .single_add_to_cart_button,
.braking-site .woocommerce a.button,
.braking-site .woocommerce button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: #fff !important;
  background: var(--braking-red) !important;
  border: 1px solid var(--braking-red) !important;
  border-radius: 2px !important;
  font: inherit;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.site-button:hover,
.braking-site button[type="submit"]:hover,
.braking-site input[type="submit"]:hover,
.braking-site .checkout-button:hover,
.braking-site .single_add_to_cart_button:hover,
.braking-site .woocommerce a.button:hover,
.braking-site .woocommerce button.button:hover {
  color: #fff !important;
  background: var(--braking-red-dark) !important;
  border-color: var(--braking-red-dark) !important;
}

.site-button--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 13px;
}

.site-topbar {
  color: #fff;
  background: var(--braking-black);
  border-bottom: 1px solid #282828;
}

.site-topbar__inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: minmax(242px, 330px) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.site-logo {
  display: block;
}

.site-logo img {
  display: block;
  width: 330px;
}

.site-search {
  position: relative;
  display: flex;
  margin: 0;
}

.site-search input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: #fff;
  background: #171717;
  border: 1px solid #343434;
  border-right: 0;
  border-radius: 2px 0 0 2px;
}

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

.site-search button {
  width: 54px;
  min-height: 50px;
  padding: 0;
  flex: 0 0 54px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 1000;
  max-height: 420px;
  overflow-y: auto;
  color: var(--braking-ink);
  background: #fff;
  border: 1px solid var(--braking-line);
  box-shadow: var(--braking-shadow);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestion {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}

.search-suggestion strong {
  flex: 0 0 auto;
  color: var(--braking-red);
}

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

.account-menu {
  position: relative;
}

.account-menu summary {
  display: flex;
  min-width: 150px;
  gap: 10px;
  align-items: center;
  color: #fff;
  list-style: none;
  cursor: pointer;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu summary > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  background: var(--braking-red);
  border-radius: 50%;
}

.account-menu summary span {
  display: grid;
}

.account-menu summary small {
  color: #b8b8b8;
}

.account-menu summary strong {
  font-size: 16px;
}

.account-menu__panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 1100;
  width: 310px;
  padding: 20px;
  color: var(--braking-ink);
  background: #fff;
  border-top: 3px solid var(--braking-red);
  box-shadow: var(--braking-shadow);
}

.account-menu__panel > a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
}

.compact-login {
  display: grid;
  gap: 7px;
}

.compact-login input[type="email"],
.compact-login input[type="password"] {
  width: 100%;
  height: 42px;
  padding: 8px 10px;
}

.compact-login__remember {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 5px 0;
}

.account-menu__links {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 14px;
}

.cart-link {
  display: inline-flex;
  min-height: 46px;
  gap: 9px;
  align-items: center;
  padding: 10px 15px;
  color: #fff !important;
  background: var(--braking-red);
  font-weight: 700;
}

.cart-link:hover {
  color: #fff !important;
  background: var(--braking-red-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid #444;
  font-size: 20px;
}

.braking-brand-strip {
  padding: 0;
  color: #fff;
  background: var(--braking-red);
  box-shadow: 0 7px 24px rgba(0, 0, 0, .15);
}

.site-navigation {
  position: relative;
  z-index: 900;
  color: #fff;
  background: transparent;
}

.site-nav-list,
.site-subnav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-list {
  display: flex;
  align-items: stretch;
}

.site-nav-list > li {
  position: relative;
  display: flex;
}

.site-nav-list > li > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.site-nav-list > li:hover > a,
.site-nav-list > li:focus-within > a {
  color: var(--braking-red);
  background: #fff;
}

.site-nav-list > li.has-children > a::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.site-nav-list small {
  margin-left: 4px;
  font-size: 9px;
}

.site-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 280px;
  padding: 10px 0;
  background: #fff;
  border-top: 3px solid var(--braking-red);
  box-shadow: var(--braking-shadow);
}

.has-children:hover > .site-subnav,
.has-children:focus-within > .site-subnav {
  display: block;
}

.site-subnav li {
  position: relative;
}

.site-subnav a {
  display: block;
  padding: 9px 18px;
  color: var(--braking-ink);
  font-size: 14px;
}

.site-subnav a:hover {
  padding-left: 22px;
}

.site-subnav .site-subnav {
  top: -13px;
  left: 100%;
}

.site-language {
  margin-left: auto;
}

.site-language a {
  color: #fff !important;
  background: rgba(0, 0, 0, .28);
}

.site-language:hover a,
.site-language:focus-within a {
  color: var(--braking-red) !important;
  background: #fff;
}

.vehicle-hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .35)),
    url("../images/pexels-javier-aguilera.jpg") center/cover no-repeat;
}

.vehicle-hero__content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--braking-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.vehicle-hero h1,
.page-hero h1,
.product-summary h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
}

.vehicle-hero h1 {
  max-width: none;
  font-size: clamp(32px, 3.35vw, 44px);
  letter-spacing: -.025em;
  line-height: 1.02;
}

.vehicle-hero h1,
.page-hero h1 {
  color: #fff;
}

.vehicle-hero h1::after,
.page-hero h1::after,
.section-heading h2::after,
.product-summary h1::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 18px;
  background: var(--braking-red);
}

.vehicle-hero__intro {
  max-width: 700px;
  margin: 18px 0 22px;
  color: #e4e4e4;
  font-size: 19px;
}

.vehicle-search {
  display: grid;
  max-width: 1020px;
  grid-template-columns: minmax(0, 1fr) minmax(0, .7fr) minmax(0, 1.5fr) max-content;
  gap: 10px;
  padding: 12px;
  background: rgba(8, 8, 8, .88);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
}

.vehicle-search__field {
  min-width: 0;
}

.vehicle-search select {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  color: var(--braking-ink);
  background: #fff;
  border: 1px solid #ddd;
}

.vehicle-search button {
  align-self: end;
  min-height: 50px;
  min-width: 128px;
  padding-inline: 22px;
  white-space: nowrap;
}

.vehicle-search .vehicle-search__advanced-toggle {
  width: 50px;
  min-width: 50px;
  padding: 0;
  color: #fff;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.vehicle-search .vehicle-search__advanced-toggle:hover,
.vehicle-search .vehicle-search__advanced-toggle:focus {
  color: #fff;
  background: var(--braking-red);
}

.vehicle-search__advanced {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 2px;
}

.vehicle-search__advanced[hidden] {
  display: none;
}

.content-section {
  padding: 82px 0;
}

.content-section--muted {
  background: var(--braking-surface);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.025em;
}

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

.product-catalog-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--braking-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  border-color: #c9c9c9;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fafafa;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card__flip,
.product-card__flip-inner,
.product-card__flip-face {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__flip {
  perspective: 1000px;
}

.product-card__flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.2, .65, .3, 1);
}

.product-card__flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product-card__flip-back {
  transform: rotateY(180deg);
}

.product-card__image:hover .product-card__flip-inner,
.product-card__image:focus-visible .product-card__flip-inner {
  transform: rotateY(180deg);
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .product-card__flip-inner {
    transition-duration: .01ms;
  }
}

.product-card__code {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--braking-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

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

.product-card__body h3 {
  min-height: 46px;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.product-price,
.braking-site .price,
.braking-site .woocommerce-Price-amount {
  color: var(--braking-red) !important;
  font-size: 20px;
  font-weight: 800;
}

.product-availability {
  margin: 4px 0 12px;
}

.product-availability--overlay {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  margin: 0;
}

.product-availability--overlay .availability-badge {
  padding: 6px 8px;
  background-clip: padding-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  font-size: 11px;
}

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

.product-card__actions .product-price,
.product-item__actions .product-price {
  margin: 0;
}

.product-card__actions .site-button,
.product-item__actions .site-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-catalog-grid > .item {
  margin-bottom: 0;
}

.product-catalog-grid .product-availability {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.product-catalog-grid .product-availability--overlay {
  top: 15px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-catalog-grid .product-availability--overlay .availability-badge {
  min-height: 30px;
  padding: 6px 14px;
  border-right: 0;
  border-radius: 20px 0 0 20px;
}

.product-catalog-grid .product-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
  border: 1px solid var(--braking-line);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.product-catalog-grid .product-item-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.product-catalog-grid .product-item-image > a,
.product-catalog-grid .product-item-image .flip-box,
.product-catalog-grid .product-item-image .flip-box-inner,
.product-catalog-grid .product-item-image .flip-box-front,
.product-catalog-grid .product-item-image .flip-box-back {
  display: block;
  width: 100%;
  height: 100%;
}

.product-catalog-grid .product-item-image .flip-box-front,
.product-catalog-grid .product-item-image .flip-box-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
}

.product-catalog-grid .product-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-catalog-grid .product-item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.product-catalog-grid .product-item-content a h5 {
  min-height: 46px;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .025em;
}

.availability-badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.availability-badge--available {
  color: #176b3a;
  border-color: #b8ddc7;
  background: #edf8f1;
}

.availability-badge--order {
  color: #875800;
  border-color: #ead39f;
  background: #fff7e3;
}

.availability-badge--unavailable {
  color: #676767;
  border-color: #d5d5d5;
  background: #f2f2f2;
}

.technology-promo {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0c0c0c;
}

.technology-promo::after {
  content: "";
  position: absolute;
  top: -240px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(227, 6, 19, .35), transparent 68%);
  pointer-events: none;
}

.technology-promo__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.technology-promo__copy h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.technology-promo__copy p:not(.section-eyebrow) {
  max-width: 640px;
  margin-bottom: 28px;
  color: #ccc;
  font-size: 19px;
}

.technology-promo__grid > img {
  max-height: 480px;
  justify-self: center;
  object-fit: contain;
}

.category-promos {
  padding: 50px 0;
  background: var(--braking-surface);
}

.category-promos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.category-promo {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  color: #fff !important;
  background-position: center;
  background-size: cover;
}

.category-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .1));
}

.category-promo > * {
  position: relative;
}

.category-promo--oem {
  background-color: #171717;
  background-image: url("../images/braking-disc-ap10fid.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 92%;
}

.category-promo--racing {
  background-color: #171717;
  background-image: url("../images/braking-disc-stx90d1.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 92%;
}

.category-promo span {
  color: #ddd;
  text-transform: uppercase;
}

.category-promo strong {
  margin: 4px 0 18px;
  font-size: 34px;
  line-height: 1;
}

.category-promo em {
  width: fit-content;
  padding-bottom: 4px;
  color: #fff;
  border-bottom: 2px solid var(--braking-red);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.service-points {
  color: #fff;
  background: #121212;
  border-top: 1px solid #292929;
}

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

.service-point {
  display: flex;
  min-height: 155px;
  gap: 16px;
  align-items: center;
  padding: 25px 20px;
  border-right: 1px solid #2a2a2a;
}

.service-point:last-child {
  border-right: 0;
}

.service-point > i {
  color: var(--braking-red);
  font-size: 32px;
}

.service-point h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 19px;
}

.service-point p {
  margin: 0;
  color: #aaa;
}

.news-section {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  border: 1px solid var(--braking-line);
}

.news-card__image {
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--braking-surface);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 20px;
}

.news-card time {
  color: var(--braking-red);
  font-size: 13px;
  font-weight: 700;
}

.news-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.page-hero {
  padding: 78px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .45)),
    url("../images/pexels-javier-aguilera.jpg") center/cover no-repeat;
}

.breadcrumbs-clean ol {
  display: flex;
  gap: 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-clean li + li::before {
  content: "/";
  margin-right: 22px;
  color: var(--braking-red);
}

.breadcrumbs-clean a {
  color: #fff;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.about-intro figure {
  margin: 0;
}

.about-intro figure img {
  display: block;
  width: 100%;
}

.prose {
  font-size: 18px;
  line-height: 1.75;
}

.prose h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.prose--wide {
  max-width: 900px;
}

.legal-content {
  max-width: 920px;
  padding: 45px;
  background: #fff;
  border: 1px solid var(--braking-line);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 1.8em;
  font-weight: 800;
  line-height: 1.2;
}

.legal-content > :first-child {
  margin-top: 0;
}

.auth-panel {
  max-width: 620px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--braking-line);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.auth-panel h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 48px);
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  font-weight: 700;
}

.auth-form input {
  min-height: 48px;
}

.auth-form button {
  width: fit-content;
  margin-top: 8px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25em;
}

.contact-layout__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
}

.contact-details,
.contact-form-panel {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--braking-line);
}

.contact-details {
  color: #fff;
  background: #101010;
  border-color: #101010;
}

.contact-details h2,
.contact-form-panel h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid #2b2b2b;
}

.contact-detail > i {
  width: 24px;
  color: var(--braking-red);
  font-size: 20px;
}

.contact-detail > div {
  display: grid;
  gap: 4px;
}

.contact-detail span,
.contact-detail a {
  color: #ccc;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.braking-site input[type="text"],
.braking-site input[type="email"],
.braking-site input[type="password"],
.braking-site input[type="number"],
.braking-site select,
.braking-site textarea {
  max-width: 100%;
  padding: 11px 12px;
  color: var(--braking-ink);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 1px;
  font: inherit;
}

.form-field input {
  min-height: 48px;
}

.contact-form > button {
  margin-top: 20px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-map {
  margin-top: 40px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-notice {
  max-width: var(--braking-container);
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-left: 4px solid;
}

.site-notice--success {
  color: #14532d;
  background: #ecfdf3;
  border-color: #16a34a;
}

.site-notice--warning {
  color: #7c2d12;
  background: #fff7ed;
  border-color: #ea580c;
}

.product-detail {
  padding: 70px 0 0;
  background: var(--braking-surface);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 40px;
  background: #fff;
}

.product-gallery-clean__main {
  aspect-ratio: 1;
  background: #fafafa;
}

.product-gallery-clean__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-clean__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-gallery-clean__thumbs button {
  width: 84px;
  height: 84px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--braking-line);
  border-radius: 0 !important;
  cursor: pointer;
}

.product-gallery-clean__thumbs button.is-active {
  border-color: var(--braking-red);
  box-shadow: 0 0 0 1px var(--braking-red);
}

.product-gallery-clean__thumbs button:focus-visible {
  outline: 2px solid var(--braking-red);
  outline-offset: 2px;
}

.product-gallery-clean__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
}

.product-summary h1 {
  color: var(--braking-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.product-price--large {
  margin: 25px 0 10px;
  font-size: 32px;
}

.delivery-note {
  color: var(--braking-red);
  font-weight: 700;
}

.product-description {
  margin: 16px 0;
  white-space: pre-line;
  line-height: 1.5;
}

.product-specifications {
  padding: 20px 0;
  margin-top: 22px;
  border-top: 1px solid var(--braking-line);
  border-bottom: 1px solid var(--braking-line);
}

.product-specifications h2 {
  margin: 0 0 14px;
  color: var(--braking-ink);
  font-size: 22px;
}

.product-specifications__description {
  max-height: 480px;
  padding: 14px;
  margin-bottom: 14px;
  overflow: auto;
  background: #fafafa;
  border: 1px solid var(--braking-line);
  line-height: 1.6;
}

.product-specifications__description > :first-child {
  margin-top: 0;
}

.product-specifications__description > :last-child {
  margin-bottom: 0;
}

.product-specifications__description table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
}

.product-specifications__description th,
.product-specifications__description td {
  padding: 7px 9px;
  border: 1px solid #dedede;
  text-align: left;
  vertical-align: top;
}

.product-specifications__description td[colspan],
.product-specifications__description th[colspan] {
  font-weight: 700;
  background: #f1f1f1;
}

.product-specifications__list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-specifications__list > div {
  display: grid;
  grid-template-columns: clamp(150px, 38%, 170px) minmax(0, 1fr);
  gap: 24px;
  padding: 8px 0;
  border-top: 1px solid #eeeeee;
}

.product-specifications__list dt {
  color: var(--braking-muted);
  font-weight: 700;
  white-space: nowrap;
}

.product-specifications__list dd {
  margin: 0;
  color: var(--braking-ink);
  font-weight: 700;
}

.add-to-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 25px;
}

.product-fitment-quantity {
  margin: 8px 0 0;
  color: var(--braking-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-fitment-quantity--detail {
  margin: 10px 0 0;
  font-size: 15px;
}

.add-to-cart-form label {
  width: 100%;
  font-weight: 700;
}

.add-to-cart-form input[type="number"] {
  width: 90px;
  min-height: 46px;
}

.product-category {
  margin-top: 22px;
}

.product-fitments {
  margin-top: 60px;
  padding: 65px 0;
  background: #fff;
}

.product-fitments__accordion {
  display: grid;
  gap: 12px;
}

.product-fitments__brand {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--braking-line);
}

.product-fitments__brand summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #fff;
  background: #151515;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.product-fitments__brand summary::-webkit-details-marker {
  display: none;
}

.product-fitments__brand summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.product-fitments__brand[open] summary::after {
  transform: rotate(225deg);
}

.table-wrap {
  overflow-x: auto;
}

.product-fitments table {
  width: 100%;
  border-collapse: collapse;
}

.product-fitments th,
.product-fitments td {
  padding: 13px 15px;
  text-align: left;
  border: 1px solid var(--braking-line);
}

.product-fitments thead th {
  color: #fff;
  background: #2a2a2a;
}

.category-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-link-grid a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--braking-line);
  font-weight: 700;
}

.category-link-grid a:hover {
  color: #fff;
  background: var(--braking-red);
  border-color: var(--braking-red);
}

.section-padding {
  padding-top: 70px;
  padding-bottom: 70px;
}

.result-count {
  margin: 0;
  font-weight: 700;
}

.product-ordering {
  margin: 0;
}

.empty-cart {
  padding: 70px 30px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--braking-line);
}

.empty-cart > i {
  color: var(--braking-red);
  font-size: 54px;
}

.empty-cart h2 {
  margin: 20px 0 28px;
  font-size: 32px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.cart-form,
.cart-summary {
  background: #fff;
  border: 1px solid var(--braking-line);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--braking-line);
}

.cart-table thead th {
  color: #fff;
  background: #151515;
  font-size: 13px;
  text-transform: uppercase;
}

.cart-table__image {
  width: 110px;
}

.cart-table__image img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.checkout-cart__product {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--braking-dark);
}

.checkout-cart__thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  background: #fff;
}

.checkout-cart__note {
  display: block;
  margin-top: 6px;
  color: var(--braking-gray);
  font-size: 12px;
  font-weight: 400;
}

.checkout-cart__note--offer {
  color: var(--braking-red);
}

.cart-table input[type="number"] {
  width: 76px;
}

.cart-remove {
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: var(--braking-red);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
}

.cart-empty-button {
  padding: 12px 18px;
  color: var(--braking-dark);
  background: transparent;
  border: 1px solid var(--braking-line);
  font-weight: 700;
}

.cart-summary {
  position: sticky;
  top: 25px;
  padding: 26px;
}

.cart-summary h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.cart-summary dl,
.cart-summary dd {
  margin: 0;
}

.cart-summary dl > div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--braking-line);
}

.cart-summary dt {
  font-weight: 700;
}

.cart-summary dd {
  display: grid;
  gap: 5px;
  text-align: right;
}

.cart-summary dd strong {
  color: var(--braking-red);
}

.cart-checkout {
  width: 100%;
  margin-top: 20px;
}

.braking-site input:focus,
.braking-site select:focus,
.braking-site textarea:focus,
.braking-site button:focus-visible,
.braking-site a:focus-visible {
  outline: 3px solid rgba(227, 6, 19, .28);
  outline-offset: 2px;
  border-color: var(--braking-red) !important;
}

.site-footer {
  color: #d8d8d8;
  background: var(--braking-black);
  border-top: 5px solid var(--braking-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 45px;
  padding-top: 65px;
  padding-bottom: 55px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
}

.footer-column p {
  color: #aaa;
  line-height: 1.6;
}

.footer-brand address {
  display: grid;
  gap: 7px;
  color: #aaa;
  font-style: normal;
}

.footer-brand address strong,
.footer-brand address a {
  color: #fff;
}

.braking-footer-mark {
  width: 220px;
  margin-bottom: 24px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 7px 0;
  color: #d8d8d8;
}

.footer-links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--braking-red);
}

.footer-copyright {
  border-top: 1px solid #292929;
}

.footer-copyright p {
  margin: 0;
  padding: 18px 0;
  color: #999;
}

#backtotop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
    width: 50px;
    height: 50px;
  padding: 0;
  place-items: center;
  color: #fff;
    background: transparent;
    border: 0;
    border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  #backtotop i {
    display: grid;
    padding: 0;
    place-items: center;
  }

  #backtotop:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

#backtotop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.blog-article,
.blog-sidebar {
  background: #fff;
  border: 1px solid var(--braking-line);
  border-radius: 3px;
  box-shadow: 0 12px 34px rgb(0 0 0 / 8%);
}

.blog-article {
  overflow: hidden;
}

.blog-article__lead,
.blog-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-article__content {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--braking-gray);
  line-height: 1.8;
}

.blog-article__content img {
  max-width: 100%;
  height: auto;
}

.blog-article__meta {
  color: var(--braking-dark);
  font-weight: 700;
}

.blog-video {
  aspect-ratio: 16 / 9;
}

.blog-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-gallery {
  display: grid;
  gap: 1rem;
  padding: 0 clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
}

.blog-sidebar {
  padding: 1.5rem;
}

.blog-sidebar h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.recent-posts {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recent-posts li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: .85rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--braking-line);
}

.recent-posts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-posts__image img {
  display: block;
  width: 84px;
  height: 68px;
  border-radius: 3px;
  object-fit: cover;
}

.recent-posts a {
  color: var(--braking-dark);
  font-weight: 700;
  line-height: 1.35;
}

.recent-posts time {
  display: block;
  margin-top: .35rem;
  color: var(--braking-gray);
  font-size: .82rem;
}

.account-form {
  display: grid;
  gap: 26px;
}

.account-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.form-panel {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--braking-line);
  box-shadow: 0 12px 34px rgb(0 0 0 / 8%);
}

.form-panel h2 {
  margin-top: 0;
}

.form-panel__heading {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.form-panel__heading p {
  margin: 0;
  color: var(--braking-gray);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--braking-gray);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.check-field {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.check-field input {
  width: 18px;
  height: 18px;
}

.account-form__actions {
  display: flex;
  justify-content: flex-end;
}

.account-orders {
  margin-top: 32px;
}

.notice {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--braking-dark);
  background: #fff;
}

.notice--success {
  border-color: #18864b;
}

.notice--warning {
  border-color: #e49b14;
}

@media (max-width: 1199px) {
  .site-topbar__inner {
    grid-template-columns: 230px 1fr auto;
    gap: 18px;
  }

  .site-nav-list > li > a {
    padding-inline: 9px;
    font-size: 12px;
  }

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

@media (max-width: 991px) {
  .site-topbar__inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-logo img {
    width: min(253px, 68vw);
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .braking-brand-strip {
    padding: 0;
  }

  .site-navigation {
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-nav-list {
    display: block;
    padding: 0;
  }

  .site-nav-list > li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .site-nav-list > li > a {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .site-subnav,
  .site-subnav .site-subnav {
    position: static;
    display: none;
    width: auto;
    padding: 0 0 8px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav-list .has-children:not(.is-submenu-open) > .site-subnav {
    display: none;
  }

  .site-nav-list .has-children.is-submenu-open > .site-subnav {
    display: block;
  }

  .site-nav-list > li.has-children > a::after {
    margin-left: auto;
    transition: transform .2s ease;
  }

  .site-nav-list > li.has-children.is-submenu-open > a::after {
    transform: rotate(225deg);
  }

  .site-subnav a {
    padding: 7px 10px;
    color: #ccc;
  }

  .site-language {
    margin-left: 0;
  }

  .vehicle-hero {
    min-height: auto;
  }

  .vehicle-search {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-search button {
    grid-column: auto;
  }

  .vehicle-search > button[type="submit"] {
    grid-column: 2;
  }

  .vehicle-search__advanced {
    grid-column: 1 / -1;
  }

  .technology-promo__grid,
  .about-intro__grid,
  .contact-layout__grid,
  .product-detail__grid,
  .cart-layout,
  .blog-layout,
  .account-form__grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .technology-promo__grid {
    padding-top: 60px;
  }

  .technology-promo__grid > img {
    max-height: 340px;
  }

  .service-points__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-point:nth-child(2) {
    border-right: 0;
  }

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

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

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 14px 0;
  }

  .breadcrumbs .container {
    overflow: hidden;
  }

  .breadcrumbs ul.trail-items {
    display: flex;
    align-items: center;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumbs ul.trail-items::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs ul.trail-items li {
    float: none;
    flex: 0 0 auto;
    margin-right: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  .breadcrumbs ul.trail-items li:last-child {
    max-width: 72vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

}

@media (max-width: 575px) {

  .product-gallery-clean__thumbs button {
    width: 72px;
    height: 72px;
  }

  .braking-brand-strip {
    padding-inline: 0;
  }

  .vehicle-hero__content {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .vehicle-hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .vehicle-hero h1 {
    max-width: none;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
  }

  .product-summary h1 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .vehicle-search,
  .product-grid,
  .news-grid,
  .category-promos__grid,
  .service-points__grid,
  .footer-grid,
  .category-link-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-search__field,
  .vehicle-search__field--wide,
  .vehicle-search button {
    grid-column: auto;
  }

  .vehicle-search__advanced {
    grid-template-columns: 1fr;
  }

  .vehicle-search .vehicle-search__advanced-toggle {
    width: 100%;
  }

  .service-point {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid #2a2a2a;
  }

  .category-promo {
    min-height: 270px;
  }

  .content-section {
    padding: 60px 0;
  }

  .product-detail__grid,
  .contact-details,
  .contact-form-panel {
    padding: 24px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 30px;
  }

  .form-panel__heading {
    flex-direction: column;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td,
  .cart-table th {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--braking-line);
  }

  .cart-table td,
  .cart-table th {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border: 0;
  }

  .cart-table td[data-label]::before,
  .cart-table th[data-label]::before {
    content: attr(data-label);
    color: var(--braking-gray);
    font-weight: 700;
  }

  .cart-table__image {
    display: block !important;
  }
}
