/* ===== CAROUSEL / NEW ARRIVALS ===== */
.new-arrivals {
  background: var(--beige-light);
}

.arrivals-swiper {
  padding: 20px 0 60px;
  overflow: hidden;
}

.arrivals-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.arrivals-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  max-width: 100%;
}

.arrivals-swiper .product-card {
  margin: 0 auto;
  max-width: 340px;
}

/* Swiper custom styling */
.swiper-button-prev,
.swiper-button-next {
  color: var(--emerald) !important;
  width: 46px !important;
  height: 46px !important;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--emerald);
  color: var(--white) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  font-weight: 700;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .arrivals-swiper {
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .arrivals-swiper {
    margin-right: 0;
  }

  .arrivals-swiper .swiper-slide {
    width: 100% !important;
  }

  .arrivals-swiper .product-card {
    max-width: 100%;
  }
}
