* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f1f1f;
  line-height: 1.6;
}

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

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

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

/* =========================
   TOPBAR / HEADER
========================= */

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.08rem;
  color: #222222;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
}

.brand span {
  color: #d60000;
  font-weight: 900;
  font-size: 1.28em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact {
  color: #666666;
  font-size: 0.95rem;
}

/* =========================
   GLOBAL BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
  font-size: 1rem;
}

.btn-primary {
  background: #d60000;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(214, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #b80000;
}

.btn-secondary {
  border: 1px solid #cfcfcf;
  background: rgba(255,255,255,0.9);
  color: #222222;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* =========================
   MAIN PAGE HERO
========================= */

.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.28) 45%, rgba(255,255,255,0.12) 100%),
    url("../img/site/hero-bg.jpg") center center / cover no-repeat;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0 80px;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid #efc4c4;
  border-radius: 999px;
  color: #9f0000;
  background: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 0.98rem;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  color: #111111;
  max-width: 640px;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 700px;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-box {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
}

.hero-box h2 {
  margin: 0 0 16px;
  color: #d60000;
  font-size: 1.8rem;
}

.hero-box ul {
  margin: 0;
  padding-left: 20px;
}

.hero-box li {
  margin-bottom: 10px;
  color: #2d2d2d;
}

/* =========================
   GLOBAL SECTION LAYOUT
========================= */

.section {
  padding: 88px 0;
}

.light-section {
  background: #f8f8f8;
}

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

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #111111;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: #666666;
  font-size: 1.08rem;
}

/* =========================
   MAIN PAGE VEHICLE CARDS
========================= */

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

.card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.2;
  color: #111111;
}

.card-body p {
  color: #666666;
  line-height: 1.65;
  margin: 0 0 16px;
}

.card-body a {
  font-weight: 700;
  color: #d60000;
  display: inline-block;
}

.card-body a:hover {
  color: #a90000;
}

/* =========================
   FEATURE BLOCKS
========================= */

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

.feature-box {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.feature-box h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #111111;
}

.feature-box p {
  margin: 0;
  color: #666666;
  line-height: 1.65;
}

/* =========================
   CONTACT BLOCK
========================= */

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

.contact-box h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.1;
  color: #111111;
}

.contact-left p,
.contact-right p {
  margin: 0 0 10px;
  color: #333333;
}

.social-row {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-label {
  font-weight: 700;
  color: #333333;
  margin-right: 4px;
}

.social-badge {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.social-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  opacity: 0.95;
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.social-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}


/* =========================
   FOOTER
========================= */

.footer {
  border-top: 1px solid #e7e7e7;
  padding: 28px 0 40px;
  background: #ffffff;
  color: #666666;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-size: 0.96rem;
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #555555;
  font-weight: 700;
}

.footer-legal a:hover {
  color: #d60000;
}

/* =========================
   GLOBAL VEHICLE SUBPAGES
========================= */

.vehicle-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vehicle-hero-overlay {
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.34) 48%, rgba(255,255,255,0.10) 100%);
}

.vehicle-hero-inner {
  padding: 72px 0 64px;
  max-width: 760px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #d60000;
  font-weight: 700;
}

.vehicle-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111111;
  max-width: 720px;
}

.vehicle-hero p {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  color: #333333;
  line-height: 1.7;
}

.vehicle-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.vehicle-section {
  padding: 80px 0;
}

.vehicle-section-light {
  background: #f8f8f8;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.vehicle-card,
.vehicle-spec-card,
.vehicle-gallery-card,
.vehicle-video-card,
.vehicle-cta-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.vehicle-card h2,
.vehicle-spec-card h2,
.vehicle-gallery-card h2,
.vehicle-video-card h2,
.vehicle-cta-card h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.1;
  color: #111111;
}

.vehicle-card p,
.vehicle-video-card p,
.vehicle-cta-card p {
  margin: 0 0 14px;
  color: #444444;
  line-height: 1.75;
}

.vehicle-spec-list {
  display: grid;
  gap: 14px;
}

