:root {
  --naist: #c2000b;
  --ink: #111111;
  --paper: #f5f5f7;
  --muted: #686b70;
  --line: #e6e6e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  text-rendering: geometricPrecision;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.site-header nav a,
.site-header nav summary {
  position: relative;
  color: #272727;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.main-nav {
  align-self: stretch;
  gap: 22px !important;
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.nav-link,
.nav-item {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
}

.site-header .main-nav > a::after,
.site-header .nav-item > .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--naist);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.18s ease;
}

.site-header nav a:hover,
.site-header nav summary:hover {
  color: var(--naist);
}

.site-header .main-nav > a:hover::after,
.site-header .nav-item:hover > .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 70;
  display: grid;
  width: 330px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: 0.18s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 14px 15px;
  border-bottom: 1px solid #f0f0f2;
  color: #111111;
  text-transform: none;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover {
  background: #f7f7f8;
  color: #111111;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown strong,
.nav-dropdown span {
  display: block;
}

.nav-dropdown strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-dropdown span {
  margin-top: 5px;
  color: #73767d;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
}

.mobile-menu-toggle {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid #d7d7da;
  background: #ffffff;
  cursor: pointer;
}

.mobile-menu-toggle-injected {
  display: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111111;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a,
.mobile-menu summary {
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-menu details {
  border-bottom: 1px solid var(--line);
}

.mobile-menu details > summary {
  list-style: none;
  cursor: pointer;
}

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

.mobile-menu details > summary::after {
  float: right;
  color: var(--naist);
  content: "+";
}

.mobile-menu details[open] > summary::after {
  content: "-";
}

.mobile-menu details a {
  display: block;
  border-bottom: 0;
  background: #f7f7f8;
  padding: 12px 20px 12px 34px;
  color: #555961;
  font-size: 12px;
}

.hero-section {
  min-height: calc(100vh - 78px);
}

.hero-product-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background:
    radial-gradient(circle at 78% 48%, rgba(194, 0, 11, 0.13), transparent 23%),
    radial-gradient(circle at 78% 45%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(90deg, #000000 0%, #050505 42%, #0b0b0b 100%);
  color: #ffffff;
}

.hero-product-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 78px);
  align-items: center;
}

.hero-section > *,
.hero-inner > * {
  min-width: 0;
}

.hero-copy-panel h1 {
  color: #ffffff;
  font-size: 80px;
  line-height: 0.9;
}

.hero-subline {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.2;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.hero-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid #333333;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-actions-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.hero-cta.primary {
  border-color: #c2000b;
  background: #c2000b;
  color: #ffffff;
}

.hero-cta.secondary {
  border-color: #555555;
  background: #1a1a1a;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-cta:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.hero-cta:active {
  transform: scale(0.97);
}

.hero-pad-stage {
  position: relative;
  display: flex;
  width: min(100%, 600px);
  min-height: 600px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  perspective: 1000px;
}

.brake-disc-orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  opacity: 0.12;
  background:
    radial-gradient(circle, transparent 0 13%, rgba(255, 255, 255, 0.16) 13.4% 15%, transparent 15.4% 26%, rgba(255, 255, 255, 0.13) 26.4% 27.6%, transparent 28% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 55%, rgba(255, 255, 255, 0.42) 55.5% 56.5%, transparent 57%),
    conic-gradient(from 8deg, transparent 0 8deg, rgba(255, 255, 255, 0.38) 8deg 10deg, transparent 10deg 30deg);
  filter: blur(0.2px);
}

.brake-disc-orbit::before {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 70%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px),
    radial-gradient(circle at 14% 70%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px),
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.85) 0 6px, transparent 7px);
  content: "";
}

.brake-disc-orbit::after {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 66%, rgba(194, 0, 11, 0.72), transparent 42%);
  content: "";
  filter: blur(34px);
  opacity: 0.15;
}

.pad-float-wrap {
  position: relative;
  z-index: 2;
  width: 85%;
  animation: padFloat 4s ease-in-out infinite;
}

.pad-rotate-wrap {
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  animation: padRotate 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
}

.pad-rotate-wrap::after {
  position: absolute;
  inset: -16% -20%;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.3) 48%, transparent 62%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80%);
  animation: padShine 3s ease-in-out infinite;
}

.hero-brake-pad-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-pad-label {
  position: absolute;
  right: 8%;
  bottom: 78px;
  z-index: 3;
  border-left: 4px solid var(--naist);
  background: rgba(17, 17, 17, 0.78);
  padding: 14px 16px;
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-pad-label strong,
.hero-pad-label span {
  display: block;
}

.hero-pad-label strong {
  font-size: 13px;
  font-weight: 950;
}

.hero-pad-label span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
}

@keyframes padRotate {
  0% {
    transform: rotateY(-22deg) rotateX(8deg);
  }

  50% {
    transform: rotateY(22deg) rotateX(4deg);
  }

  100% {
    transform: rotateY(-22deg) rotateX(8deg);
  }
}

@keyframes padFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes padShine {
  0%,
  34% {
    opacity: 0;
    transform: translateX(-80%);
  }

  50% {
    opacity: 0.3;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(80%);
  }
}

.stock-search {
  border: 1px solid #ececef;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid #111111;
  border-radius: 50%;
  transform: translateY(-55%);
}

.search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: #111111;
  content: "";
  transform: rotate(45deg);
}

.popular-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0 15px;
  color: #222222;
  font-weight: 800;
  transition: 0.18s ease;
}

.popular-pill:hover,
.popular-pill:focus-visible {
  border-color: var(--naist);
  color: var(--naist);
  outline: none;
}

.popular-pill:active {
  transform: scale(0.96);
}

.video-card {
  max-width: 100%;
  min-width: 0;
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.11);
}

.video-frame {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #191919;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.18), transparent 17%),
    radial-gradient(circle at 50% 55%, rgba(194, 0, 11, 0.22), transparent 24%),
    linear-gradient(135deg, #252525 0%, #0a0a0a 48%, #171717 100%);
  cursor: pointer;
  isolation: isolate;
}

.video-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(120deg, transparent 0%, #000 18%, #000 80%, transparent 100%);
}

.ceramic-pad {
  position: relative;
  width: min(68%, 410px);
  aspect-ratio: 1.48 / 1;
  border-radius: 40% 40% 28% 28% / 60% 60% 30% 30%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.23), transparent 18%),
    radial-gradient(circle at 50% 20%, #404040 0%, #171717 48%, #050505 100%);
  box-shadow:
    inset 0 -18px 35px rgba(0, 0, 0, 0.55),
    inset 0 12px 24px rgba(255, 255, 255, 0.08),
    0 44px 60px rgba(0, 0, 0, 0.45);
  animation: padRotate 4.8s ease-in-out infinite;
}

