@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,400;0,600;0,800;1,800&display=swap");

:root {
  --navy: #0d2e6e;
  --blue: #009eea;
  --green: #6bd12f;
  --dark: #02070d;
  --ink: #06111f;
  --panel: rgba(4, 18, 34, 0.82);
  --panel-strong: rgba(3, 14, 27, 0.94);
  --line: rgba(0, 158, 234, 0.28);
  --line-strong: rgba(0, 158, 234, 0.54);
  --white: #ffffff;
  --gray: #b7c3d1;
  --muted: #77889b;
  --shadow-blue: 0 0 30px rgba(0, 158, 234, 0.28);
  --shadow-green: 0 0 30px rgba(107, 209, 47, 0.34);
  --section-x: clamp(32px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 9%, rgba(0, 158, 234, 0.2), transparent 32rem),
    linear-gradient(180deg, #02070d 0%, #041426 45%, #02070d 100%);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 120px 0 auto 0;
  height: 900px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.55) 38%, rgba(2, 7, 13, 0.92) 100%),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") center top / cover no-repeat;
  opacity: 0.55;
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-shell {
  width: 100%;
  max-width: var(--site-max-width, 1680px);
  margin-inline: auto;
  padding-left: var(--site-padding-desktop, 48px);
  padding-right: var(--site-padding-desktop, 48px);
}

.parts-page,
main {
  width: 100%;
}

.corp-header,
.parts-header {
  position: sticky;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 158, 234, 0.24);
  background: rgba(2, 7, 13, 0.96);
  backdrop-filter: blur(16px);
  animation: headerDrop 520ms ease both;
}

.corp-header {
  top: 0;
}

.parts-header {
  top: 74px;
  z-index: 39;
  background: rgba(3, 12, 22, 0.95);
}

.corp-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.parts-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(420px, 840px) minmax(96px, auto);
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.corp-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.corp-logo-link img {
  width: clamp(128px, 12vw, 166px);
}

.corp-nav,
.parts-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 27px);
  min-width: 0;
}

.corp-nav {
  margin-left: auto;
}

.corp-nav a,
.parts-nav a,
.footer-col a,
.footer-col span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
  white-space: nowrap;
}

.corp-nav a:hover,
.parts-nav a:hover,
.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--green);
  text-shadow: 0 0 14px rgba(107, 209, 47, 0.5);
}

.corp-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}

.phone-link {
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.quote-btn,
.quote-outline-btn,
.cart-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 0 22px;
  color: #06110a;
  background: linear-gradient(135deg, #7de13b, #57c91d);
  box-shadow: 0 0 0 rgba(107, 209, 47, 0);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quote-btn:hover,
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.quote-outline-btn {
  color: var(--white);
  background: rgba(2, 7, 13, 0.44);
  border-color: rgba(255, 255, 255, 0.28);
}

.quote-outline-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 158, 234, 0.9);
  box-shadow: var(--shadow-blue);
}

.mobile-toggle,
.store-menu-toggle,
.icon-link,
.thumb-arrow,
.thumb-btn,
.quantity-control button,
.tab-btn,
.disclaimer-toggle {
  background: transparent;
  color: currentColor;
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
}

.mobile-toggle span,
.store-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.parts-left {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
  flex: 0 0 auto;
}

.store-menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--white);
}

.parts-nav {
  margin-left: 0;
  gap: clamp(22px, 2.8vw, 38px);
}

.store-search {
  width: 100%;
  max-width: 840px;
  justify-self: center;
}

.store-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.search-box {
  position: relative;
  flex: none;
  min-width: 220px;
}

.search-box input {
  width: 100%;
  height: 52px;
  padding: 0 54px 0 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  outline: none;
  background: rgba(2, 7, 13, 0.48);
  font-size: 15px;
  font-style: italic;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 158, 234, 0.18), var(--shadow-blue);
}

.search-box svg,
.icon-link svg,
.trust-feature-row svg,
.stock-row svg,
.value-card svg,
.print-match svg,
.quote-outline-btn svg,
.cart-btn svg,
.thumb-arrow svg,
.disclaimer-toggle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-box svg {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
}

.icon-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  transition: color 180ms ease, transform 180ms ease;
}

.icon-link:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.breadcrumbs strong {
  color: var(--green);
  font-weight: 400;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.84fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: 28px;
}

.product-gallery,
.purchase-panel,
.product-tabs,
.value-card,
.print-match,
.direct-shield-promo,
.disclaimer {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(3, 16, 31, 0.88), rgba(2, 7, 13, 0.76));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.product-gallery {
  border-radius: 8px;
  padding: 18px 18px 22px;
}

