/* ===== FEATURED SNEAKER SECTION ===== */

/* Layout da Seção (Imagem à esquerda, Texto à direita) */
.featured-sneaker-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Container do Carrossel */
.featured-image-wrapper.swiper {
  position: relative;
  width: 100%;
  min-width: 0;
  background-color: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
}

/* Imagens dentro do Carrossel */
.featured-sneaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos para a Navegação do Carrossel (Setas) */
.featured-image-wrapper .swiper-button-next,
.featured-image-wrapper .swiper-button-prev {
  color: var(--primary);
  background-color: rgba(10, 10, 10, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.featured-image-wrapper .swiper-button-next:hover,
.featured-image-wrapper .swiper-button-prev:hover {
  background-color: var(--primary);
  color: #fff;
}

.featured-image-wrapper .swiper-button-next::after,
.featured-image-wrapper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 900;
}

/* Estilos para a Paginação do Carrossel (Pontos) */
.featured-image-wrapper .swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
}

.featured-image-wrapper .swiper-pagination-bullet {
  background-color: var(--text-secondary);
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.featured-image-wrapper .swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}

/* ===================================
    APENAS MOBILE - DESKTOP INTACTO
   =================================== */

@media (max-width: 768px) {
  .featured-sneaker-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .featured-image-wrapper.swiper {
    height: 300px;
    border-radius: 12px;
    order: -1;
  }

  .featured-image-wrapper .swiper-button-next,
  .featured-image-wrapper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .featured-image-wrapper .swiper-button-next::after,
  .featured-image-wrapper .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .featured-image-wrapper.swiper {
    height: 250px;
  }

  .featured-image-wrapper .swiper-pagination {
    bottom: 10px !important;
  }

  .featured-image-wrapper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Tablet - mantém desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-image-wrapper.swiper {
    height: 400px;
  }
}

/* Desktop grande - exatamente como estava */
@media (min-width: 1440px) {
  .featured-image-wrapper.swiper {
    height: 500px;
  }
}