.ceramic-pad::before {
  position: absolute;
  right: 13%;
  bottom: 12%;
  left: 13%;
  height: 22%;
  border-radius: 28px;
  background: linear-gradient(180deg, #c2000b 0%, #8a0008 100%);
  content: "";
}

.ceramic-pad::after {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 26%;
  height: 24%;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 50% 50% 44% 44%;
  content: "";
  transform: translateX(-50%);
}

.pad-slot {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 46%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.pad-rivet {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #060606;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

.pad-rivet.one {
  top: 32%;
  left: 20%;
}

.pad-rivet.two {
  top: 32%;
  right: 20%;
}

.pad-rivet.three {
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
}

.pad-label {
  position: absolute;
  right: 16%;
  bottom: 16%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--naist);
  box-shadow: 0 20px 40px rgba(194, 0, 11, 0.38);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.18s ease;
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #ffffff;
  content: "";
}

.play-button:hover,
.video-frame:hover .play-button {
  background: #ff1d29;
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button:active {
  transform: translate(-50%, -50%) scale(0.96);
}

@keyframes padRotate {
  0%,
  100% {
    transform: perspective(900px) rotateX(3deg) rotateY(-9deg) translateY(0);
  }
  50% {
    transform: perspective(900px) rotateX(1deg) rotateY(9deg) translateY(-10px);
  }
}

.trust-bar article {
  min-height: 138px;
  border-right: 1px solid #dedee2;
  padding: 30px 26px;
}

.trust-bar article:first-child {
  border-left: 1px solid #dedee2;
}

.trust-bar strong {
  display: block;
  color: var(--naist);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  line-height: 0.95;
}

.trust-bar span {
  display: block;
  margin-top: 10px;
  color: #2f3135;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--naist);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.subpage-hero {
  border-bottom: 1px solid var(--line);
  background: #111111;
  color: #ffffff;
}

.subpage-hero-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 390px;
  align-items: end;
  margin: 0 auto;
  padding: 76px 0;
}

.subpage-hero .section-kicker,
.subpage-hero .section-title {
  color: #ffffff;
}

.subpage-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.6;
}

.product-center-hero {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 26% 34%, rgba(194, 0, 11, 0.18), transparent 18%),
    linear-gradient(180deg, #141414 0%, #101010 58%, #0b0b0b 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.product-center-hero .subpage-hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 64px;
  min-height: 500px;
  align-items: center;
}

.exact-model-hero {
  overflow: hidden;
  background:
    linear-gradient(rgba(26, 26, 26, 0.82) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.82) 1px, transparent 1px),
    radial-gradient(circle at 86% 12%, rgba(194, 0, 11, 0.2), transparent 26%),
    #0a0a0a;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.exact-model-hero .subpage-hero-inner {
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
  gap: 54px;
  min-height: 430px;
  align-items: center;
}

.exact-model-copy .section-kicker {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.exact-model-copy .section-title {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1;
}

.exact-model-copy .section-title::after {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 16px;
  background: var(--naist);
  content: "";
}

.exact-model-hero p:not(.section-kicker) {
  max-width: 480px;
  margin-top: 20px;
  color: #9ca3af;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.6;
}

.exact-search-card {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 22px;
}

.exact-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.exact-hero-input {
  position: relative;
  display: block;
}

.exact-hero-input input {
  width: 100%;
  height: 54px;
  border: 1px solid #dedfe4;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 14px 0 48px;
  color: #111111;
  font-size: 12px;
  font-weight: 850;
  outline: none;
}

.exact-hero-input input:focus {
  border-color: var(--naist);
  box-shadow: 0 0 0 3px rgba(194, 0, 11, 0.1);
}

.exact-hero-search button {
  min-width: 94px;
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--naist);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
}

.exact-hero-search button:hover {
  background: #e30613;
}

.exact-hero-search button:active,
.exact-popular-row button:active,
.exact-stock-toggle:active {
  transform: scale(0.98);
}

.exact-popular-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.exact-popular-row span {
  color: #4b4f56;
  font-size: 12px;
  font-weight: 950;
}

.exact-popular-row button {
  min-height: 32px;
  border: 1px solid #dedfe4;
  border-radius: 999px;
  background: #f7f7f8;
  padding: 0 11px;
  color: #25272b;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
}

.exact-popular-row button:hover,
.exact-popular-row button.is-active {
  border-color: var(--naist);
  background: rgba(194, 0, 11, 0.08);
  color: var(--naist);
}

.exact-stock-toggle {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  border: 1px solid #dedfe4;
  border-radius: 8px;
  background: #fbfbfc;
  padding: 0 14px;
  cursor: pointer;
  transition: 0.18s ease;
}

.exact-stock-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.exact-stock-toggle span {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #9ca3af;
  border-radius: 5px;
  background: #ffffff;
  transition: 0.18s ease;
}

.exact-stock-toggle span::after {
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.exact-stock-toggle input:checked + span {
  border-color: #16a34a;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.exact-stock-toggle input:checked + span::after {
  opacity: 1;
}

.exact-stock-toggle strong {
  color: #25272b;
  font-size: 13px;
  font-weight: 950;
}

.exact-stock-toggle:hover {
  border-color: #b8bcc5;
}

.product-center-hero .section-title {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(42px, 4.7vw, 58px);
  line-height: 0.98;
}

.product-center-hero p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.45;
}

.product-hero-copy {
  position: relative;
  z-index: 2;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  padding-left: 48px;
}

.product-hero-copy .section-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.product-hero-copy .section-kicker::before {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.product-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.product-hero-badges span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  padding: 0 18px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero-badges span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  content: "";
}

.product-hero-badges span:nth-child(2) {
  border-color: rgba(24, 172, 104, 0.5);
  background: rgba(24, 172, 104, 0.12);
  color: #cae9d9;
}

.product-hero-badges span:nth-child(2)::before {
  background: #16b36b;
  box-shadow: 0 0 18px rgba(24, 172, 104, 0.55);
}

.product-hero-scene {
  position: relative;
  min-height: 388px;
  isolation: isolate;
}

