:root {
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-light-gray: #eeeeee;
    --color-medium-gray: #cccccc;
    --color-dark-gray: #666666;
    --color-charcoal: #333333;
    --color-black: #1a1a1a;
    --color-true-black: #000000;
    --color-honda-red: #cc0000;
    --color-honda-red-dark: #a30000;
    --color-honda-red-light: #e60000;
    --font-display: "Barlow Condensed", sans-serif;
    --font-body: "Barlow", sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --shadow-red: 0 4px 20px rgba(204,0,0,.25);
    --radius: 6px;
    --container-max: 1280px;
    --header-height: 110px
}



/* ===== OEM PROMOS ===== */
.oem-promos {
  padding: 48px 0;
  background: var(--color-white);
}
.oem-promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promo-banner {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.promo-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.promo-banner:hover .promo-banner-img {
  transform: scale(1.03);
}
.promo-banner-img-a {
  animation: promo-fade 8s ease-in-out infinite;
}
.promo-banner-img-b {
  animation: promo-fade 8s ease-in-out infinite;
  animation-delay: -4s;
}

.promo-banner:nth-child(2) .promo-banner-img-a {
  animation-delay: 4s;
}
.promo-banner:nth-child(2) .promo-banner-img-b {
  animation-delay: 0s;
}

@keyframes promo-fade {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== HERO ===== */
.myhero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  
}
.hero-bg-track {
  position: absolute;
  inset: 0;
  width: 180%;
  height: 100%;
  animation: hero-pan 25s ease-in-out infinite alternate;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-content {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 8px;
}
.myhero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 20px;
}
.myhero-title-accent {
  color: #0167c2;
}
.myhero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.myhero-buttons .btn-primary {
  background: #0167c2;
}
.myhero-buttons .btn-primary:hover {
  background: #01519a;
  box-shadow: 0 4px 20px rgba(1,103,194,0.25);
}

@keyframes hero-pan {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-44.5%); }
}




.btn-primary {
    display: inline-block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: var(--color-honda-red);
    padding: 14px 32px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: var(--radius);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    transition: background 0.2s, border-color 0.2s;
}