.vehicle-spec-item {
  padding: 14px 16px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fcfcfc;
}

.vehicle-spec-item strong {
  display: block;
  color: #111111;
  margin-bottom: 4px;
}

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vehicle-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  background: #f3f3f3;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.vehicle-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.vehicle-video-wrap video {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #ececec;
  background: #000000;
}

.vehicle-cta-card {
  text-align: center;
}

.vehicle-price-line {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
}

.vehicle-status {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.vehicle-status-new {
  background: #edf8ed;
  color: #187a2f;
  border: 1px solid #cfe9d3;
}

.vehicle-status-used {
  background: #fff5e8;
  color: #a45a00;
  border: 1px solid #f1d7b3;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: 100%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  padding: 72px 0 88px;
}

.legal-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.legal-card h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.legal-card h2 {
  margin: 32px 0 14px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #111111;
}

.legal-card p,
.legal-card li {
  color: #444444;
  line-height: 1.8;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
}

.legal-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8e8;
  border: 1px solid #f1deae;
  color: #6d5400;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .hero-inner,
  .contact-box,
  .vehicle-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 64px;
    gap: 32px;
  }

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

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .hero-inner {
    padding: 52px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-box {
    padding: 24px;
  }

  .section,
  .vehicle-section,
  .legal-page {
    padding: 64px 0;
  }

  .card-grid,
  .feature-grid,
  .vehicle-gallery-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

  .card-body,
  .feature-box,
  .contact-box,
  .vehicle-card,
  .vehicle-spec-card,
  .vehicle-gallery-card,
  .vehicle-video-card,
  .vehicle-cta-card,
  .legal-card {
    padding: 22px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .feature-box h3 {
    font-size: 1.25rem;
  }

  .contact-box h2,
  .vehicle-card h2,
  .vehicle-spec-card h2,
  .vehicle-gallery-card h2,
  .vehicle-video-card h2,
  .vehicle-cta-card h2 {
    font-size: 1.8rem;
  }

  .social-row {
    gap: 8px;
  }

  .social-badge {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
  }

  .vehicle-hero-inner {
    padding: 52px 0 46px;
  }

  .vehicle-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .footer-grid {
    align-items: flex-start;
  }
}

/* =========================================================
   ISUZUALKATRESZ.HU V0.1 — MIHI DESIGN SYSTEM EXTENSION
   White / black / grey / red, based on the shared MIHI CSS.
========================================================= */

:root {
  --mihi-red: #d60000;
  --mihi-red-dark: #a90000;
  --mihi-black: #111111;
  --mihi-grey-900: #222222;
  --mihi-grey-700: #4d4d4d;
  --mihi-grey-500: #747474;
  --mihi-grey-300: #d9d9d9;
  --mihi-grey-100: #f4f4f4;
  --mihi-white: #ffffff;
  --header-height: 72px;
}

body {
  min-width: 320px;
}

body.is-menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--mihi-black);
  color: var(--mihi-white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

/* NEW GLOBAL HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 700;
  line-height: 1;
}

.site-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-brand-mark {
  color: var(--mihi-red);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.site-brand-text {
  color: var(--mihi-grey-900);
  font-size: 1rem;
  white-space: nowrap;
}

.header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #111;
}

.main-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav-item {
  position: relative;
}

.main-nav-link {
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1d1d1d;
  font-weight: 700;
  font-size: 0.96rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.main-nav-link:hover,
.main-nav-link.is-active,
.main-nav-item.is-open > .main-nav-link {
  color: var(--mihi-red);
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 8px);
  left: -18px;
  min-width: 270px;
  padding: 10px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  box-shadow: 0 22px 45px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.main-nav-item.is-open .dropdown-panel,
.main-nav-item:hover .dropdown-panel,
.main-nav-item:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
  font-weight: 700;
}

.dropdown-link:hover,
.dropdown-link.is-active {
  color: #fff;
  background: rgba(214,0,0,0.88);
}

/* PARTS HOMEPAGE HERO */
.parts-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 46%, rgba(255,255,255,0.42) 72%, rgba(255,255,255,0.12) 100%),
    radial-gradient(circle at 82% 28%, rgba(214,0,0,0.24), transparent 27%),
    linear-gradient(135deg, #f7f7f7 0%, #dedede 100%);
}