.product-hero-scene::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 42% 55%, #000 0 56%, transparent 74%);
  content: "";
}

.hilux-silhouette {
  position: absolute;
  left: -20px;
  right: 8px;
  bottom: 42px;
  height: 220px;
  opacity: 0.28;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.hilux-silhouette::after {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 58px;
  height: 40px;
  background: linear-gradient(90deg, rgba(230, 232, 234, 0.62), rgba(90, 94, 98, 0.44));
  clip-path: polygon(0 36%, 16% 36%, 26% 0, 72% 0, 91% 42%, 100% 46%, 100% 100%, 0 100%);
  content: "";
}

.hilux-cabin,
.hilux-bed,
.hilux-hood {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #f2f2f2, #8b8e92);
}

.hilux-cabin {
  left: 22%;
  bottom: 98px;
  width: 30%;
  height: 72px;
  clip-path: polygon(12% 100%, 25% 12%, 78% 12%, 100% 100%);
}

.hilux-bed {
  left: 50%;
  bottom: 88px;
  width: 40%;
  height: 80px;
  clip-path: polygon(0 12%, 76% 12%, 100% 42%, 100% 100%, 0 100%);
}

.hilux-hood {
  left: 2%;
  bottom: 88px;
  width: 27%;
  height: 60px;
  clip-path: polygon(0 58%, 100% 8%, 100% 100%, 0 100%);
}

.hilux-wheel {
  position: absolute;
  bottom: 20px;
  width: 118px;
  height: 118px;
  border: 12px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #080808;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hilux-wheel.rear {
  right: 17%;
}

.hilux-wheel.front {
  left: 12%;
  box-shadow:
    inset 0 0 0 14px #f2f4f5,
    inset 0 0 0 22px #b7bcc2,
    inset 0 0 0 48px #1a1b1e,
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 66px rgba(194, 0, 11, 0.2);
}

.front-brake-assembly {
  position: absolute;
  left: 13.5%;
  bottom: 34px;
  width: 92px;
  height: 92px;
  z-index: 2;
}

.vented-disc {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #23242a 0 18%, #575d64 19% 24%, transparent 25%),
    radial-gradient(circle at 50% 50%, #f4f5f6 0 52%, #9da3aa 53% 62%, transparent 63%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.62);
}

.vented-disc::before,
.vented-disc::after {
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(20, 20, 20, 0.42);
  border-radius: 50%;
  content: "";
}

.vented-disc::after {
  inset: 29px;
  border-style: solid;
  opacity: 0.45;
}

.disc-hole,
.disc-stud {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #171717;
}

.disc-hole {
  width: 5px;
  height: 5px;
}

.disc-hole.h1 {
  top: 14px;
  left: 45px;
}

.disc-hole.h2 {
  right: 13px;
  top: 43px;
}

.disc-hole.h3 {
  bottom: 14px;
  left: 48px;
}

.disc-hole.h4 {
  left: 14px;
  top: 44px;
}

.disc-stud {
  width: 8px;
  height: 8px;
  background: #303236;
  box-shadow: inset 0 0 0 2px #cfd4d8;
}

.disc-stud.s1 {
  top: 26px;
  left: 44px;
}

.disc-stud.s2 {
  right: 27px;
  top: 45px;
}

.disc-stud.s3 {
  bottom: 27px;
  left: 44px;
}

.disc-stud.s4 {
  left: 27px;
  top: 45px;
}

.disc-hub {
  position: absolute;
  inset: 36px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #101010 0 32%, #e5e8eb 34% 49%, #747a80 52% 100%);
}

.fitment-dot {
  position: absolute;
  left: 214px;
  top: -3px;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #ff424c;
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.5);
}

.fitment-line {
  position: absolute;
  left: 103px;
  width: 132px;
  border-top: 2px dashed rgba(227, 6, 19, 0.88);
  transform-origin: left center;
}

.fitment-line.line-top {
  top: -54px;
  transform: rotate(-138deg);
}

.fitment-line.line-bottom {
  top: -22px;
  transform: rotate(-36deg);
}

.exploded-pad-card {
  position: absolute;
  left: 38%;
  top: 44px;
  z-index: 4;
  width: 206px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(43, 44, 46, 0.96) 0 62%, rgba(157, 104, 55, 0.9) 63% 100%);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(194, 0, 11, 0.16);
  transform: none;
}

.exploded-pad-card img {
  display: block;
  width: 64%;
  height: auto;
  padding: 10px 10px 8px;
  filter: grayscale(0.35) brightness(0.85) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.72));
}

.exploded-pad-card span {
  position: absolute;
  left: -38px;
  bottom: -40px;
  display: block;
  border-top: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.exploded-pad-card span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #ff424c;
  content: "";
}

.product-hero-scene::after {
  position: absolute;
  left: 37%;
  bottom: 24px;
  z-index: 1;
  min-width: 164px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  content: "Ø 257mm • Vented";
}

.subpage-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.subpage-section + .subpage-section {
  border-top: 1px solid var(--line);
}

.subpage-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.subpage-note {
  max-width: 460px;
  margin: 0;
  color: #686b70;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.7;
}

.subpage-grid-2,
.subpage-grid-3,
.subpage-grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.subpage-card {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 28px;
}

.subpage-card.dark {
  border-color: #242424;
  background: #111111;
  color: #ffffff;
}

.subpage-card img,
.subpage-card video {
  display: block;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  object-fit: cover;
}

.subpage-card h2,
.subpage-card h3 {
  margin: 0;
  color: inherit;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.12;
}

.subpage-card p,
.subpage-card li {
  color: #666a72;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.72;
}

.subpage-card.dark p,
.subpage-card.dark li {
  color: rgba(255, 255, 255, 0.68);
}

.subpage-card ul,
.subpage-card ol {
  margin: 18px 0 0;
  padding-left: 18px;
}

.subpage-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: var(--naist);
  padding: 0 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.subpage-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.page-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  border: 1px solid var(--line);
  background: #ffffff;
}

.page-sidebar strong {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.page-sidebar a {
  display: block;
  border-bottom: 1px solid #f0f0f2;
  padding: 14px 20px;
  color: #555961;
  font-size: 13px;
  font-weight: 820;
}

.page-sidebar a:last-child {
  border-bottom: 0;
}

.page-sidebar a:hover {
  color: var(--naist);
}

.page-content {
  display: grid;
  gap: 58px;
}

.content-block {
  scroll-margin-top: 110px;
}

.content-block > h2 {
  margin: 0 0 16px;
  color: #111111;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.04;
}

.content-lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: #666a72;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.68;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.media-feature img,
.media-feature video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.media-feature-copy {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 32px;
}

.media-feature-copy h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
}

