.page-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.page-hero::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container {
  position: relative;
  z-index: 2;
  height: 60vh;
  display: flex;
  align-items: center;
}

.section-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #f6f7fb31;
  color: var(--offwhite);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.products-content .section-badge,
.dealers-content .section-badge {
  background: rgba(214, 6, 5, 0.1);
  color: var(--brand-red);
}

.hero-content .section-title {
  margin-top: 20px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--offwhite);
}
.products-content .section-title, .dealers-content .section-title {
  margin-top: 20px;
  font-weight: 700;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  height: 100%;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(12, 8, 134, 0.12);
}

.product-image {
  padding: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  /*width: 100%;*/
  /*height: 100%;*/
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-footer {
  background: #1d255e;
  color: #fff;
  padding: 12px 12px;
}

.product-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}

.product-meta {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.product-card-col[hidden], .dealer-col[hidden] {
  display: none !important;
}

.product-card-col, .dealer-col {
  opacity: 1;
  transition: opacity 250ms ease;
}

.product-card-col.is-fade-in, .dealer-col.is-fade-in {
  opacity: 0;
}

#productsResults.is-loading {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(.15);
}

.loadMore-btn{
  padding: 7px 10px;
  background-color: var(--brand-navy);
  color: var(--offwhite);
  transition: all 0.3s ease;
}

.loadMore-btn:hover{
  transform: translateY(-3px);
  color: var(--offwhite);
  background-color: #100d65;
}

@media (max-width: 576px) {
  .product-image {
    height: 200px;
  }
  .product-tabs {
    gap: 8px;
  }
  .product-tab {
    padding: 9px 12px;
    font-size: 13px;
  }
}