.parts-hero::after {
  content: "ISUZU";
  position: absolute;
  right: -0.03em;
  bottom: -0.28em;
  color: rgba(17,17,17,0.035);
  font-size: clamp(7rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.parts-hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100vh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: 56px;
  padding: 92px 0 82px;
}

.parts-hero-copy {
  max-width: 760px;
}

.parts-hero h1 {
  margin: 0 0 22px;
  max-width: 760px;
  color: #111;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.parts-hero-lead {
  margin: 0;
  max-width: 710px;
  color: #383838;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.parts-hero-panel {
  background: rgba(17,17,17,0.94);
  color: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 24px 52px rgba(0,0,0,0.20);
}

.parts-hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.parts-hero-panel p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
}

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

.parts-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,0.92);
}

.parts-check-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--mihi-red);
  box-shadow: 0 0 0 5px rgba(214,0,0,0.16);
}

.parts-search-wrap {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.parts-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}

.parts-search-card label {
  grid-column: 1 / -1;
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
}

.parts-search-input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  background: #fafafa;
  color: #111;
  outline: none;
}

.parts-search-input:focus {
  border-color: var(--mihi-red);
  box-shadow: 0 0 0 4px rgba(214,0,0,0.10);
  background: #fff;
}

.parts-search-help {
  grid-column: 1 / -1;
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

.parts-section-kicker {
  margin: 0 0 10px;
  color: var(--mihi-red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

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

.parts-category-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.parts-category-card:hover {
  transform: translateY(-4px);
  border-color: #d0d0d0;
  box-shadow: 0 20px 42px rgba(0,0,0,0.085);
}

.parts-category-card::after {
  content: attr(data-code);
  position: absolute;
  right: -10px;
  bottom: -42px;
  color: rgba(17,17,17,0.045);
  font-size: 8.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.parts-category-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 1.65rem;
  line-height: 1.13;
}

.parts-category-card p {
  margin: 0 0 24px;
  max-width: 92%;
  color: #646464;
}

.parts-category-link {
  position: relative;
  z-index: 1;
  color: var(--mihi-red);
  font-weight: 800;
}

.parts-category-link::after {
  content: " →";
}

.parts-dark-section {
  background: #111;
  color: #fff;
}

.parts-dark-section .section-header h2,
.parts-dark-section .section-header p {
  color: #fff;
}

.parts-dark-section .section-header p {
  color: rgba(255,255,255,0.68);
}

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

.parts-process-item {
  border-top: 2px solid rgba(255,255,255,0.16);
  padding: 22px 0 0;
}

.parts-process-number {
  display: block;
  margin-bottom: 14px;
  color: var(--mihi-red);
  font-weight: 900;
  font-size: 1.2rem;
}

.parts-process-item h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.parts-process-item p {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

.parts-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.parts-trust-item {
  padding: 26px;
  border-right: 1px solid #e7e7e7;
}

.parts-trust-item:last-child {
  border-right: 0;
}

.parts-trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: #111;
  font-size: 1.4rem;
}

.parts-trust-item span {
  color: #6a6a6a;
}

.parts-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: stretch;
}

.parts-content-card,
.parts-cta-card {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 32px;
  background: #fff;
}

.parts-content-card h2,
.parts-cta-card h2 {
  margin-top: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.parts-content-card p,
.parts-cta-card p {
  color: #555;
}

.parts-cta-card {
  background: #f6f6f6;
}

.parts-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.parts-contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #dfdfdf;
  border-radius: 14px;
  background: #fff;
  font-weight: 800;
}

.parts-contact-list a:hover {
  border-color: var(--mihi-red);
  color: var(--mihi-red);
}

/* SEARCH PAGE */
.search-page-hero,
.contact-page-hero {
  padding: 76px 0 56px;
  background: linear-gradient(135deg, #f7f7f7, #e8e8e8);
  border-bottom: 1px solid #dedede;
}

.search-page-hero h1,
.contact-page-hero h1 {
  margin: 8px 0 16px;
  color: #111;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.search-result-shell {
  padding: 32px;
  border: 1px solid #e4e4e4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.055);
}

.search-query-display {
  margin: 18px 0;
  padding: 15px 18px;
  border-left: 4px solid var(--mihi-red);
  background: #f7f7f7;
  color: #333;
}

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

.contact-direct-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
}

.contact-direct-card span {
  display: block;
  margin-bottom: 6px;
  color: #777;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-direct-card a,
.contact-direct-card strong {
  color: #111;
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-direct-card a:hover {
  color: var(--mihi-red);
}

.contact-map-frame {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 22px;
}

/* GLOBAL FOOTER */
.site-footer {
  background: #111;
  color: #fff;
  padding: 56px 0 24px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 36px;
  padding-bottom: 36px;
}

.site-footer .site-brand-text {
  color: #fff;
}

.site-footer p {
  color: rgba(255,255,255,0.64);
}

.footer-heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.74);
}

.footer-links a:hover {
  color: #fff;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .header-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav-list {
    display: block;
    padding: 14px 16px 24px;
  }

  .main-nav-link {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
  }

  .dropdown-panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
  }

  .main-nav-item:hover .dropdown-panel,
  .main-nav-item:focus-within .dropdown-panel {
    display: none;
  }

  .main-nav-item.is-open .dropdown-panel {
    display: block;
  }

  .parts-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 0 90px;
  }

  .parts-hero-panel {
    max-width: 700px;
  }

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

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

  .parts-trust-item:nth-child(2) {
    border-right: 0;
  }

  .parts-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid #e7e7e7;
  }

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

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
  }

  .header-row {
    min-height: var(--header-height);
  }

  .site-brand-logo {
    width: 34px;
    height: 34px;
  }

  .site-brand-text {
    display: none;
  }

  .parts-hero-inner {
    padding: 58px 0 84px;
    gap: 34px;
  }

  .parts-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .parts-hero-panel {
    padding: 24px;
  }

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

  .parts-search-card .btn {
    width: 100%;
    text-align: center;
  }

  .parts-category-grid,
  .parts-process-grid,
  .parts-trust-strip,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .parts-trust-item,
  .parts-trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
  }

  .parts-trust-item:last-child {
    border-bottom: 0;
  }

  .parts-content-card,
  .parts-cta-card,
  .search-result-shell {
    padding: 24px;
  }

  .site-footer-bottom {
    display: grid;
  }
}