.media-feature-copy p,
.media-feature-copy li {
  color: #666a72;
  font-size: 15px;
  font-weight: 730;
  line-height: 1.72;
}

.media-feature-copy ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

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

.detail-item {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 24px;
}

.detail-item span {
  color: var(--naist);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-item h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.detail-item p {
  margin: 0;
  color: #666a72;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.66;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #ffffff;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 780;
}

.spec-table th {
  background: #f5f5f7;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.page-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #111111;
  padding: 34px;
  color: #ffffff;
}

.page-cta-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.08;
}

.page-cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 740;
}

.oem-service-section {
  border-bottom: 1px solid var(--line);
}

.oem-service-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.oem-service-head > p {
  margin: 0;
  color: #666a72;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.75;
}

.service-line-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.service-line-card,
.process-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 28px;
  transition: 0.2s ease;
}

.service-line-card::after,
.process-grid article::after {
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 146px;
  height: 146px;
  border: 28px solid rgba(194, 0, 11, 0.06);
  border-radius: 50%;
  content: "";
}

.service-line-card:hover,
.process-grid article:hover {
  border-color: #111111;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

.service-line-card span,
.process-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  background: #111111;
  padding: 0 11px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.service-line-card h3,
.process-grid h3 {
  margin: 38px 0 13px;
  color: #111111;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.06;
}

.service-line-card p,
.process-grid p {
  margin: 0;
  color: #676b73;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.process-section {
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  min-height: 290px;
}

.cooperation-panel {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 26px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #111111;
  padding: 30px;
  color: #ffffff;
}

.cooperation-panel h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 950;
  line-height: 1.06;
}

.cooperation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cooperation-steps li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.cooperation-steps span {
  color: var(--naist);
  font-size: 12px;
  font-weight: 950;
}

.cooperation-steps strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.cooperation-steps p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.cape-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 34px;
}

.cape-stat-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.cape-stat-grid strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.cape-stat-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.factory-capacity-section {
  border-bottom: 1px solid var(--line);
}

.factory-capacity-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.factory-capacity-head > p {
  margin: 0;
  color: #666a72;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.75;
}

.factory-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.55fr));
  gap: 14px;
  margin-bottom: 14px;
}

.factory-photo-card {
  position: relative;
  min-height: 217px;
  overflow: hidden;
  border: 1px solid #d9dbe0;
  background: #111111;
}

.factory-photo-card.large {
  grid-row: span 2;
  grid-column: span 1;
  min-height: 454px;
}

.factory-photo-card img,
.factory-photo-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.factory-photo-card:hover img,
.factory-photo-card:hover video {
  transform: scale(1.025);
}

.video-factory-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
  content: "";
  pointer-events: none;
}

.factory-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.factory-photo-card figcaption span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  background: #ffffff;
  padding: 0 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.factory-photo-card figcaption strong {
  max-width: 260px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.factory-photo-card:not(.large) figcaption {
  align-items: flex-start;
  flex-direction: column;
}

.factory-photo-card:not(.large) figcaption strong {
  max-width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 8px;
  font-size: 12px;
  text-align: left;
}

.capacity-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.capacity-stat-grid article {
  display: grid;
  min-height: 138px;
  align-content: space-between;
  border: 1px solid #dedfe3;
  background: #ffffff;
  padding: 22px;
}

.capacity-stat-grid strong {
  color: #111111;
  font-size: 42px;
  font-weight: 950;
  line-height: 0.9;
}

.capacity-stat-grid span {
  color: #51545b;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.factory-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dedfe3;
  background: #ffffff;
}

.factory-flow article {
  position: relative;
  min-height: 205px;
  border-right: 1px solid #dedfe3;
  padding: 26px 22px;
}

.factory-flow article:last-child {
  border-right: 0;
}

.factory-flow article::before {
  position: absolute;
  top: 42px;
  right: -11px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-top: 2px solid #111111;
  border-right: 2px solid #111111;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.factory-flow article:last-child::before {
  display: none;
}

.factory-flow span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  background: var(--naist);
  padding: 0 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.factory-flow h3 {
  margin: 42px 0 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.factory-flow p {
  margin: 0;
  color: #686b72;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.product-section {
  scroll-margin-top: 96px;
}

.product-catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 100%;
  min-width: 0;
}

.product-category-panel {
  position: sticky;
  top: 96px;
  min-width: 0;
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-category-panel h3 {
  margin: 0;
  background: var(--naist);
  padding: 24px 26px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 850;
  line-height: 1.05;
}

.product-category-list {
  display: grid;
  max-width: 100%;
  min-width: 0;
}

.product-category-list button {
  display: flex;
  min-height: 68px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid #e2e2e4;
  background: #f7f7f8;
  padding: 0 22px;
  color: #36383d;
  font-size: 18px;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.product-category-list button:last-child {
  border-bottom: 0;
}

.product-category-list button strong {
  color: #90939a;
  font-size: 12px;
  font-weight: 950;
}

.product-category-list button:hover,
.product-category-list button.is-active {
  background: #f7e7e8;
  color: var(--naist);
}

.product-category-list button.is-active strong {
  color: var(--naist);
}

.product-catalog-main {
  max-width: 100%;
  min-width: 0;
}

.product-catalog-toolbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 14px 18px;
}

.product-catalog-toolbar > div:first-child {
  flex: 0 0 250px;
}

.product-catalog-toolbar .product-filter-row {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}

.product-catalog-toolbar .product-filter-input {
  flex: 1 1 520px;
  min-width: 0;
}

.product-catalog-toolbar .stock-filter {
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-catalog-toolbar span,
.product-catalog-toolbar p {
  margin: 0;
  color: #74777e;
  font-size: 12px;
  font-weight: 850;
}

.product-catalog-toolbar strong {
  display: block;
  margin-top: 4px;
  color: #111111;
  font-size: 18px;
  font-weight: 950;
}

.product-section-link {
  display: inline-flex;
  min-height: 46px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  background: #ffffff;
  padding: 0 18px;
  color: #111111;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.product-section-link:hover {
  background: #111111;
  color: #ffffff;
}

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

.product-model-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-model-card:hover,
.product-model-card:focus-within {
  border-color: #111111;
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
  transform: translateY(-3px);
}

.brake-pad-shot {
  position: relative;
  display: grid;
  min-height: 194px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
}

.brake-pad-shot::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(194, 0, 11, 0.08));
  content: "";
  pointer-events: none;
}

.brake-pad-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 88%;
  max-width: 360px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(17, 17, 17, 0.12));
  transition: transform 0.22s ease;
}

