﻿:root {
  --white: #FFFFFF;
  --charcoal: #FFFFFF;
  --black: #000000;
  --bg: var(--white);
  --panel: var(--white);
  --panel-2: var(--white);
  --text: var(--black);
  --muted: #000000;
  --accent: #ff5a1f;
  --accent-2: #ff7e45;
  --stroke: #d9d9d9;
  --max: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), 92vw); margin: 0 auto; }
.section { padding: 2.8rem 0; }
.card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.topbar {
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.86rem;
  background: #3f3b3f;
  color: #ffffff;
  border-bottom: 1px solid var(--stroke);
}
.topbar-inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.menu-tab {
  position: relative;
}
.menu-tab summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.26rem 0.72rem 0.26rem 0.5rem;
  color: #ffffff;
  font-weight: 700;
  user-select: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.menu-tab summary::-webkit-details-marker {
  display: none;
}
.menu-tab-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}
.menu-tab-logo {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #ffffff;
}
.menu-tab[open] summary,
.menu-tab summary:hover {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
}
.menu-tab-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border: 1px solid #d7dee8;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  padding: 0.42rem;
  z-index: 30;
}
.menu-tab-dropdown a {
  display: block;
  color: #111827;
  padding: 0.52rem 0.6rem;
  border-radius: 9px;
  font-weight: 600;
}
.menu-tab-dropdown a:hover {
  background: #eaf2ff;
  color: #00357a;
}
.topbar-phone {
  color: #ffffff;
  font-weight: 700;
}
.topbar-email {
  color: #ffffff;
  font-weight: 600;
}
.topbar-sep {
  color: rgba(255, 255, 255, 0.5);
}
.topbar-msg {
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-quote {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}
.topbar-quote:hover {
  background: rgba(255, 255, 255, 0.14);
}
.quick-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.05rem 0 0.18rem;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
}
.quick-nav-row a {
  color: #1f2937;
  border: 1px solid #d5dbe4;
  border-radius: 999px;
  padding: 0.36rem 0.9rem;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.quick-nav-row a:hover {
  color: #0a4aa1;
  border-color: #9fb7dd;
  background: #edf4ff;
}
.quick-nav-row .has-dropdown {
  display: inline-flex;
  position: relative;
}
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.12rem;
  padding-bottom: 0.12rem;
  margin-bottom: 0;
  position: relative;
  z-index: 40;
}
.menu-row-left {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.menu-inline-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.menu-inline-logo {
  width: 184px;
  height: 184px;
  object-fit: contain;
  border-radius: 8px;
}
.menu-pop-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #2f3947;
  border-radius: 999px;
  padding: 0.46rem 0.95rem;
  background: linear-gradient(140deg, #384152, #1f2937);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 45;
}
.menu-pop-btn:hover {
  background: linear-gradient(140deg, #4a5568, #273244);
}
.menu-row-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}
.menu-row-search .search-input {
  min-width: 280px;
}
.menu-row .menu-tab summary {
  color: #111827;
  border-color: #d1d5db;
  background: linear-gradient(140deg, #ffffff, #f3f4f6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.menu-row .menu-tab[open] summary,
.menu-row .menu-tab summary:hover {
  background: linear-gradient(140deg, #f9fafb, #e5e7eb);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 80;
}
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: #f9fafb;
  border-right: 1px solid #d1d5db;
  z-index: 90;
  padding: 1rem 1rem 1.4rem;
  overflow-y: auto;
}
.menu-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.menu-drawer-logo {
  width: 128px;
  height: auto;
  object-fit: contain;
}
.menu-close-btn {
  border: 0;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  background: #e5e7eb;
  color: #1f2937;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.menu-drawer-label {
  margin: 1rem 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  font-weight: 700;
}
.menu-drawer-links a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: #2b3138;
  font-weight: 700;
}
.menu-drawer-links a:hover {
  color: #0a4aa1;
}

.navbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Bahnschrift", "Oswald", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.logo-text {
  display: inline-block;
}
.logo-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.22em;
}
.logo-img {
  width: 232px;
  height: 232px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: block;
}
.home-navbar-logo-min {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.navlinks { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin: 0; }
.navlinks a { color: var(--muted); font-weight: 600; }
.navlinks a.active, .navlinks a:hover { color: var(--text); }
.nav-link-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-link-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 170px;
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
  padding: 0.3rem;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--black);
}
.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: #f4f4f4;
  color: var(--black);
}