.main-image-card {
  position: relative;
  min-height: clamp(470px, 46vw, 690px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(0, 158, 234, 0.24);
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.18), rgba(2, 7, 13, 0.08)),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") center / cover no-repeat;
}

.main-image-card::after,
.direct-shield-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.12) 47%, transparent 62%);
  transform: translateX(-120%);
  animation: sweep 7s ease-in-out infinite;
}

.main-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  animation: imageReveal 740ms ease both;
}

.thumbnail-strip {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.thumb-arrow {
  width: 32px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--green);
  transition: transform 180ms ease, filter 180ms ease;
}

.thumb-arrow:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(107, 209, 47, 0.7));
}

.thumb-btn {
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  padding: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: thumbIn 520ms ease forwards;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.thumb-btn:nth-child(2) {
  animation-delay: 70ms;
}

.thumb-btn:nth-child(3) {
  animation-delay: 140ms;
}

.thumb-btn:nth-child(4) {
  animation-delay: 210ms;
}

.thumb-btn:nth-child(5) {
  animation-delay: 280ms;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover,
.thumb-btn.is-active {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(107, 209, 47, 0.34), var(--shadow-green);
}

.purchase-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 85% 63%, rgba(107, 209, 47, 0.16), transparent 18rem),
    radial-gradient(circle at 10% 10%, rgba(0, 158, 234, 0.12), transparent 18rem),
    rgba(3, 16, 31, 0.72);
  animation-delay: 140ms;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 12px;
  color: var(--green);
  border: 1px solid rgba(107, 209, 47, 0.72);
  border-radius: 4px;
  background: rgba(107, 209, 47, 0.07);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(107, 209, 47, 0.16);
}

.purchase-panel h1 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

.purchase-panel h1 span {
  display: block;
}

.product-summary,
.overview-copy p,
.returns-card p,
.disclaimer-content p {
  color: var(--gray);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.78;
}

.product-summary {
  margin: 28px 0 24px;
  max-width: 560px;
}

.neon-divider {
  height: 1px;
  margin: 0 0 26px;
  background: linear-gradient(90deg, var(--green), rgba(0, 158, 234, 0.75), transparent);
}

.price-block {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.price-block strong {
  font-size: clamp(56px, 5.4vw, 82px);
  line-height: 0.9;
  font-weight: 800;
}

.price-block span,
.stock-row,
.trust-feature-row h2,
.value-card h2,
.support-card h2,
.support-card span,
.footer-col h2,
.tab-btn,
.disclaimer-toggle {
  font-family: "Bebas Neue", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-block span {
  color: var(--gray);
  font-size: 21px;
}

.stock-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 22px;
}

.stock-row svg {
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 2px solid var(--green);
  border-radius: 999px;
  filter: drop-shadow(0 0 11px rgba(107, 209, 47, 0.55));
}

.purchase-actions {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.quantity-control {
  height: 74px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: rgba(2, 7, 13, 0.5);
  overflow: hidden;
}

.quantity-control button,
.quantity-control output {
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
}

.quantity-control button:hover {
  color: var(--green);
}

.cart-btn {
  min-height: 74px;
  border: 0;
  font-size: 22px;
}

.cart-btn svg,
.quote-outline-btn svg {
  width: 28px;
  height: 28px;
}

.purchase-panel > .quote-outline-btn {
  width: 100%;
  min-height: 74px;
  font-size: 22px;
}

.print-match {
  position: relative;
  overflow: hidden;
  margin: 8px auto 22px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 55%, rgba(107, 209, 47, 0.17), transparent 20rem),
    linear-gradient(145deg, rgba(3, 16, 31, 0.9), rgba(2, 7, 13, 0.84));
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.print-match::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 18%, rgba(0, 158, 234, 0.13) 45%, rgba(107, 209, 47, 0.12) 54%, transparent 72%),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") right center / 62% auto no-repeat;
  opacity: 0.36;
  transition: opacity 180ms ease;
}

.print-match:hover,
.print-match.is-open {
  border-color: rgba(107, 209, 47, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 30px rgba(107, 209, 47, 0.18);
}

.print-match:hover::before,
.print-match.is-open::before {
  opacity: 0.52;
}

.print-match-toggle {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  padding: 20px clamp(20px, 3vw, 34px);
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
}

.print-match-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(107, 209, 47, 0.64);
  border-radius: 999px;
  background: rgba(107, 209, 47, 0.08);
  filter: drop-shadow(0 0 15px rgba(107, 209, 47, 0.55));
}

