/* BondPro hero promo slideshow — mirrors Parts Alien pn-hero-promo pattern. */
.bp-hero-promo {
  position: relative;
  min-height: 16.5rem;
  padding: 1.35rem 1.35rem 2.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(234, 88, 12, 0.35);
  background: linear-gradient(145deg, rgba(67, 20, 7, 0.95) 0%, rgba(107, 47, 20, 0.92) 48%, rgba(67, 20, 7, 0.98) 100%);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.bp-hero-promo__viewport {
  position: relative;
  min-height: 12.5rem;
}

.bp-hero-promo__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.bp-hero-promo__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bp-hero-promo__tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 215, 170, 0.85);
}

.bp-hero-promo__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.bp-hero-promo__highlight {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bp-hero-promo__slide--blue .bp-hero-promo__highlight {
  color: #fb923c;
}

.bp-hero-promo__slide--amber .bp-hero-promo__highlight {
  color: #fbbf24;
}

.bp-hero-promo__slide--cyan .bp-hero-promo__highlight {
  color: #67e8f9;
}

.bp-hero-promo__slide--violet .bp-hero-promo__highlight {
  color: #c4b5fd;
}

.bp-hero-promo__body {
  margin: 0.15rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(254, 243, 199, 0.82);
  max-width: 22rem;
}

.bp-hero-promo__cta {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fed7aa;
  text-decoration: none;
}

.bp-hero-promo__cta:hover {
  color: #fff;
}

.bp-hero-promo__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fdba74;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.bp-hero-promo__arrow--prev {
  left: 0.65rem;
}

.bp-hero-promo__arrow--next {
  right: 0.65rem;
}

.bp-hero-promo__arrow:hover {
  border-color: rgba(251, 146, 60, 0.7);
  background: rgba(30, 41, 59, 0.92);
  color: #fff;
}

.bp-hero-promo__arrow:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 2px;
}

.bp-hero-promo:has(.bp-hero-promo__arrow) .bp-hero-promo__viewport {
  padding-inline: 1.85rem;
}

.bp-hero-promo__dots {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.bp-hero-promo__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(251, 146, 60, 0.28);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.bp-hero-promo__dot.is-active {
  background: #fb923c;
  transform: scale(1.15);
}

.bp-hero-promo__dot:hover {
  background: rgba(251, 146, 60, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .bp-hero-promo__slide {
    transition: none;
  }
}