.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.search-input, select, input[type="text"], input[type="email"], input[type="number"] {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  min-height: 42px;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: min(420px, 92vw);
  max-height: 280px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  z-index: 120;
}
.search-suggestion-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
  text-align: left;
  padding: 0.58rem 0.72rem;
  color: #111827;
  cursor: pointer;
  font: inherit;
}
.search-suggestion-item:last-child {
  border-bottom: 0;
}
.search-suggestion-item:hover {
  background: #eef5ff;
  color: #0a4aa1;
}

.btn {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.62rem 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #000;
  border: none;
}
.btn-outline { background: var(--white); color: var(--black); }

.hero { position: relative; min-height: 64vh; display: grid; align-items: end; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(140deg, rgba(10, 14, 22, 0.68), rgba(10, 14, 22, 0.5)),
    url("home page.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    125deg,
    transparent 0,
    transparent 20px,
    rgba(255, 255, 255, 0.06) 20px,
    rgba(255, 255, 255, 0.06) 21px
  );
}
.hero-content { position: relative; z-index: 1; padding-bottom: 3rem; max-width: 780px; }
.hero-kicker { font-size: 0.75rem; letter-spacing: 0.25em; color: #ffffff; font-weight: 700; }
.hero h1 { font-family: "Bahnschrift", "Oswald", sans-serif; font-size: clamp(2rem, 4.5vw, 4rem); margin: 0.2rem 0 0.8rem; line-height: 1.08; }
.hero p { color: #f8fafc; max-width: 62ch; }
.hero-cta { display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }

.fitment-tool h2, .section h2, .about h2, .testimonials h2 { font-family: "Bahnschrift", "Oswald", sans-serif; letter-spacing: 0.03em; margin-top: 0; }
.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.home-brand-card {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.4rem;
  text-align: center;
  background: var(--white);
}
.brand-image-slot {
  width: 52%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border: 1px dashed var(--stroke);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}
.brand-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}
.home-brand-card p {
  margin: 0.35rem 0 0;
  font-weight: 700;
  font-size: 0.9rem;
}

#fitment.card {
  padding: 0.85rem;
  border: 0;
  box-shadow: none;
  background: transparent;
}

#fitment .home-brand-grid {
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 0.65rem 1.4rem;
  margin-top: 0.7rem;
}

#fitment .home-brand-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

#fitment .brand-image-slot {
  width: 44px;
  min-width: 44px;
  height: 44px;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
}

#fitment .brand-image-slot img {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

#fitment .home-brand-card p {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}

#fitment h3 {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

#fitment .topcat-items,
.topcat-groups .topcat-items {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.55rem;
}

#fitment .topcat-item,
.topcat-groups .topcat-item {
  padding: 0.45rem;
}

#fitment .topcat-item p,
.topcat-groups .topcat-item p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

#fitment .topcat-image-slot,
.topcat-groups .topcat-image-slot {
  aspect-ratio: 1 / 1;
}
.about-tabs { margin-top: 1rem; display: grid; gap: 0.65rem; }
.about-tab {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: var(--white);
  padding: 0.35rem 0.75rem;
}
.about-tab summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 0.5rem 0;
}
.about-tab summary::-webkit-details-marker { display: none; }
.about-tab summary::after {
  content: "+";
  float: right;
  font-weight: 800;
}
.about-tab[open] summary::after { content: "-"; }
.about-tab p, .about-tab ul { margin-top: 0.35rem; }