.print-match-title,
.print-match-cta,
.match-group legend,
.shield-feature-grid span {
  font-family: "Bebas Neue", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.print-match-title {
  font-size: clamp(24px, 2vw, 34px);
  white-space: nowrap;
}

.print-match-copy {
  max-width: 640px;
  color: var(--gray);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.print-match-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #06110a;
  border-radius: 4px;
  background: linear-gradient(135deg, #7de13b, #57c91d);
  font-size: clamp(15px, 1.2vw, 18px);
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.print-match-toggle:hover .print-match-cta {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.print-match-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green);
  transition: transform 220ms ease;
}

.print-match-arrow svg {
  width: 28px;
  height: 28px;
}

.print-match.is-open .print-match-arrow {
  transform: rotate(180deg);
}

.print-match-panel {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}

.print-match.is-open .print-match-panel {
  max-height: 820px;
  opacity: 1;
}

.print-match-grid {
  display: grid;
  gap: 24px;
  padding: 0 clamp(20px, 3vw, 34px) 28px;
  border-top: 1px solid rgba(0, 158, 234, 0.2);
}

.match-group {
  min-width: 0;
  padding: 24px 0 0;
  margin: 0;
  border: 0;
}

.match-group legend {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
}

.match-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 11px 14px;
}

.match-chip-grid-wide {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.match-chip {
  position: relative;
  min-width: 0;
}

.match-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.match-chip span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px 8px 36px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(2, 7, 13, 0.42);
  font-size: 14px;
  line-height: 1.25;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.match-chip span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 3px;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.match-chip:hover span,
.match-chip input:focus-visible + span {
  border-color: rgba(107, 209, 47, 0.62);
  color: var(--white);
}

.match-chip input:checked + span {
  color: var(--white);
  border-color: rgba(107, 209, 47, 0.86);
  background: rgba(107, 209, 47, 0.13);
  box-shadow: 0 0 18px rgba(107, 209, 47, 0.18);
}

.match-chip input:checked + span::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 12px rgba(107, 209, 47, 0.55);
}

.print-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}

.print-match-actions .quote-btn,
.print-match-actions .quote-outline-btn {
  min-height: 54px;
}

.trust-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  padding: 22px 0 46px;
}

.trust-feature-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.trust-feature-row svg {
  width: 40px;
  height: 40px;
  color: var(--green);
  filter: drop-shadow(0 0 11px rgba(107, 209, 47, 0.48));
}

.trust-feature-row h2 {
  margin: 0 0 3px;
  font-size: 19px;
}

.trust-feature-row p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.product-tabs {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96), rgba(2, 7, 13, 0.62), rgba(2, 7, 13, 0.94)),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") right bottom / 70% auto no-repeat;
}

.tab-list,
.tab-panels {
  position: relative;
  z-index: 1;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  position: relative;
  min-height: 70px;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  transition: color 180ms ease, background 180ms ease;
}

.tab-btn + .tab-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  transform: scaleX(0);
  background: var(--green);
  box-shadow: 0 0 18px rgba(107, 209, 47, 0.62);
  transition: transform 180ms ease;
}

.tab-btn:hover,
.tab-btn.is-active {
  color: var(--white);
  background: rgba(0, 158, 234, 0.08);
}

.tab-btn.is-active::after {
  transform: scaleX(1);
}

.tab-panels {
  padding: clamp(32px, 5vw, 54px);
}

.tab-pane {
  animation: tabIn 260ms ease both;
}

.tab-pane.is-active {
  display: grid;
}

#tab-overview {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

  .overview-copy p {
    margin: 0 0 30px;
    overflow-wrap: anywhere;
  }

.check-list {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--white);
  font-size: 16px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(107, 209, 47, 0.35);
}

.overview-image {
  width: 100%;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.spec-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
}

.spec-table div + div {
  border-top: 1px solid rgba(0, 158, 234, 0.18);
}

.spec-table strong,
.spec-table span {
  padding: 18px 22px;
}

.spec-table strong {
  color: var(--green);
  background: rgba(0, 158, 234, 0.08);
}

.spec-table span {
  color: var(--gray);
}

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

.compatible-grid article {
  min-height: 140px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(2, 7, 13, 0.58);
}

.compatible-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 26px;
}

.compatible-grid p {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.manual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.manual-actions .quote-btn,
.manual-actions .quote-outline-btn {
  min-height: 56px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0;
}

.value-card {
  min-height: 300px;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 46px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 209, 47, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), var(--shadow-green);
}

.value-card svg {
  width: 64px;
  height: 64px;
  color: var(--green);
  filter: drop-shadow(0 0 16px rgba(107, 209, 47, 0.6));
}

.value-card h2 {
  margin: 25px 0 18px;
  color: var(--green);
  font-size: 27px;
}