.product-zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: 0.18s ease;
}

.product-zoom-btn:hover {
  border-color: var(--naist);
  background: var(--naist);
  color: #ffffff;
}

.product-model-card:hover .brake-pad-shot img,
.product-model-card:focus-within .brake-pad-shot img {
  transform: scale(1.035);
}

.product-card-body {
  position: relative;
  display: flex;
  min-height: 184px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.model-brand {
  margin: 0 0 9px;
  color: #8b8d92;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card-body h3 {
  margin: 0;
  color: #111111;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.product-card-body h3 strong {
  color: var(--naist);
}

.oe-line {
  margin: 14px 0 0;
  color: #5e6167;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.product-param-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 16px;
}

.product-param-row span {
  border: 1px solid #e5e5e7;
  background: #f8f8f9;
  padding: 5px 7px;
  color: #60636a;
  font-size: 10px;
  font-weight: 900;
}

.product-empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 40px;
  color: #666a72;
  font-size: 16px;
  font-weight: 850;
}

.product-load-more {
  grid-column: 1 / -1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
}

.product-load-more span {
  color: #8b8d94;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.product-load-more:hover {
  background: #111111;
  color: #ffffff;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 14px;
}

.pagination-status {
  color: #6f7279;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.pagination-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.pagination-controls button {
  min-width: 38px;
  height: 38px;
  border: 1px solid #d9dadd;
  background: #ffffff;
  padding: 0 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.16s ease;
}

.pagination-controls button:hover:not(:disabled),
.pagination-controls button.is-active {
  border-color: var(--naist);
  background: var(--naist);
  color: #ffffff;
}

.pagination-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.pagination-ellipsis {
  display: inline-flex;
  height: 38px;
  align-items: center;
  padding: 0 4px;
  color: #8d9097;
  font-size: 12px;
  font-weight: 900;
}

.product-load-more:hover span {
  color: rgba(255, 255, 255, 0.62);
}

.stock-row {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border: 1px solid #cfe9d7;
  background: #f2fbf5;
  padding: 0 10px;
  color: #156b32;
  font-size: 12px;
  font-weight: 950;
}

.stock-row.muted {
  border-color: #e0e0e2;
  background: #f7f7f8;
  color: #686b70;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stock-dot.in {
  background: #17a34a;
}

.stock-dot.factory {
  background: #9a9da3;
}

.check-stock-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 40px;
  border: 0;
  background: var(--naist);
  padding: 0 15px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  cursor: pointer;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.product-model-card:hover .check-stock-btn,
.product-model-card:focus-within .check-stock-btn,
.check-stock-btn:focus-visible {
  opacity: 1;
  outline: none;
  transform: translateY(0);
}

.check-stock-btn:active {
  transform: scale(0.96);
}

.product-table-block {
  scroll-margin-top: 96px;
  border-top: 3px solid #111111;
  padding-top: 34px;
}

.product-center-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: #f7f7f8;
  padding: 28px;
}

.exact-model-table {
  border-top: 0;
  padding-top: 0;
}

.table-title {
  margin: 0;
  color: #111111;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.05;
}

.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.exact-model-filter-row {
  flex-wrap: nowrap;
  margin-bottom: 24px;
}

.product-filter-input {
  position: relative;
  min-width: min(100%, 360px);
  flex: 1;
}

.product-filter-input input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0 16px 0 48px;
  color: #111111;
  font-size: 14px;
  font-weight: 850;
  outline: none;
}

.product-filter-input input:focus {
  border-color: var(--naist);
}

.stock-filter {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0 14px;
  color: #222222;
  font-size: 13px;
  font-weight: 950;
}

.stock-filter input {
  width: 17px;
  height: 17px;
  accent-color: var(--naist);
}

.product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

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

.product-table th {
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-table td {
  color: #25272b;
  font-size: 13px;
  font-weight: 750;
}

.oe-cell {
  display: flex;
  min-width: 210px;
  max-width: 330px;
  flex-direction: column;
  gap: 5px;
  line-height: 1.35;
}

.oe-cell strong {
  color: #111111;
  font-size: 14px;
  font-weight: 950;
}

.oe-cell span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(194, 0, 11, 0.2);
  background: rgba(194, 0, 11, 0.08);
  padding: 2px 7px;
  color: var(--naist);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oe-cell small {
  color: #70737b;
  font-size: 11px;
  font-weight: 750;
}

.product-table tbody tr {
  transition: background 0.15s ease;
}

.product-table tbody tr:hover {
  background: #fafafa;
}

.product-table tbody tr {
  scroll-margin-top: 110px;
}

.product-table input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--naist);
}

.table-stock {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe9d7;
  background: #f2fbf5;
  padding: 0 9px;
  color: #156b32;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.table-stock.factory {
  border-color: #dddddf;
  background: #f6f6f7;
  color: #686b70;
}

.add-inquiry-btn {
  min-height: 36px;
  border: 1px solid #111111;
  background: #ffffff;
  padding: 0 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.add-inquiry-btn:hover,
.add-inquiry-btn.is-added {
  border-color: var(--naist);
  background: var(--naist);
  color: #ffffff;
}

.add-inquiry-btn:active {
  transform: scale(0.96);
}

.inquiry-bar {
  position: static;
  z-index: 25;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid #222222;
  background: #111111;
  padding: 12px 14px 12px 20px;
  color: #ffffff;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.18);
  pointer-events: none;
}

.inquiry-bar strong {
  font-size: 15px;
  font-weight: 950;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inquiry-actions button {
  min-height: 46px;
  border: 0;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
  pointer-events: auto;
}

.inquiry-actions button:first-child {
  background: #ffffff;
  color: #111111;
}

.inquiry-actions button:last-child {
  background: var(--naist);
  color: #ffffff;
}

.inquiry-actions button:hover {
  filter: brightness(1.08);
}

.has-product-lightbox {
  overflow: hidden;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: zoom-out;
}

.product-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 980px);
  max-height: min(88vh, 760px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.48);
}