.fitment-grid { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 0.65rem; }
.fitment-result { margin-top: 0.7rem; color: #000000; font-weight: 600; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-head a { color: #000000; }
.section-head.tight { margin-bottom: 0.7rem; }

.topcat-groups {
  display: grid;
  gap: 0.9rem;
}
.topcat-group h3 {
  margin: 0 0 0.7rem;
}
.topcat-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 0.8rem;
}
.bestseller-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.bestseller-filter {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}
.bestseller-filter.active {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.topcat-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--white);
}
.bestseller-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bestseller-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.bestseller-gallery {
  margin-top: 0.9rem;
}
.bestseller-gallery h4 {
  margin: 0 0 0.7rem;
}
.bestseller-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 0.8rem;
}
.bestseller-gallery-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.55rem;
  background: #fff;
}
.bestseller-gallery-item img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px dashed var(--stroke);
}
.bestseller-gallery-item p {
  margin: 0.45rem 0 0;
  font-weight: 600;
}
.stock-badge {
  margin: 0 0 0.45rem;
  font-size: 2rem;
  color: #0f8f66;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}
.stock-icon {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  color: transparent;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%230f8f66' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M3.5 7.5L12 3l8.5 4.5L12 12z'/%3E%3Cpath d='M3.5 7.5V16.5L12 21l8.5-4.5V7.5'/%3E%3Cpath d='M12 12v9'/%3E%3C/g%3E%3C/svg%3E");
}
.stock-badge-inside {
  font-size: 1rem;
  margin-top: 0.35rem;
}
.stock-badge-inside .stock-icon {
  width: 0.72rem;
  height: 0.72rem;
}
.clickable-part {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.clickable-part:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.topcat-item p {
  margin: 0 0 0.55rem;
  font-weight: 600;
}
.topcat-image-slot {
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 1px dashed var(--stroke);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}
.topcat-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}
.brand-choice-panel {
  margin-bottom: 0.9rem;
}
.brand-choice-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.5rem;
}
.brand-choice-btn {
  border: 1px solid var(--stroke);
  background: var(--white);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  font-weight: 600;
  cursor: pointer;
}
.brand-choice-btn.active {
  border-color: #111827;
  background: #f3f4f6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 0.8rem;
}
.category-card {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--charcoal);
  min-height: 120px;
}
.category-card span { font-size: 1.4rem; }
.category-card h3 { margin: 0.35rem 0 0; font-size: 1rem; }