.value-card p {
  margin: 0 0 28px;
  color: var(--gray);
  line-height: 1.72;
}

.value-card a,
.returns-card a,
.green-link {
  color: var(--green);
  font-weight: 800;
}

.value-card a {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.direct-shield-promo {
  position: relative;
  min-height: clamp(260px, 22vw, 340px);
  overflow: hidden;
  display: grid;
  align-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #041426;
}

.direct-shield-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.08) 0%, rgba(2, 7, 13, 0.18) 40%, rgba(2, 7, 13, 0.88) 65%, rgba(2, 7, 13, 0.97) 100%),
    radial-gradient(circle at 84% 40%, rgba(107, 209, 47, 0.15), transparent 18rem);
}

.direct-shield-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.82;
}

.direct-shield-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 48%);
  margin-left: auto;
  padding: clamp(32px, 4vw, 54px);
}

.direct-shield-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.92;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.direct-shield-copy h2 span,
.direct-shield-copy h2 strong {
  display: block;
}

.direct-shield-copy h2 strong {
  color: var(--green);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(107, 209, 47, 0.3);
}

.direct-shield-copy > p {
  max-width: 560px;
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.55;
}

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

.shield-feature-grid article {
  position: relative;
  min-width: 0;
  padding-left: 24px;
}

.shield-feature-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(107, 209, 47, 0.5);
}

.shield-feature-grid span {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.shield-feature-grid p {
  margin: 3px 0 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.35;
}

.direct-shield-copy .quote-btn {
  width: fit-content;
  min-height: 50px;
}

.disclaimer {
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 8px;
}

.disclaimer-toggle {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: var(--white);
  font-size: 22px;
}

.disclaimer-toggle svg {
  transition: transform 180ms ease;
}

.disclaimer.is-open .disclaimer-toggle svg {
  transform: rotate(180deg);
}

.disclaimer-content {
  border-top: 1px solid var(--line);
  padding: 22px 30px 28px;
}

.disclaimer-content p {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.parts-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 13, 24, 0.98);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.35fr) repeat(5, minmax(120px, 0.75fr));
  gap: clamp(28px, 4vw, 64px);
  padding: 58px 0 42px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 270px;
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

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

.social-row a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 209, 47, 0.5);
  border-radius: 999px;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 18px;
}

.footer-col a,
.footer-col span {
  color: var(--gray);
  font-size: 15px;
  text-transform: none;
  font-family: "Inter", Arial, sans-serif;
  white-space: normal;
}

