/* ============================
   FEATURED BRANDS
   ============================ */

.featured-brands {
  padding: 80px 0;
  max-width: var(--page-width);
  margin: 0 auto;
  text-align: center;
}

.featured-brands .section-title {
  margin-bottom: 40px;
}

.featured-brands .brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.featured-brands .brand-item img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.featured-brands .brand-item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ✅ Slider mod */
.featured-brands .swiper {
  overflow: hidden;
}

.featured-brands .swiper-wrapper {
  display: flex !important;
  align-items: center;
}

.featured-brands .swiper-slide {
  display: flex;
  justify-content: center;
}

.featured-brands .swiper-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.featured-brands .swiper-button-prev,
.featured-brands .swiper-button-next {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  pointer-events: all;
}

.featured-brands .swiper-button-prev:hover,
.featured-brands .swiper-button-next:hover {
  background: #fff;
  color: var(--color-primary);
}

.featured-brands.is-static .swiper-nav {
  display: none;
}
