
/* Carousel Wrapper */
.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-wrapper .best-seller-card {
  margin-top: 29px;
  margin-bottom: 29px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Carousel Indicators Custom */
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 25px auto;
  height: 58px;
}

.carousel-indicators-custom span {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.carousel-indicators-custom span.active {
  width: 20px;
  border-radius: 10px;
  background-color: #000;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .carousel-wrapper .best-seller-card {
    margin-bottom: 40px;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .carousel-wrapper {
    overflow-x: hidden;
  }

  .carousel-wrapper .best-seller-card {
    margin-bottom: 80px;
    margin-top: 0;
  }
}

/* Desktop Large Styles */
@media (min-width: 1440px) {
  .carousel-indicators-custom {
    gap: 8px;
  }
}