.contact-col {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 12px;
  text-transform: none;
  font-family: "Inter", Arial, sans-serif;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-clicked {
  animation: clickedPulse 420ms ease;
}

[hidden] {
  display: none !important;
}

@keyframes headerDrop {
  from {
    transform: translateY(-18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes sweep {
  0%,
  54% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes thumbIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clickedPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1250px) {
  .corp-nav,
  .parts-nav {
    gap: 15px;
  }

  .parts-inner {
    grid-template-columns: minmax(190px, auto) minmax(360px, 1fr) minmax(92px, auto);
    gap: 22px;
  }

  .match-chip-grid-wide {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .match-chip-grid {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }

  .direct-shield-copy {
    width: min(680px, 54%);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }
}

@media (max-width: 1040px) {
  :root {
    --section-x: 24px;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .corp-inner {
    flex-wrap: wrap;
  }

  .corp-nav {
    order: 5;
    width: 100%;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 0 18px;
  }

  .corp-nav.is-open {
    display: grid;
  }

  .corp-actions {
    margin-left: auto;
  }

  .parts-header {
    top: 74px;
  }

  .parts-inner {
    display: grid;
    grid-template-columns: minmax(210px, auto) minmax(280px, 1fr) minmax(92px, auto);
    padding-block: 14px;
    gap: 18px;
  }

  .parts-nav {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    padding: 8px 0;
  }

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

  .purchase-panel {
    max-width: none;
  }

  .print-match-toggle {
    grid-template-columns: auto 1fr auto;
  }

  .print-match-copy,
  .print-match-cta {
    grid-column: 1 / -1;
  }

  .print-match-cta {
    width: fit-content;
  }

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

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

  #tab-overview {
    grid-template-columns: 1fr;
  }

  .compatible-grid,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .direct-shield-copy {
    width: min(680px, 62%);
  }

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

@media (max-width: 760px) {
  :root {
    --section-x: 16px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell {
    width: 100%;
    max-width: var(--site-max-width, 1680px);
    margin-inline: auto;
    padding-inline: var(--site-padding-mobile, 18px);
  }

  .corp-inner,
  .parts-inner {
    min-height: auto;
    padding-block: 14px;
    gap: 14px;
  }

  .parts-header {
    top: 72px;
  }

  .corp-logo-link img {
    width: 126px;
  }

  .corp-actions {
    width: 100%;
    flex: 1 1 100%;
    justify-content: space-between;
    min-width: 0;
  }

  .corp-nav {
    grid-template-columns: 1fr 1fr;
  }

  .parts-left {
    width: auto;
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }

  .parts-nav {
    gap: 14px;
    padding: 0;
  }

  .parts-nav a {
    font-size: 14px;
  }

  .parts-inner {
    grid-template-columns: auto 1fr auto;
  }

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

  .store-icons {
    grid-column: 3;
    grid-row: 1;
    gap: 10px;
  }

  .search-box {
    min-width: 0;
  }

  .breadcrumbs {
    overflow: hidden;
  }

  .breadcrumbs strong {
    overflow-wrap: anywhere;
  }

  .product-gallery,
  .purchase-panel,
  .product-tabs,
  .value-card,
  .print-match,
  .direct-shield-promo,
  .disclaimer {
    min-width: 0;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    padding-top: 24px;
  }

  .product-gallery {
    padding: 12px;
  }

  .main-image-card {
    min-height: 360px;
  }

  .thumbnail-strip {
    grid-template-columns: 28px 1fr 28px;
    gap: 8px;
  }

  .thumbnail-row {
    gap: 8px;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(78px, 1fr));
    padding-bottom: 4px;
  }

  .purchase-panel h1 {
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .product-summary {
    font-size: 16px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .check-list li {
    overflow-wrap: anywhere;
  }

  .price-block strong {
    font-size: 54px;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .quantity-control,
  .cart-btn,
  .purchase-panel > .quote-outline-btn {
    min-height: 62px;
  }

  .trust-feature-row {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .trust-feature-row article {
    justify-content: flex-start;
  }

  .tab-list {
    display: flex;
    overflow-x: auto;
  }

  .tab-btn {
    min-width: 190px;
  }

  .tab-panels {
    padding: 28px 20px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

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

  .value-card {
    min-height: auto;
  }

  .print-match {
    margin-bottom: 18px;
  }

  .print-match.is-open .print-match-panel {
    max-height: 1800px;
  }

  .print-match-toggle {
    min-height: auto;
    grid-template-columns: auto 1fr auto;
    padding: 18px;
  }

  .print-match-title {
    white-space: normal;
  }

  .print-match-copy {
    font-size: 14px;
  }

  .print-match-cta,
  .print-match-actions .quote-btn,
  .print-match-actions .quote-outline-btn {
    width: 100%;
  }

  .print-match-grid {
    padding: 0 18px 22px;
  }

  .match-chip-grid,
  .match-chip-grid-wide {
    grid-template-columns: 1fr;
  }

  .direct-shield-promo {
    min-height: auto;
  }

  .direct-shield-promo::before {
    background:
      linear-gradient(180deg, rgba(2, 7, 13, 0.05) 0%, rgba(2, 7, 13, 0.48) 38%, rgba(2, 7, 13, 0.96) 100%),
      radial-gradient(circle at 56% 68%, rgba(107, 209, 47, 0.15), transparent 16rem);
  }

  .direct-shield-visual {
    position: relative;
    height: 230px;
    object-position: left center;
  }

  .direct-shield-copy {
    width: 100%;
    margin-left: 0;
    padding: 24px 20px 28px;
  }

  .shield-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .quote-btn,
  .quote-outline-btn {
    width: 100%;
    min-width: 0;
  }

  .corp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .corp-nav,
  .parts-nav {
    grid-template-columns: 1fr;
  }

  .parts-nav {
    gap: 12px;
  }

  .main-image-card {
    min-height: 300px;
  }

  .purchase-panel {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding: 26px 22px;
  }

  .product-gallery,
  .product-tabs,
  .print-match,
  .direct-shield-promo,
  .disclaimer {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .purchase-panel h1 {
    font-size: 35px;
  }

  .promo-badge {
    font-size: 16px;
  }

  .price-block strong {
    font-size: 50px;
  }

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

  .shield-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared full-width product detail shell alignment. */
:root {
  --site-max-width: 1680px;
  --site-padding-desktop: 48px;
  --site-padding-tablet: 28px;
  --site-padding-mobile: 18px;
}

.site-shell,
.site-container,
.page-container,
.section-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

.text-measure {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .site-shell,
  .site-container,
  .page-container,
  .section-container {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

@media (max-width: 640px) {
  .site-shell,
  .site-container,
  .page-container,
  .section-container {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}