.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.prop h3 { margin-top: 0; }
.prop p { margin-bottom: 0; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1rem;
}
.product-grid.three-col { grid-template-columns: repeat(3, minmax(170px, 1fr)); }
.product-card {
  background: var(--charcoal);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.product-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-body { padding: 0.85rem; }
.product-title { margin: 0 0 0.2rem; font-weight: 700; font-size: 0.96rem; }
.product-sku { margin: 0; color: var(--muted); font-size: 0.8rem; }
.product-price { margin: 0.55rem 0; font-weight: 800; }
.card-actions { display: flex; gap: 0.5rem; }
.quick-btn {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 10px;
}
.product-card:hover .quick-btn { opacity: 1; }

.listing-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 45%, #eef3f9 100%);
  border-radius: 14px;
  padding: 0.7rem;
}
.filters label { display: grid; gap: 0.3rem; margin-bottom: 0.7rem; }
.filters h2, .filters h3 { margin: 0.2rem 0 0.8rem; }
.filters select { width: 100%; margin-bottom: 0.55rem; }
.filters input[type="text"] { width: 100%; margin-bottom: 0.55rem; }
.selected-parts {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--stroke);
}
.selected-parts-list {
  display: grid;
  gap: 0.55rem;
}
.selected-item {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.55rem;
  background: var(--white);
}
.selected-item-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}
.selected-item-meta {
  margin: 0.2rem 0 0.45rem;
  font-size: 0.75rem;
}
.selected-item-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.qty-btn {
  min-width: 30px;
  padding: 0.32rem 0.5rem;
}
.selected-qty {
  width: 64px;
  min-height: 34px;
  text-align: center;
}
.selected-item-line {
  margin: 0.45rem 0;
  font-weight: 700;
}
.remove-btn {
  padding: 0.32rem 0.5rem;
  font-size: 0.8rem;
}
.selected-parts-total {
  margin: 0.65rem 0 0;
  font-weight: 800;
}
.selected-filter-items {
  margin: 0.45rem 0 0.65rem;
  padding-left: 1.1rem;
}
.selected-filter-items li {
  margin: 0.2rem 0;
  font-size: 0.86rem;
}
#sendSelectedMessage {
  width: 100%;
}
#sendSelectedMessage:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.selected-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.type-chip {
  border: 1px solid #ff8b66;
  background: #ffe7de;
  color: #8a2d00;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.select-part-block {
  padding: 1rem;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.select-part-intro {
  margin: 0 0 0.8rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.select-part-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1rem;
  position: relative;
  margin-bottom: 22rem;
}
.select-part-item {
  border: 1px solid #cfd6df;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  background: #f7f8fa;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.select-part-item p {
  margin: 0;
  font-size: 1rem;
  max-width: 55%;
}
.part-image-slot {
  width: 190px;
  height: 88px;
  border: 1px dashed #cfd6df;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.part-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  display: block;
}
.lighting-details-panel {
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  border: 1px solid #9fb0c2;
  border-radius: 6px;
  padding: 1rem 1rem 0.8rem;
  background: #f7f8fa;
  position: absolute;
  z-index: 8;
}
.lighting-details-close {
  position: absolute;
  top: 0.35rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #a3a3a3;
  cursor: pointer;
}
.lighting-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.8rem 1.2rem;
}
.lighting-details-grid ul {
  margin: 0;
  padding-left: 1.3rem;
}
.lighting-details-grid li {
  color: #0e57a6;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.lighting-item-btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.lighting-item-btn:hover {
  text-decoration: underline;
}
.lighting-item-btn.active {
  text-decoration: underline;
  font-weight: 700;
}
.part-item-btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.part-item-btn:hover {
  text-decoration: underline;
}
.part-item-btn.active {
  text-decoration: underline;
  font-weight: 700;
}
.lighting-details-link {
  color: #6f7f94;
  font-size: 1.05rem;
  margin: 0.35rem 0 0 1.05rem;
}
.headlamp-brands-panel {
  margin-top: 0;
  margin-bottom: 0.75rem;
  border-color: #cfd9e5;
  position: relative;
  z-index: 12;
  background: #fdfefe;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.headlamp-brands-panel h3 {
  margin: 0 0 0.65rem;
  color: #111827;
  font-size: 1.55rem;
}
.headlamp-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.5rem 1.2rem;
}
.headlamp-brand-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0;
  font-size: 1rem;
  color: #0f172a;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.headlamp-brand-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.headlamp-brand-item:hover span {
  text-decoration: underline;
}
.headlamp-brand-item.active span {
  text-decoration: underline;
  font-weight: 700;
}
.headlamp-models-wrap {
  margin-top: 0.9rem;
}
.headlamp-models-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #1f2937;
}
.headlamp-models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.headlamp-model-item {
  background: #eef4ff;
  color: #0f172a;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
}
.headlamp-model-item:hover,
.headlamp-model-item.active {
  background: #dbeafe;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .headlamp-brands-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .headlamp-brands-grid {
    grid-template-columns: 1fr;
  }
}
.type-checklist {
  display: grid;
  gap: 0.2rem;
  max-height: 250px;
  overflow: auto;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.45rem;
}
.type-check-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  padding: 0.08rem 0;
}
.brands-mini {
  margin: 0.2rem 0 0.85rem;
  padding: 0.5rem;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: #ffffff;
}
.brands-mini-title {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.brands-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}
.brands-mini-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f9fafb;
}
.product-range-block {
  margin-bottom: 1rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(36, 162, 201, 0.28), transparent 30%),
    radial-gradient(circle at 75% 0%, rgba(24, 108, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #092a55 0%, #061736 45%, #02060e 100%);
  border: 1px solid #1b3f6d;
  position: relative;
  overflow: hidden;
}
.product-range-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  opacity: 0.22;
  pointer-events: none;
}
.product-range-block h2 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.range-item {
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 22, 48, 0.58) 0%, rgba(3, 8, 18, 0.6) 100%);
  padding: 0.95rem 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}