/* =========================
   PARTS SEO CONTENT EXTENSIONS
========================= */

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

.parts-topic-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.035);
}

.parts-topic-card h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 1.2rem;
  line-height: 1.2;
}

.parts-topic-card p {
  margin: 0;
  color: #626262;
}

.parts-number-example {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.parts-number-example code {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #f7f7f7;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
}

.parts-number-example span {
  color: var(--mihi-red);
  font-weight: 900;
}

.parts-keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.parts-keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 800;
}

.parts-faq-wrap {
  max-width: 980px;
}

.parts-faq-list {
  display: grid;
  gap: 12px;
}

.parts-faq-list details {
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  background: #ffffff;
}

.parts-faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: #111111;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.parts-faq-list summary::-webkit-details-marker {
  display: none;
}

.parts-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--mihi-red);
  font-size: 1.5rem;
  line-height: 1;
}

.parts-faq-list details[open] summary::after {
  content: "–";
}

.parts-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #5c5c5c;
}

@media (max-width: 1024px) {
  .parts-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .parts-topic-grid {
    grid-template-columns: 1fr;
  }

  .parts-topic-card {
    min-height: 0;
  }
}


/* =========================
   HUB BETA COMPONENTS
========================= */
.hub-hero{background:linear-gradient(135deg,#0f0f10 0%,#242426 65%,#d60000 160%);color:#fff;padding:88px 0 76px}
.hub-hero .breadcrumb{color:#c9c9c9;margin-bottom:18px;font-size:.92rem}.hub-hero .breadcrumb a{color:#fff;font-weight:800}
.hub-hero-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr);gap:44px;align-items:center}
.hub-hero h1{font-size:clamp(2.6rem,5vw,4.8rem);line-height:1;margin:0 0 22px;letter-spacing:-.035em}.hub-hero p{font-size:1.1rem;color:#e2e2e2;max-width:800px}
.hub-hero-card{background:#fff;color:#1b1b1b;border-radius:20px;padding:28px;box-shadow:0 20px 45px rgba(0,0,0,.22)}
.hub-hero-card h2{margin-top:0}.hub-hero-card ul{margin:0;padding-left:20px}.hub-hero-card li+li{margin-top:8px}
.hub-cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}.btn-dark{background:#111;color:#fff}.btn-dark:hover{background:#2b2b2b}
.hub-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.hub-card{border:1px solid #e4e4e4;border-radius:18px;padding:26px;background:#fff;box-shadow:0 10px 24px rgba(0,0,0,.035)}.hub-card h3{margin:0 0 10px}.hub-card p{color:#5d5d5d}.hub-card a{color:#d60000;font-weight:900}
.lead-band{background:#111;color:#fff;border-radius:24px;padding:34px;display:grid;grid-template-columns:1.3fr .7fr;gap:28px;align-items:center}.lead-band h2{margin:0 0 12px}.lead-band p{color:#d0d0d0}
.crosslink-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.crosslink-card{border-radius:20px;padding:28px;border:1px solid #ddd;background:#fff}.crosslink-card.is-shop{border-top:5px solid #d60000}.crosslink-card.is-service{border-top:5px solid #111}
.hub-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 24px;margin:20px 0 0;padding:0;list-style:none}.hub-list li{padding:12px 14px;border:1px solid #e5e5e5;border-radius:12px;background:#fafafa}
.beta-note{font-size:.86rem;color:#707070;margin-top:16px}
@media(max-width:900px){.hub-hero-grid,.lead-band{grid-template-columns:1fr}.hub-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:650px){.hub-grid,.crosslink-grid,.hub-list{grid-template-columns:1fr}.hub-hero{padding:64px 0}.hub-hero-card,.lead-band{padding:24px}}


/* ==========================================================
   VISUAL PARTS UPGRADE v0.4.0-beta.1
   Real uploaded Isuzu product images; no generated imagery.
========================================================== */

.parts-hero-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(34px, 5vw, 72px);
}

.parts-hero-showcase {
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 16%, rgba(214, 0, 0, .14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,247,247,.94));
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
  overflow: hidden;
  isolation: isolate;
}

.parts-hero-showcase::before {
  content: "ISUZU";
  position: absolute;
  right: -2%;
  top: 1%;
  z-index: -1;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: rgba(214,0,0,.055);
  letter-spacing: -.06em;
}

.parts-hero-showcase-main {
  margin: 0;
  position: absolute;
  inset: 22px 18px 92px 18px;
  display: grid;
  place-items: center;
}

.parts-hero-showcase-image {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.14));
}

.parts-hero-showcase-minis {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.parts-hero-showcase-mini {
  width: 112px;
  height: 82px;
  margin: 0;
  padding: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,.1);
}

.parts-hero-showcase-mini-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.parts-hero-identification {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  width: min(270px, calc(100% - 280px));
  padding: 17px 18px;
  border-radius: 17px;
  color: #fff;
  background: rgba(17,17,17,.92);
  box-shadow: 0 15px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.parts-hero-identification h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.parts-hero-identification ul {
  margin: 0;
  padding-left: 17px;
  font-size: .78rem;
  line-height: 1.45;
  color: #ddd;
}

.parts-card-media,
.hub-card-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(214,0,0,.07), transparent 36%),
    #fafafa;
  border: 1px solid #eeeeee;
}

.parts-card-media {
  margin: -1px -1px 18px;
  height: 145px;
  border-radius: 16px 16px 12px 12px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.parts-card-media-model { height: 165px; }
.parts-card-media-topic { height: 128px; }

.parts-card-image,
.hub-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}

.parts-category-card:hover .parts-card-image,
.parts-topic-card:hover .parts-card-image,
.hub-card:hover .hub-card-image {
  transform: scale(1.045);
}

.parts-category-card,
.parts-topic-card,
.hub-card {
  overflow: hidden;
}

.hub-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(34px, 5vw, 68px);
}

.hub-hero-visual {
  position: relative;
  min-height: 470px;
  padding: 18px 18px 128px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(214,0,0,.18), transparent 36%),
    linear-gradient(145deg,#fff,#f5f5f5);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  overflow: hidden;
}

.hub-hero-main {
  height: 315px;
  margin: 0;
  display: grid;
  place-items: center;
}

.hub-hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.15));
}