.product-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  background: #111111;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-lightbox-media {
  display: grid;
  min-height: 520px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    #f7f7f8;
  background-size: 34px 34px;
}

.product-lightbox-media img {
  width: 86%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(17, 17, 17, 0.18));
}

.product-lightbox-content {
  overflow-y: auto;
  padding: 54px 34px 34px;
}

.product-lightbox-content h3 {
  margin: 0 0 24px;
  color: #111111;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.05;
}

.product-lightbox-content dl {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.product-lightbox-content dl div {
  border: 1px solid var(--line);
  background: #fafafa;
  padding: 13px 14px;
}

.product-lightbox-content dt {
  margin: 0 0 5px;
  color: #8b8d92;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-lightbox-content dd {
  margin: 0;
  color: #22252a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.model-card,
.advantage-card {
  min-height: 220px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 28px;
  transition: 0.2s ease;
}

.model-card:hover,
.advantage-card:hover {
  border-color: #111111;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

.model-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  background: var(--ink);
  padding: 0 11px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card h3,
.advantage-card h3 {
  margin: 28px 0 12px;
  color: #111111;
  font-size: 25px;
  font-weight: 950;
}

.model-card p,
.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.equipment-row {
  display: grid;
  grid-template-columns: 106px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
}

.equipment-row strong {
  display: grid;
  min-height: 86px;
  place-items: center;
  background: #111111;
  color: #ffffff;
  font-size: 32px;
  font-weight: 950;
}

.equipment-row span {
  padding: 0 22px;
  color: #292b2f;
  font-weight: 850;
}

.factory-placeholder {
  position: relative;
  display: flex;
  min-height: 230px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid #d9d9dd;
  background: #161616;
  padding: 20px;
}

.factory-placeholder span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  background: #ffffff;
  padding: 10px 13px;
  color: #111111;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.factory-placeholder::before,
.factory-placeholder::after {
  position: absolute;
  content: "";
}

.factory-placeholder.press::before {
  inset: 42px 20% 70px;
  border: 16px solid #303030;
  border-bottom-width: 42px;
}

.factory-placeholder.press::after {
  right: 20%;
  bottom: 58px;
  left: 20%;
  height: 26px;
  background: var(--naist);
}

.factory-placeholder.spray {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #191919;
  background-size: 34px 34px;
}

.factory-placeholder.spray::before {
  top: 42px;
  left: 22%;
  width: 56%;
  height: 64px;
  border-top: 13px solid var(--naist);
  border-bottom: 13px solid var(--naist);
}

.factory-placeholder.spray::after {
  top: 112px;
  left: 18%;
  width: 64%;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 0 rgba(255, 255, 255, 0.12), 0 60px 0 rgba(255, 255, 255, 0.08);
}

.factory-placeholder.lab {
  background: radial-gradient(circle at 72% 28%, rgba(194, 0, 11, 0.34), transparent 20%), #151515;
}

.factory-placeholder.lab::before {
  top: 35px;
  left: 28px;
  width: 96px;
  height: 130px;
  border: 9px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px 8px 42px 42px;
}

.factory-placeholder.lab::after {
  top: 85px;
  right: 38px;
  width: 116px;
  height: 116px;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.factory-placeholder.pack {
  background: linear-gradient(135deg, #222222, #080808);
}

.factory-placeholder.pack::before {
  right: 52px;
  bottom: 74px;
  width: 128px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: -76px -32px 0 rgba(255, 255, 255, 0.06), -37px 35px 0 rgba(194, 0, 11, 0.5);
}

.advantage-card {
  min-height: 245px;
}

.advantage-card h3 {
  margin-top: 0;
}

.advantage-card::before {
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 26px;
  background: var(--naist);
  content: "";
}

.quality-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.quality-grid article,
.insight-grid article,
.faq-block {
  border: 1px solid var(--line);
  background: #ffffff;
}

.quality-grid article {
  min-height: 214px;
  padding: 26px;
}

.quality-grid span,
.insight-grid span {
  color: var(--naist);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.quality-grid h3,
.insight-grid h3,
.faq-block h3 {
  margin: 22px 0 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
}

.quality-grid p,
.insight-grid p,
.faq-list p {
  margin: 0;
  color: #666a72;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.7;
}

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

.insight-grid article {
  min-height: 292px;
  padding: 28px;
}

.insight-grid a {
  display: inline-flex;
  margin-top: 24px;
  color: #111111;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.insight-grid a:hover {
  color: var(--naist);
}

.faq-block {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 26px;
  margin-top: 16px;
  padding: 30px;
}

.faq-block h3 {
  margin-top: 8px;
  font-size: 32px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list details:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-list summary {
  color: #111111;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.cape-section .section-title {
  max-width: 600px;
}

.warehouse-proof {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
}

.warehouse-proof::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 58%);
  content: "";
  pointer-events: none;
}

.warehouse-photo {
  margin: 0;
}

.warehouse-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.warehouse-photo figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  background: rgba(17, 17, 17, 0.82);
  padding: 10px 12px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warehouse-photo-main {
  position: absolute;
  inset: 0;
}

.warehouse-photo-main img {
  object-position: center 58%;
}

.warehouse-photo-side {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  width: min(36%, 260px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 6px solid #111111;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.warehouse-photo-side figcaption {
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
}

.warehouse-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  max-width: 260px;
  border-left: 5px solid var(--naist);
  background: rgba(17, 17, 17, 0.86);
  padding: 16px 18px;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.warehouse-badge strong,
.warehouse-badge span {
  display: block;
}

.warehouse-badge strong {
  font-size: 18px;
  font-weight: 950;
}

.warehouse-badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111111;
  padding: 22px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  padding: 16px 18px;
  color: #111111;
  font-weight: 800;
  outline: none;
  transition: 0.18s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--naist);
  box-shadow: 0 0 0 3px rgba(194, 0, 11, 0.18);
}

.quote-form button {
  min-height: 58px;
  border: 0;
  background: var(--naist);
  color: #ffffff;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
}

.quote-form button:hover {
  background: #ff1b28;
}

.quote-form button:active {
  transform: scale(0.98);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 8px;
}

.floating-contact a,
.floating-contact button {
  min-width: 94px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111111;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: 0.18s ease;
}

.floating-contact a:first-child,
.floating-contact button:hover {
  background: var(--naist);
}

.bottom-proof {
  border-top: 1px solid #dfe1e5;
  background: #ffffff;
}

.bottom-proof-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 260px;
  align-items: center;
  gap: 38px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr) auto;
  margin: 0 auto;
  padding: 56px 0;
}

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

.proof-card {
  min-height: 138px;
  border: 1px solid #dfe1e5;
  border-radius: 16px;
  background: #ffffff;
  padding: 26px 22px;
  color: #161719;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
}

.proof-card.dark {
  border-color: #161719;
  background: #161719;
  color: #ffffff;
}

.proof-card strong {
  display: block;
  margin-top: 22px;
  font-size: 34px;
  font-weight: 950;
  line-height: 0.9;
}

.proof-card p {
  margin: 12px 0 0;
  color: #7c7f87;
  font-size: 14px;
  font-weight: 800;
}

.proof-card.dark p {
  color: #a6a8ae;
}

.proof-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.proof-icon.cube {
  border: 3px solid #202226;
  transform: rotate(30deg) skewY(-8deg);
}

.proof-icon.cube::before {
  position: absolute;
  inset: 4px;
  border-left: 2px solid #202226;
  border-top: 2px solid #202226;
  content: "";
}

.proof-icon.clock {
  border: 3px solid #202226;
  border-radius: 50%;
}

.proof-icon.clock::before,
.proof-icon.clock::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #202226;
  content: "";
  transform-origin: left center;
}

.proof-icon.clock::before {
  width: 7px;
  height: 2px;
  transform: translate(-1px, -1px);
}

.proof-icon.clock::after {
  width: 2px;
  height: 8px;
  transform: translate(-1px, -7px);
}

.proof-icon.check::before {
  position: absolute;
  top: 5px;
  left: 2px;
  width: 18px;
  height: 10px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  content: "";
  transform: rotate(-45deg);
}

.proof-copy h2 {
  margin: 0 0 10px;
  color: #202226;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
}

.proof-copy p {
  max-width: 520px;
  margin: 0;
  color: #7a7d84;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.factory-audit-btn {
  display: inline-flex;
  min-height: 58px;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe1e5;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 24px;
  color: #202226;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  transition: 0.18s ease;
}

.factory-audit-btn:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.bottom-legal {
  display: flex;
  width: min(1680px, calc(100% - 260px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  border-top: 1px solid #dfe1e5;
  color: #858891;
  font-size: 13px;
  font-weight: 800;
}

.bottom-legal p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-legal div {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  white-space: nowrap;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: min(380px, calc(100vw - 40px));
  border-left: 4px solid var(--naist);
  background: #111111;
  padding: 16px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .mobile-menu-toggle-injected {
    display: inline-flex;
  }

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

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

  .hero-pad-stage {
    min-height: 460px;
  }

  .bottom-proof-inner {
    grid-template-columns: 1fr;
  }

  .oem-service-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .factory-capacity-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .capacity-stat-grid,
  .factory-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-photo-grid {
    grid-template-columns: 1fr;
  }

  .factory-photo-card.large {
    grid-row: auto;
    min-height: 360px;
  }

  .factory-flow article:nth-child(2) {
    border-right: 0;
  }

  .factory-flow article:nth-child(2)::before {
    display: none;
  }

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

  .cooperation-panel,
  .faq-block,
  .subpage-head {
    grid-template-columns: 1fr;
  }

  .cooperation-steps,
  .insight-grid,
  .subpage-grid-3,
  .subpage-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-grid-2 {
    grid-template-columns: 1fr;
  }

  .factory-audit-btn {
    width: fit-content;
  }

  .bottom-legal {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .bottom-legal p {
    white-space: normal;
  }

  .bottom-legal div {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }

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

  .product-catalog-layout {
    grid-template-columns: 1fr;
  }

  .product-category-panel {
    position: static;
  }

  .product-category-panel h3 {
    padding: 18px 20px;
    font-size: 22px;
  }

  .product-category-list {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
  }

  .product-category-list button {
    min-width: 176px;
    border-right: 1px solid #e2e2e4;
    border-bottom: 0;
  }

  .product-catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .exact-model-hero .subpage-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .exact-search-card {
    width: 100%;
  }

  .product-lightbox-panel {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .product-lightbox-media {
    min-height: 340px;
  }

  .product-lightbox-content {
    padding: 28px 22px 24px;
  }

  .trust-bar article:nth-child(odd) {
    border-left: 1px solid #dedee2;
  }
}

@media (max-width: 640px) {
  .site-header img {
    width: 116px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-subline {
    font-size: 24px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-proof-tags {
    gap: 8px;
  }

  .hero-proof-tags span {
    flex: 1 1 auto;
    justify-content: center;
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero-pad-stage {
    width: 100%;
    min-height: 330px;
    margin-top: 4px;
  }

  .pad-float-wrap {
    width: 90%;
  }

  .hero-pad-label {
    right: 50%;
    bottom: 22px;
    width: min(92%, 330px);
    transform: translateX(50%);
  }

  .hero-pad-label strong {
    font-size: 12px;
  }

  .stock-search {
    padding: 6px;
  }

  .hero-actions-minimal {
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .video-frame {
    min-height: 218px;
  }

  .ceramic-pad {
    width: 78%;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .product-center-hero .subpage-hero-inner {
    gap: 18px;
    padding: 22px 0 34px;
  }

  .product-hero-scene {
    min-height: 254px;
  }

  .hilux-silhouette {
    left: -18px;
    right: -26px;
    bottom: 20px;
    height: 132px;
  }

  .hilux-wheel {
    width: 68px;
    height: 68px;
    border-width: 8px;
  }

  .front-brake-assembly {
    left: 10%;
    bottom: 29px;
    width: 54px;
    height: 54px;
  }

  .fitment-dot {
    left: 104px;
    top: -5px;
    width: 6px;
    height: 6px;
  }

  .fitment-line {
    left: 58px;
    width: 66px;
  }

  .fitment-line.line-top {
    top: -33px;
  }

  .fitment-line.line-bottom {
    top: -10px;
  }

  .exploded-pad-card {
    top: 42px;
    left: 43%;
    right: auto;
    width: 138px;
  }

  .exploded-pad-card img {
    padding: 9px 8px 7px;
  }

  .exploded-pad-card span {
    left: -30px;
    bottom: -34px;
    padding: 0;
    font-size: 9px;
  }

  .product-hero-scene::after {
    left: 35%;
    bottom: 6px;
    min-width: 132px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .product-center-hero .section-title {
    font-size: 30px;
  }

  .product-center-hero p:not(.section-kicker) {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .product-hero-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .product-hero-badges span {
    flex: 1 1 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
    text-align: center;
  }

  .exact-model-hero .subpage-hero-inner {
    padding: 40px 0;
  }

  .exact-model-copy .section-title {
    font-size: 36px;
  }

  .exact-model-hero p:not(.section-kicker) {
    font-size: 15px;
  }

  .exact-search-card {
    padding: 16px;
  }

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

  .exact-hero-search button {
    width: 100%;
  }

  .exact-stock-toggle strong {
    font-size: 12px;
  }

  .trust-bar article {
    min-height: 118px;
    padding: 24px 18px;
  }

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

  .product-model-card {
    min-height: 292px;
  }

  .brake-pad-shot {
    min-height: 136px;
  }

  .brake-pad-shot img {
    width: 92%;
    height: 104px;
  }

  .product-card-body {
    min-height: 164px;
    padding: 16px;
  }

  .product-card-body h3 {
    font-size: 18px;
  }

  .oe-line {
    font-size: 11px;
  }

  .stock-row {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  .check-stock-btn {
    position: static;
    width: 100%;
    margin-top: 12px;
    opacity: 1;
    transform: none;
  }

  .product-filter-row,
  .product-filter-input {
    width: 100%;
  }

  .exact-model-filter-row {
    flex-wrap: wrap;
  }

  .stock-filter {
    width: 100%;
  }

  .cape-stat-grid {
    grid-template-columns: 1fr;
  }

  .capacity-stat-grid,
  .factory-flow {
    grid-template-columns: 1fr;
  }

  .factory-photo-card,
  .factory-photo-card.large {
    min-height: 220px;
  }

  .factory-photo-card figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .factory-photo-card figcaption strong {
    max-width: none;
    text-align: left;
  }

  .capacity-stat-grid article {
    min-height: 112px;
  }

  .factory-flow article,
  .factory-flow article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dedfe3;
  }

  .factory-flow article:last-child {
    border-bottom: 0;
  }

  .factory-flow article::before {
    top: auto;
    right: auto;
    bottom: -11px;
    left: 30px;
    transform: rotate(135deg);
  }

  .factory-flow article:nth-child(2)::before {
    display: block;
  }

  .factory-flow article:last-child::before {
    display: none;
  }

  .factory-flow h3 {
    margin-top: 28px;
  }

  .service-line-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cooperation-panel {
    padding: 22px;
  }

  .cooperation-panel h3,
  .faq-block h3 {
    font-size: 26px;
  }

  .cooperation-steps,
  .quality-grid,
  .insight-grid,
  .subpage-grid-2,
  .subpage-grid-3,
  .subpage-grid-4 {
    grid-template-columns: 1fr;
  }

  .subpage-hero-inner,
  .subpage-section {
    width: min(100% - 28px, 1180px);
  }

  .subpage-hero-inner {
    min-height: 310px;
    padding: 48px 0;
  }

  .product-center-hero .subpage-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    align-items: start;
  }

  .product-hero-scene {
    order: -1;
    min-height: 330px;
  }

  .product-center-hero .section-title {
    font-size: 38px;
  }

  .product-hero-copy {
    border-left: 0;
    padding-left: 0;
  }

  .product-center-hero p:not(.section-kicker) {
    font-size: 16px;
  }

  .subpage-section {
    padding: 48px 0;
  }

  .subpage-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-card {
    padding: 22px;
  }

  .subpage-card img,
  .subpage-card video {
    height: 190px;
  }

  .product-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .pagination-status {
    white-space: normal;
  }

  .pagination-controls {
    justify-content: flex-start;
  }

  .pagination-controls button {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
  }

  .subpage-layout {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    gap: 26px;
    padding: 44px 0;
  }

  .page-sidebar {
    position: static;
  }

  .media-feature,
  .detail-list,
  .page-cta-band {
    grid-template-columns: 1fr;
  }

  .media-feature img,
  .media-feature video {
    min-height: 230px;
  }

  .media-feature-copy {
    padding: 24px;
  }

  .content-block > h2 {
    font-size: 34px;
  }

  .page-cta-band {
    padding: 24px;
  }

  .page-cta-band .subpage-cta {
    width: 100%;
    margin-top: 0;
  }

  .quality-grid article,
  .insight-grid article {
    min-height: auto;
    padding: 22px;
  }

  .faq-block {
    padding: 22px;
  }

  .floating-contact {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: #111111;
  }

  .floating-contact a,
  .floating-contact button {
    min-width: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 11px;
    font-size: 10px;
    box-shadow: none;
  }

  .service-line-card,
  .process-grid article {
    min-height: auto;
    padding: 23px;
  }

  .service-line-card h3,
  .process-grid h3 {
    margin-top: 28px;
    font-size: 24px;
  }

  .inquiry-bar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .inquiry-actions,
  .inquiry-actions button {
    width: 100%;
  }

  .bottom-proof-inner {
    width: min(100% - 28px, 1180px);
    padding: 34px 0;
  }

  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 118px;
    border-radius: 14px;
    padding: 22px;
  }

  .proof-card strong {
    margin-top: 18px;
    font-size: 31px;
  }

  .bottom-legal {
    width: min(100% - 28px, 1840px);
    font-size: 13px;
  }

  .bottom-legal div {
    gap: 12px;
  }

  .model-card,
  .advantage-card {
    min-height: auto;
    padding: 23px;
  }

  .factory-placeholder {
    min-height: 175px;
  }

  .equipment-row {
    grid-template-columns: 84px 1fr;
  }

  .equipment-row strong {
    min-height: 78px;
    font-size: 26px;
  }

  .equipment-row span {
    padding: 0 16px;
    font-size: 14px;
  }

  .warehouse-proof {
    min-height: 380px;
  }

  .warehouse-photo-main img {
    object-position: center 52%;
  }

  .warehouse-photo-side {
    right: 14px;
    bottom: 14px;
    width: 34%;
    min-width: 112px;
    border-width: 4px;
  }

  .warehouse-badge {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 13px 14px;
  }

  .warehouse-photo figcaption {
    padding: 8px 9px;
    font-size: 9px;
  }
}