.range-item h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8fbff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.range-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
  flex: 0 0 10px;
}
.range-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.range-item li {
  position: relative;
  padding-left: 1.05rem;
  margin: 0.38rem 0;
  color: #f3f7ff;
}
.range-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
}
.range-quick-btn {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: auto;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(8, 18, 38, 0.9);
}
.range-item:hover .range-quick-btn,
.range-item:focus-within .range-quick-btn {
  opacity: 1;
}

.brands-stock-block {
  margin-bottom: 1rem;
  border: 1px solid #dbe3f0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.brands-stock-block h2 {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.6rem;
}
.brand-card {
  margin: 0;
  border: 1px solid #d1d9e6;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.45rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.brand-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}
.brand-card figcaption {
  text-align: center;
  font-weight: 700;
  margin-top: 0.35rem;
  color: #111827;
}

.quickview {
  width: min(720px, 90vw);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  padding: 1rem;
}
.quickview::backdrop { background: rgba(0, 0, 0, 0.6); }
.quickview img { width: 100%; border-radius: 10px; }

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
}
.gallery-main {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}
.gallery-main img {
  width: 100%;
  display: block;
  transition: transform 0.25s ease;
}
.gallery-main:hover img { transform: scale(1.22); }
.thumb-row { display: flex; gap: 0.6rem; margin-top: 0.6rem; }
.thumb-row img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  cursor: pointer;
}
.product-info h1 { margin-top: 0; }
.qty { display: flex; gap: 0.5rem; align-items: center; margin: 0.8rem 0; }
.qty input { width: 80px; }
.tab-block {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
}

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
blockquote { margin: 0; }
blockquote cite { display: block; margin-top: 0.7rem; color: var(--muted); font-style: normal; }

.footer {
  border-top: 1px solid var(--stroke);
  background: #e5e5e5;
  padding: 2rem 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1rem; }
.footer a { display: block; margin: 0.35rem 0; color: var(--black); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.38rem;
  margin: 0.42rem 0;
}
.footer-contact p a {
  display: inline;
  margin: 0;
}
.footer-inline-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: text-bottom;
  margin-right: 0.35rem;
}
.newsletter { display: grid; gap: 0.5rem; }
.site-copyright {
  margin: 0;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.66rem;
  color: #b6bcc6;
  border-top: 1px solid var(--stroke);
  background: #f8f8f8;
}

