
* { 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, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

/* =========================
   GLOBAL HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .26s ease, box-shadow .22s ease, border-color .22s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 12px 26px rgba(0,0,0,.08); border-bottom-color: rgba(0,0,0,.06); }
.header-row { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 28px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: .42rem; color: #222; white-space: nowrap; line-height: 1; }
.brand-logo { width: 38px; height: 38px; flex: 0 0 auto; object-fit: contain; display: block; }
.site-header .brand-logo { width: 38px; height: 38px; }
.brand-mark { color: #d60000; font-weight: 900; font-size: 1.58rem; letter-spacing: .015em; text-transform: uppercase; }
.brand-domain { color: #222; font-weight: 900; font-size: 1.18rem; }
.main-nav { flex: 1 1 auto; display: flex; justify-content: flex-end; }
.main-nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.main-nav-item { position: relative; }
.main-nav-link {
  display: inline-flex; align-items: center; gap: 7px; min-height: 42px;
  color: #222; font-weight: 700; font-size: .95rem; background: none; border: 0; cursor: pointer; padding: 0;
  transition: color .18s ease;
}
.main-nav-link:hover, .main-nav-link.is-active, .main-nav-item.is-open > .main-nav-link { color: #d60000; }
.main-nav-caret { font-size: .7em; transform: translateY(1px); }
.dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #111; color: #fff; border-radius: 16px; padding: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,.22); opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.main-nav-item.is-open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: 10px 12px; border-radius: 10px; color: rgba(255,255,255,.88); font-weight: 700; font-size: .92rem; }
.dropdown-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.header-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: #111; color: #fff; align-items: center; justify-content: center; cursor: pointer; }
.header-toggle span { width: 20px; height: 2px; background: currentColor; display: block; position: relative; }
.header-toggle span::before, .header-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; }
.header-toggle span::before { top: -7px; } .header-toggle span::after { top: 7px; }

/* =========================
   BUTTONS
========================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 14px; font-weight: 800; transition: .2s ease; font-size: 1rem; border: 0; cursor: pointer; }
.btn-primary { background: #d60000; color: #fff; box-shadow: 0 10px 22px rgba(214,0,0,.18); }
.btn-primary:hover { background: #b80000; transform: translateY(-1px); }
.btn-secondary { border: 1px solid #cfcfcf; background: rgba(255,255,255,.92); color: #222; }
.btn-secondary:hover { background: #f5f5f5; transform: translateY(-1px); }

/* =========================
   HERO
========================= */
.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.62) 42%, rgba(255,255,255,.20) 100%),
    url("/assets/img/site/hero-bg.jpg") center center / cover no-repeat;
  min-height: 56vh; display: flex; align-items: center;
}
.hero-subpage { min-height: 48vh; }
.hero-inner { display: grid; grid-template-columns: 1fr; align-items: center; padding: 92px 0 78px; }
.hero-panel { max-width: 760px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.48); border-radius: 24px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 18px 46px rgba(0,0,0,.11); backdrop-filter: blur(9px); }
.hero-home .hero-panel { max-width: 690px; }
.hero-panel-compact { max-width: 680px; }
.eyebrow, .section-kicker { display: inline-block; color: #a40000; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.eyebrow { margin: 0 0 18px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid #efc4c4; }
.hero h1 { margin: 0 0 18px; font-size: clamp(2.1rem, 4.5vw, 4.2rem); line-height: 1.02; color: #111; letter-spacing: -.04em; max-width: 820px; }
.hero p { max-width: 720px; color: #1f1f1f; font-size: 1.08rem; line-height: 1.65; margin: 0; font-weight: 500; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-focus-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-focus-list a { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px; background: rgba(17,17,17,.90); color: #fff; font-weight: 850; font-size: .92rem; line-height: 1.1; transition: background .18s ease, transform .18s ease; }
.hero-focus-list a:hover { background: #d60000; transform: translateY(-1px); }
.light-breadcrumb { margin-bottom: 18px; }
.breadcrumb { color: #696969; font-size: .92rem; margin-bottom: 18px; }
.breadcrumb a { color: #d60000; font-weight: 800; }

/* =========================
   SECTIONS / CARDS
========================= */
.section { padding: 88px 0; }
.light-section { background: #f8f8f8; }
.section-header { margin-bottom: 34px; max-width: 840px; }
.section-header.center-text { margin-left: auto; margin-right: auto; text-align: center; }
.center-text { text-align: center; }
.section-header h2, .two-col h2, .content-card h2, .related-links-box h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; color: #111; letter-spacing: -.02em; }
.section-header p, .two-col p, .content-card p, .feature-box p, .brand-card p { color: #555; font-size: 1.05rem; }
.landing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.landing-card, .feature-box, .brand-card, .info-card, .content-card, .contact-box, .part-card, .related-links-box { border: 1px solid #e8e8e8; background: #fff; border-radius: 24px; box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.landing-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.landing-card:hover, .brand-card:hover, .part-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,.10); }
.landing-card-body { padding: 32px; }
.landing-card-kicker, .part-card-kicker { color: #d60000; font-weight: 900; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.landing-card h3, .feature-box h3, .brand-card h3, .part-card h3 { margin: 0 0 14px; color: #111; font-size: 1.45rem; line-height: 1.14; }
.landing-card p { color: #555; min-height: 128px; }
.landing-links { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid-compact { grid-template-columns: repeat(3, 1fr); }
.feature-box { padding: 28px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: 32px; align-items: start; }
.info-card { padding: 28px; border-left: 5px solid #d60000; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brand-card { padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
.brand-card > span { display: inline-flex; margin-bottom: 10px; font-weight: 900; color: #d60000; text-transform: uppercase; font-size: .80rem; letter-spacing: .04em; }
.brand-card a { color: #d60000; font-weight: 900; }
.part-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.part-card { display: grid; grid-template-columns: 210px 1fr; gap: 22px; padding: 18px; align-items: center; transition: transform .2s ease, box-shadow .2s ease; }
.part-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; background: #eee; }
.contact-box { display: grid; grid-template-columns: 1fr .8fr; gap: 34px; padding: 38px; align-items: center; }
.contact-left h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.contact-right { background: #111; color: #fff; border-radius: 20px; padding: 26px; }
.contact-right p { margin: 0 0 8px; color: rgba(255,255,255,.86); }
.contact-right a { color: #fff; font-weight: 700; }

/* =========================
   PRODUCT PAGE
========================= */
.product-hero { background: #f5f5f5; padding: 72px 0; }
.product-hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 38px; align-items: center; }
.product-badge { display: inline-flex; background: #111; color: #fff; border-radius: 999px; padding: 7px 13px; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; }
.product-hero h1 { margin: 0 0 18px; font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 1.02; letter-spacing: -.03em; }
.product-lead { color: #444; font-size: 1.12rem; line-height: 1.75; max-width: 760px; }
.product-meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0 0; }
.product-meta-grid div { background: #fff; border: 1px solid #e5e5e5; border-radius: 16px; padding: 16px; }
.product-meta-grid span { display: block; color: #777; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.product-meta-grid strong { display: block; color: #111; margin-top: 5px; font-size: 1.05rem; }
.product-main-image { border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 54px rgba(0,0,0,.18); }
.product-main-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-content-grid { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
.content-card { padding: 34px; }
.content-card-dark { background: #111; color: #fff; border-color: #111; }
.content-card-dark p, .content-card-dark h2 { color: #fff; }
.check-list { margin: 18px 0 0; padding-left: 0; list-style: none; }
.check-list li { margin-bottom: 10px; padding-left: 26px; position: relative; color: #444; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #d60000; font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-grid button { border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 36px rgba(0,0,0,.10); }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.related-links-box { padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.related-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.related-links-grid a { display: block; background: #111; color: #fff; padding: 14px 16px; border-radius: 14px; font-weight: 900; }
.related-links-grid a:hover { background: #d60000; }

/* =========================
   LEGAL
========================= */
.legal-page { background: #f7f7f7; padding: 64px 0 88px; }
.legal-wrap { max-width: 980px; }
.legal-card { background: #fff; border: 1px solid #e6e6e6; border-radius: 24px; padding: clamp(26px, 5vw, 52px); box-shadow: 0 18px 44px rgba(0,0,0,.06); }
.legal-card h1 { margin: 0 0 22px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.03em; }
.legal-card h2 { margin-top: 34px; margin-bottom: 10px; color: #111; font-size: 1.45rem; }
.legal-card p, .legal-card li, .legal-note { color: #444; line-height: 1.8; }
.legal-note { margin-top: 28px; padding: 18px; background: #f7f7f7; border-left: 4px solid #d60000; border-radius: 12px; }

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #111111;
  color: #ffffff;
}
.footer-main {
  padding: 46px 0 42px;
  background: #101010;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .95fr;
  gap: 36px;
  align-items: start;
}
.footer-brand-col p {
  max-width: 420px;
}
.site-footer .brand {
  margin-bottom: 16px;
  gap: .72rem;
  align-items: center;
}
.site-footer .footer-brand {
  display: inline-flex;
  min-height: 54px;
}
.site-footer .brand-logo,
.site-footer .footer-brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.25));
}
.site-footer .brand-mark {
  color: #ffffff;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: .025em;
}
.site-footer .brand-domain {
  color: #ffffff;
}
.footer-col h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #ffffff;
}
.footer-col p,
.footer-col a {
  color: rgba(255,255,255,.72);
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  transition: color .18s ease;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-social-block {
  margin-top: 24px;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border-radius: 999px;
  background: #d60000;
  color: #ffffff !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 20px rgba(214,0,0,.18);
}
.footer-social-link:hover {
  background: #b80000;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(214,0,0,.24);
}
.footer-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.footer-bottom {
  background: #171b21;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  font-size: .92rem;
  color: rgba(255,255,255,.70);
}
.footer-bottom-copy {
  white-space: nowrap;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer-legal a,
.footer-legal button {
  color: rgba(255,255,255,.78);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  transition: color .18s ease;
}
.footer-legal a:hover,
.footer-legal button:hover {
  color: #ffffff;
}
/* =========================
   COOKIE + LIGHTBOX
========================= */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 2000; display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-banner-inner { width: min(920px, 100%); margin: 0 auto; background: #111; color: #fff; border-radius: 22px; padding: 20px; display: grid; grid-template-columns: 1fr auto; gap: 18px; box-shadow: 0 22px 60px rgba(0,0,0,.30); }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.78); }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cookie-actions button { border: 0; border-radius: 12px; padding: 11px 15px; font-weight: 900; cursor: pointer; }
.cookie-accept { background: #d60000; color: #fff; }
.cookie-reject { background: rgba(255,255,255,.12); color: #fff; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.82); display: none; align-items: center; justify-content: center; z-index: 2200; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 1100px; width: 100%; }
.lightbox-image { max-height: 86vh; margin: 0 auto; border-radius: 16px; }
.lightbox-close { position: absolute; top: -16px; right: -16px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; color: #111; font-size: 28px; cursor: pointer; }

@media (max-width: 1080px) {
  .header-toggle { display: inline-flex; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; background: #fff; border-bottom: 1px solid #e8e8e8; box-shadow: 0 18px 36px rgba(0,0,0,.10); }
  .site-header.is-menu-open .main-nav { display: block; }
  .main-nav-list { display: block; padding: 14px 0; }
  .main-nav-link { width: 100%; justify-content: space-between; padding: 0 16px; }
  .dropdown-panel { position: static; min-width: 0; box-shadow: none; border-radius: 12px; margin: 4px 16px 10px; display: none; opacity: 1; visibility: visible; transform: none; }
  .main-nav-item.is-open .dropdown-panel { display: block; }
  .landing-grid, .brand-grid, .feature-grid, .feature-grid-compact, .product-hero-inner, .two-col, .product-content-grid, .related-links-box, .footer-grid { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
  .part-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1200px); }
  .header-row { min-height: 64px; }
  .brand-logo, .site-header .brand-logo { width: 32px; height: 32px; }
  .brand-mark { font-size: 1.34rem; }
  .brand-domain { font-size: 1rem; }
  .hero { min-height: 0; }
  .hero-inner { padding: 52px 0; }
  .hero-panel { padding: 24px; border-radius: 22px; }
  .hero h1, .product-hero h1 { font-size: 2.25rem; }
  .section { padding: 58px 0; }
  .part-card { grid-template-columns: 1fr; }
  .product-meta-grid, .gallery-grid, .related-links-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { grid-template-columns: 1fr; }
}


/* =========================
   PARTS HUB EXTENDED CONTENT
========================= */
.parts-highlight-card ul,
.compact-check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.compact-check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #444444;
  line-height: 1.55;
}

.compact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d60000;
  font-weight: 900;
}

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

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #222222;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.045);
}

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

.category-card {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.category-card h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 1.25rem;
  line-height: 1.2;
}

.category-card p {
  margin: 0;
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .parts-quality-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-cloud {
    justify-content: flex-start;
  }

  .brand-cloud span {
    font-size: 0.86rem;
    padding: 8px 11px;
  }

  .category-card {
    padding: 22px;
  }
}


/* =========================
   OEM SEARCH
========================= */

.search-hero {
  padding: 132px 0 72px;
  background:
    linear-gradient(135deg, rgba(15, 15, 18, 0.90), rgba(15, 15, 18, 0.70)),
    radial-gradient(circle at top right, rgba(214, 0, 0, 0.22), transparent 36%),
    #17171a;
  color: #ffffff;
}

.search-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: end;
}

.search-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.search-hero .breadcrumb,
.search-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.oem-search-strip {
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.oem-search-form label {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.oem-search-form p {
  margin: 0;
  color: #666666;
  font-size: 0.95rem;
}

.search-page-form {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.search-page-form p {
  color: rgba(255, 255, 255, 0.76);
}

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

.search-input-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #161616;
  font-weight: 800;
  letter-spacing: 0.01em;
  outline: none;
}

.search-input-row input:focus {
  border-color: #d60000;
  box-shadow: 0 0 0 4px rgba(214, 0, 0, 0.12);
}

.search-input-row .btn {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-empty-state,
.search-hit-state {
  margin-bottom: 26px;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.search-empty-state h2,
.search-hit-state h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.search-empty-state p,
.search-hit-state p {
  max-width: 850px;
  color: #555555;
}

.search-empty-state.is-no-result {
  border-left: 5px solid #d60000;
}

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

.search-result-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.search-result-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 16px;
  background: #eeeeee;
}

.search-result-card h3 {
  margin: 5px 0 4px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.search-result-card p {
  margin: 0 0 10px;
  color: #555555;
}

.search-result-title {
  color: #111111 !important;
  font-weight: 900;
}

.search-result-kicker,
.search-result-aliases {
  font-size: 0.83rem;
  font-weight: 800;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-result-aliases {
  text-transform: none;
  letter-spacing: 0;
  color: #777777 !important;
}

.search-fallback {
  margin-top: 34px;
}

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

.search-suggestion-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.search-suggestion-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d60000;
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-suggestion-card h3 {
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.search-suggestion-card p {
  color: #555555;
}

.search-suggestion-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .search-hero-inner,
  .search-panel,
  .search-results-grid,
  .search-suggestion-grid {
    grid-template-columns: 1fr;
  }

  .search-hero {
    padding-top: 112px;
  }
}

@media (max-width: 680px) {
  .search-panel,
  .search-page-form,
  .search-empty-state,
  .search-hit-state {
    padding: 18px;
    border-radius: 20px;
  }

  .search-input-row {
    flex-direction: column;
  }

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

  .search-result-card img {
    height: 210px;
  }
}


/* OEM search placement refinements */
.product-oem-search-strip {
  padding-top: 34px;
  padding-bottom: 34px;
}

.product-oem-search-strip .search-panel {
  border-left: 5px solid #d60000;
}

@media (max-width: 680px) {
  .product-oem-search-strip {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}


/* =========================
   OEM BRAND GROUPS v1.61
========================= */
.part-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.part-brand-badge,
.product-brand-link,
.search-brand-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.part-brand-badge:hover,
.product-brand-link:hover,
.search-brand-badge:hover {
  background: #d60000;
  transform: translateY(-1px);
}

.part-card-meta .part-card-kicker {
  margin-bottom: 0;
}

.brand-card-link {
  display: block;
  margin-bottom: 8px;
}

.brand-card-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.brand-card-parts a,
.brand-part-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff4f4;
  color: #d60000;
  font-weight: 900;
  font-size: 0.86rem;
}

.brand-card-parts a:hover,
.brand-part-chip:hover {
  background: #d60000;
  color: #ffffff;
}

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

.brand-filter-card {
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.045);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-filter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.brand-filter-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d60000;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brand-filter-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.brand-filter-card p {
  margin: 0;
  color: #555555;
  font-size: 0.95rem;
}

.brand-count-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #333333;
  font-weight: 800;
  font-size: 0.82rem;
}

.brand-page-summary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.brand-page-note {
  border: 1px solid #e8e8e8;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.brand-page-note h2 {
  margin: 0 0 12px;
}

.brand-page-note p {
  color: #555555;
}

@media (max-width: 980px) {
  .brand-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-page-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-filter-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   OEM CARD ROTATION
========================= */

.part-card-grid.is-oem-rotated,
.brand-filter-grid.is-oem-rotated {
  animation: oemCardsReady 0.18s ease-out both;
}

@keyframes oemCardsReady {
  from {
    opacity: 0.94;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .footer-bottom-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer-bottom-copy {
    white-space: normal;
  }
  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* =========================
   HERO HTML + CSS ALIGNMENT v1.115
   Cél: minden normál aloldali hero ugyanarra a HTML + CSS rendszerre dolgozzon.
   Közös alap: hero hero-subpage hero-standard + hero-panel hero-panel-compact.
   Az oldal-specifikus class csak funkciót adhat, alap hero-magasságot, címsor-méretet és panel-szélességet nem.
========================= */
:root {
  --mihi-hero-bg-height: 54vh;
  --mihi-hero-bg-min-px: 500px;
  --mihi-hero-bg-max-px: 610px;
  --mihi-hero-inner-y: clamp(54px, 6.2vw, 82px);
  --mihi-hero-panel-max: 760px;
  --mihi-hero-panel-compact-max: 690px;
  --mihi-hero-panel-padding: clamp(28px, 3.0vw, 38px);
  --mihi-hero-title: clamp(2.45rem, 4.45vw, 4.15rem);
  --mihi-hero-title-subpage: clamp(2.35rem, 4.05vw, 4.00rem);
  --mihi-hero-lead-size: 1.05rem;
  --mihi-hero-lead-line: 1.58;
}

.hero.hero-standard,
.hero-home.hero-standard,
.hero-subpage.hero-standard {
  min-height: clamp(var(--mihi-hero-bg-min-px), var(--mihi-hero-bg-height), var(--mihi-hero-bg-max-px)) !important;
  display: flex !important;
  align-items: center !important;
}

.hero-standard .hero-inner {
  padding-top: var(--mihi-hero-inner-y) !important;
  padding-bottom: var(--mihi-hero-inner-y) !important;
  align-items: center !important;
}

.hero-standard .hero-panel {
  max-width: var(--mihi-hero-panel-max) !important;
  padding: var(--mihi-hero-panel-padding) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(255, 255, 255, 0.54) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.11) !important;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

/* A compact panel most már nem csak a főoldalon érvényes, hanem minden olyan HTML oldalon,
   ahol a kódban ténylegesen hero-panel-compact szerepel. */
.hero-standard .hero-panel-compact {
  max-width: var(--mihi-hero-panel-compact-max) !important;
}

.hero-standard h1 {
  margin: 0 0 16px !important;
  font-size: var(--mihi-hero-title-subpage) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.04em !important;
  color: #111111 !important;
  max-width: 820px !important;
}

.hero-home.hero-standard h1 {
  font-size: var(--mihi-hero-title) !important;
}

.hero-standard .hero-panel > p:not(.eyebrow) {
  font-size: var(--mihi-hero-lead-size) !important;
  line-height: var(--mihi-hero-lead-line) !important;
  font-weight: 500 !important;
  max-width: 720px !important;
}

.hero-standard .breadcrumb {
  margin-bottom: 14px !important;
  font-size: 0.92rem !important;
}

.hero-standard .eyebrow {
  margin: 0 0 16px !important;
  padding: 8px 16px !important;
  font-size: 0.82rem !important;
}

.hero-standard .hero-buttons,
.hero-standard .hero-focus-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 24px !important;
  align-items: stretch !important;
}

.hero-standard .hero-buttons .btn,
.hero-standard .hero-focus-list a {
  min-height: 46px !important;
  padding: 11px 17px !important;
  border-radius: 13px !important;
  font-size: 0.93rem !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

/* Alkatrész oldal: csak a panelen belüli kereső kap saját szabályt.
   Nincs külön hero-magasság, nincs külön h1-méret, nincs külön hero-panel-wide. */
.parts-landing-hero .hero-search-card {
  position: static !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
  padding: 14px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(214, 0, 0, 0.14) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
}

.hero-search-form {
  margin: 0 !important;
  gap: 9px !important;
}

.hero-search-form label {
  font-size: 0.92rem !important;
  font-weight: 950 !important;
  color: #111111 !important;
}

.hero-search-card .search-input-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  margin: 0 !important;
}

.hero-search-card .search-input-row input {
  min-height: 50px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(214, 0, 0, 0.34) !important;
  padding-left: 18px !important;
  font-size: 0.96rem !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.hero-search-card .search-input-row .btn {
  min-height: 50px !important;
  border-radius: 14px !important;
  padding-inline: 28px !important;
  font-size: 0.96rem !important;
  box-shadow: 0 13px 26px rgba(214, 0, 0, 0.22) !important;
}

.parts-hero-proof,
.parts-search-hint {
  display: none !important;
}

.parts-lower-search-strip {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.parts-lower-search-panel {
  border-left: 5px solid #d60000;
}

.product-hero h1 {
  font-size: clamp(2.2rem, 4.0vw, 3.95rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.035em !important;
}

@media (max-width: 980px) {
  :root {
    --mihi-hero-bg-min-px: 0px;
    --mihi-hero-bg-max-px: none;
    --mihi-hero-inner-y: 58px;
    --mihi-hero-panel-padding: 26px;
  }

  .hero.hero-standard,
  .hero-home.hero-standard,
  .hero-subpage.hero-standard {
    min-height: auto !important;
  }

  .hero-search-card .search-input-row {
    grid-template-columns: 1fr !important;
  }

  .hero-search-card .search-input-row .btn {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  :root {
    --mihi-hero-inner-y: 44px;
    --mihi-hero-panel-padding: 22px;
    --mihi-hero-title: clamp(2.05rem, 9vw, 2.85rem);
    --mihi-hero-title-subpage: clamp(2.0rem, 8.6vw, 2.75rem);
    --mihi-hero-lead-size: 0.98rem;
  }

  .hero-standard .hero-buttons .btn,
  .hero-standard .hero-focus-list a {
    flex: 1 1 100% !important;
  }

  .hero-search-card {
    padding: 14px !important;
    border-radius: 16px !important;
  }
}


/* =========================
   PART NUMBER + HERO AUDIT SAFETY v1.115
   A cikkszámok alapértelmezett megjelenítése kötőjel és szóköz nélküli kódsor.
   A kötőjeles vagy gyártói tagolású forma keresési aliasként maradhat, de nem ez az elsődleges megjelenítés.
   A normál aloldali hero-k compact panelt használnak; a product-hero oldalak külön rendszerben maradnak.
========================= */
.hero-standard .hero-panel.hero-panel-compact {
  max-width: var(--mihi-hero-panel-compact-max) !important;
}
.parts-landing-hero .parts-hero-panel {
  max-width: var(--mihi-hero-panel-compact-max) !important;
}


/* =========================
   HERO CONTENT FIT v1.116
   Nem a hero alapméretét növeli, hanem az extra tartalmú alkatrész hero-t teszi beleférővé.
   Ok: az alkatresz.html több elemet tartalmaz ugyanabban a hero-ban (breadcrumb + hosszabb üzenet + gombsor + kereső).
========================= */
.parts-landing-hero.hero-standard .hero-inner {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.parts-landing-hero .parts-hero-panel {
  max-width: var(--mihi-hero-panel-compact-max) !important;
}

.parts-landing-hero .hero-panel > p:not(.eyebrow) {
  max-width: 620px !important;
}

.parts-landing-hero .hero-search-card {
  margin-top: 12px !important;
  padding: 10px !important;
  border-radius: 16px !important;
}

.parts-landing-hero .hero-search-form {
  gap: 7px !important;
}

.parts-landing-hero .hero-search-form label {
  font-size: 0.86rem !important;
}

.parts-landing-hero .hero-search-card .search-input-row input,
.parts-landing-hero .hero-search-card .search-input-row .btn {
  min-height: 44px !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
}

.parts-landing-hero .hero-search-card .search-input-row input {
  padding-left: 14px !important;
}

.parts-landing-hero .hero-search-card .search-input-row .btn {
  padding-inline: 22px !important;
}

@media (max-width: 980px) {
  .parts-landing-hero.hero-standard .hero-inner {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}


/* =========================
   HERO BUTTON ROW FIT v1.117
   Cél: a főoldal és az alkatrész oldal hero CTA sorai desktopon egy sorban maradjanak.
   A kereső az alkatrész oldalon közvetlenül a gombsor alatt marad.
   Mobilon továbbra is törhetnek teljes szélességre.
========================= */
@media (min-width: 981px) {
  .hero-standard .hero-buttons,
  .hero-standard .hero-focus-list {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 20px !important;
  }

  .hero-standard .hero-buttons .btn,
  .hero-standard .hero-focus-list a {
    white-space: nowrap !important;
    min-height: 42px !important;
    padding: 10px 13px !important;
    border-radius: 12px !important;
    font-size: 0.86rem !important;
    line-height: 1.05 !important;
  }

  .hero-home.hero-standard .hero-focus-list a,
  .parts-landing-hero .hero-buttons .btn {
    flex: 0 1 auto !important;
  }

  .parts-landing-hero .hero-search-card {
    margin-top: 10px !important;
  }
}

@media (max-width: 980px) {
  .hero-standard .hero-buttons,
  .hero-standard .hero-focus-list {
    flex-wrap: wrap !important;
  }
}

/* =========================
   CONTACT CTA INLINE LAYOUT v1.123
   Az alkatresz.html ajánlatkérő dobozában a kapcsolatfelvétel gomb
   desktopon a telefonszámok mellé kerül, nem alájuk.
========================= */
.contact-right.contact-right-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.contact-right-data p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.86);
}
.contact-right-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-right-action .btn {
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .contact-right.contact-right-inline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-right-action {
    justify-content: flex-start;
  }
}