.hub-hero-thumbs {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, 104px);
  gap: 10px;
}

.hub-hero-thumb {
  margin: 0;
  height: 90px;
  padding: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.hub-hero-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hub-hero-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 260px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(17,17,17,.93);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,.2);
}

.hub-hero-note h2 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.hub-hero-note ul {
  margin: 0;
  padding-left: 17px;
  color: #d8d8d8;
  font-size: .78rem;
  line-height: 1.4;
}

.hub-card-media {
  height: 155px;
  margin: -26px -26px 20px;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 18px 18px 10px 10px;
}

.hub-photo-section {
  background: linear-gradient(180deg,#fff,#f7f7f7);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.hub-photo-grid,
.visual-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.hub-photo-card,
.visual-catalog-card {
  margin: 0;
  min-width: 0;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.055);
}

.hub-photo-image,
.visual-catalog-image {
  width: 100%;
  height: 235px;
  padding: 18px;
  object-fit: contain;
  background: #fbfbfb;
}

.hub-photo-card figcaption,
.visual-catalog-card figcaption {
  padding: 14px 16px 17px;
  color: #333;
  font-weight: 800;
  line-height: 1.35;
  border-top: 1px solid #eee;
}

.visual-catalog-section {
  background: #111;
  color: #fff;
}

.visual-catalog-section .section-header p { color: #d0d0d0; }
.visual-catalog-section .parts-section-kicker { color: #ff5656; }
.visual-catalog-card { border-color: #2d2d2d; }
.visual-catalog-card figcaption { color: #fff; background: #171717; border-top-color: #2d2d2d; }

@media (max-width: 1020px) {
  .parts-hero-inner,
  .hub-hero-grid {
    grid-template-columns: 1fr;
  }
  .parts-hero-showcase,
  .hub-hero-visual {
    min-height: 455px;
  }
}

@media (max-width: 760px) {
  .hub-photo-grid,
  .visual-catalog-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .parts-hero-identification,
  .hub-hero-note {
    width: calc(100% - 36px);
    right: 18px;
    bottom: 18px;
  }
  .parts-hero-showcase,
  .hub-hero-visual {
    padding-bottom: 156px;
  }
  .parts-hero-showcase-minis,
  .hub-hero-thumbs {
    top: 18px;
    right: 18px;
    bottom: auto;
  }
  .parts-hero-showcase-mini { width: 84px; height: 66px; }
  .hub-hero-thumbs { grid-template-columns: repeat(2,82px); }
  .hub-hero-thumb { height: 70px; }
}

@media (max-width: 540px) {
  .hub-photo-grid,
  .visual-catalog-grid {
    grid-template-columns: 1fr;
  }
  .parts-hero-showcase,
  .hub-hero-visual {
    min-height: 420px;
  }
  .parts-hero-showcase-main { inset: 74px 12px 150px; }
  .hub-hero-main { height: 235px; margin-top: 52px; }
  .hub-photo-image,
  .visual-catalog-image { height: 210px; }
}