.contact-page-wrap {
  background: #ececec;
  padding: 0 0 2rem;
}
.contact-page {
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
}
.contact-page h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.05em;
}
.contact-intro {
  margin: 0.7rem auto 0;
  text-align: center;
  max-width: 40ch;
  font-size: clamp(1.05rem, 2.1vw, 2rem);
}
.contact-motto {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 1.05rem;
  color: #1f2937;
}
.contact-motto span {
  font-weight: 800;
  letter-spacing: 0.07em;
}
.contact-two-col {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
}
.contact-two-col h2 {
  margin: 0 0 0.55rem;
  font-size: 2rem;
}
.contact-two-col p {
  margin: 0.22rem 0;
  font-size: 1.05rem;
}
.contact-inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: text-bottom;
  margin-right: 0.35rem;
}
.contact-web-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #334155;
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.contact-item {
  margin-top: 1.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 58px;
  height: 58px;
  border: 1px solid #cfd5dd;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #667085;
  background: #f8f9fb;
}
.contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.contact-label {
  margin: 0;
  color: #98a2b3;
  font-size: 1.15rem;
  font-weight: 700;
}
.contact-value {
  margin: 0.22rem 0 0;
  font-size: 1.45rem;
  font-weight: 700;
}
.contact-social {
  margin-top: 2rem;
}
.contact-social p {
  margin: 0 0 0.65rem;
  color: #98a2b3;
  font-size: 1.2rem;
}
.contact-social-row {
  display: flex;
  gap: 0.7rem;
}
.contact-social-row a {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  overflow: hidden;
}
.contact-social-row a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-social-row a:nth-child(1) { background: #3b5998; }
.contact-social-row a:nth-child(2) { background: #25d366; }

.vehicle-filter-page {
  max-width: 1000px;
}
.vehicle-filter-full {
  width: 100%;
}
.vehicle-filter-full.filters label {
  max-width: 760px;
}
.vehicle-flow-note {
  margin-top: 0;
  color: #334155;
}
.vehicle-parts-picker {
  margin-top: 1rem;
}
.vehicle-part-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.45rem;
  max-height: 420px;
  overflow: auto;
  margin: 0.7rem 0 0.9rem;
}
.vehicle-part-btn {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2937;
  padding: 0.48rem 0.6rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.vehicle-part-btn:hover {
  background: #f1f5f9;
  border-color: #9db3d7;
}
.vehicle-part-btn.active {
  background: #e8f1ff;
  border-color: #4f7fc6;
  color: #0f2f66;
  font-weight: 700;
}

.quote-page h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
.quote-lead {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  color: #2f3b4a;
}
.quote-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.quote-form-card h2,
.quote-aside h2 {
  margin-top: 0;
}
.quote-form {
  display: grid;
  gap: 0.85rem;
}
.quote-form label {
  display: block;
  margin-bottom: 0.32rem;
  font-weight: 700;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.75rem;
}
.quote-form textarea {
  width: 100%;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  resize: vertical;
}
.quote-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.quote-list {
  margin: 0;
  padding-left: 1.1rem;
}
.quote-list li {
  margin: 0.4rem 0;
}

@media (max-width: 1024px) {
  .quick-nav-row { flex-wrap: wrap; gap: 0.7rem 1rem; }
  .menu-row { flex-wrap: wrap; }
  .menu-row-search { width: 100%; }
  .menu-row-search .search-input { flex: 1; min-width: 0; }
  .topbar-inner { flex-wrap: wrap; justify-content: center; }
  .topbar-left { justify-content: center; flex-wrap: wrap; }
  .topbar-msg { white-space: normal; text-align: center; }
  .navbar { flex-wrap: wrap; }
  .nav-actions { width: 100%; }
  .search-input { flex: 1; }
  .topcat-items { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  .topcat-groups .topcat-items { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .brand-choice-buttons { grid-template-columns: repeat(3, minmax(110px, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .listing-layout { grid-template-columns: 1fr; }
  .fitment-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
  .home-brand-grid { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  #fitment .home-brand-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
  #fitment .home-brand-card p { font-size: 1.7rem; }
  #fitment .topcat-items { grid-template-columns: repeat(3, minmax(110px, 1fr)); }
  .bestseller-gallery-grid { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-layout { grid-template-columns: 1fr; }
  .contact-two-col { grid-template-columns: 1fr; gap: 1rem; }
  .contact-value { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .navlinks { width: 100%; justify-content: space-between; }
  .topcat-items { grid-template-columns: 1fr; }
  .topcat-groups .topcat-items { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .brand-choice-buttons { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .value-props, .testimonial-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.three-col { grid-template-columns: 1fr; }
  .home-brand-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  #fitment .home-brand-grid { grid-template-columns: 1fr; }
  #fitment .home-brand-card p { font-size: 1.35rem; }
  #fitment .brand-image-slot,
  #fitment .brand-image-slot img {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
  #fitment .topcat-items { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .bestseller-gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .select-part-list { grid-template-columns: 1fr; gap: 0.7rem; }
  .select-part-item { min-height: 96px; }
  .select-part-list { margin-bottom: 0; }
  .part-image-slot { width: 120px; height: 64px; }
  .lighting-details-grid { grid-template-columns: 1fr; }
}




/* Global border removal per latest design request */
*,
*::before,
*::after {
  border: none !important;
}

/* About page: force borderless look (including border-like shadows/outlines) */
.about,
.about * {
  outline: none !important;
  box-shadow: none !important;
}

.about-tab,
.about-tabs,
.about.card,
.about summary,
.about details {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Bring back borders only on small image boxes */
.brand-image-slot,
.topcat-image-slot,
.part-image-slot,
.product-thumb,
.brand-card img,
.thumb-row img {
  border: 1px solid #d1d5db !important;
}

/* No border on car brand image boxes */
.brand-image-slot,
#fitment .brand-image-slot,
.brand-image-slot img,
#fitment .brand-image-slot img {
  border: none !important;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 9999;
  box-shadow: none;
}

.floating-whatsapp img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Restore borders on Vehicle Filter panels */
#shop-filters {
  border: 1px solid #d1d5db !important;
  border-radius: 10px;
}

#shop-filters label,
#shop-filters select,
#shop-filters input[type="text"],
#shop-filters input[type="search"],
#shop-filters .btn,
#shop-filters button {
  border: 1px solid #d1d5db !important;
}

#shop-filters .selected-parts {
  border-top: 1px solid #d1d5db !important;
}

#shop-filters .selected-item {
  border: 1px solid #d1d5db !important;
  border-radius: 10px;
}

/* Restore borders on search controls */
.search-input,
#globalSearch,
#globalSearchBtn {
  border: 1px solid #cfd5dd !important;
}

/* Restore borders on top nav tabs */
.quick-nav-row a {
  border: 1px solid #cfd5dd !important;
  border-radius: 999px;
}

.navlinks a,
.menu-drawer-links a {
  border: 1px solid #cfd5dd !important;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

/* Home page: stronger About hover highlight */
body:has(.quick-nav-row) .quick-nav-row a[href="about.html"]:hover,
body:has(.quick-nav-row) .quick-nav-row a[href="about.html"]:focus-visible {
  background: #673de6 !important;
  color: #ffffff !important;
  border-color: #673de6 !important;
  box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.2) !important;
}

/* Purple theme (Hostinger-inspired) */
:root {
  --white: #ffffff;
  --charcoal: #1b1335;
  --black: #120b2b;
  --bg: #f6f1ff;
  --panel: #ffffff;
  --panel-2: #f3ecff;
  --text: #1a1233;
  --muted: #5f4c9a;
  --accent: #673de6;
  --accent-2: #8b5cf6;
  --stroke: #d8cbff;
}

body {
  background: radial-gradient(circle at top right, #efe6ff 0%, #f9f6ff 45%, #ffffff 100%) !important;
  color: var(--text) !important;
}

.topbar {
  background: linear-gradient(140deg, #2f1c6a, #4b2ba6) !important;
  color: #ffffff !important;
}

.navbar,
.menu-row,
.quick-nav-row {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1ff 100%) !important;
}

.card,
.topcat-item,
.bestseller-gallery-item,
.selected-item {
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(103, 61, 230, 0.08) !important;
}

.btn-accent {
  background: linear-gradient(140deg, #673de6, #8b5cf6) !important;
  color: #ffffff !important;
}

.btn-outline,
.quick-nav-row a,
.navlinks a,
.menu-drawer-links a,
.search-input,
#globalSearchBtn {
  background: #ffffff !important;
  color: #2f1c6a !important;
  border-color: #c8b8ff !important;
}

.quick-nav-row a:hover,
.navlinks a:hover,
.navlinks a.active {
  background: #f1eaff !important;
  color: #4b2ba6 !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 28, 106, 0.45), rgba(22, 12, 56, 0.55));
  pointer-events: none;
}



/* Force hero title text white */
.hero-kicker,
.hero h1 {
  color: #ffffff !important;
}

