/* Contenedor del carrusel */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  max-height: 600px;
  height: 600px;
}

/* Imágenes del carrusel */
.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.carousel-item .content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item .content.nature-products__item {
  background-image: url(https://res.cloudinary.com/dw57gwzru/image/upload/v1737691496/Face-12_rs3jlr.jpg);
}

.carousel-item .content.beard-products__item {
  background-image: url(https://res.cloudinary.com/dw57gwzru/image/upload/v1739259469/man-holding-shaving-cream-bottle_zqyunn.jpg);
}

.carousel-item .content.makeup-products__item {
  background-image: url(https://res.cloudinary.com/dw57gwzru/image/upload/v1737691496/Face-12_rs3jlr.jpg);
}

.carousel-item--tropic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.carousel-item .carousel-item--tropic__img {
  object-fit: contain;
}

/* Botones de navegación */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-nav-prev {
  left: 10px;
}

.carousel-nav-next {
  right: 10px;
}

/*@media (max-width: 768px) and (max-width: 1024px){
  !* Ajuste en pantallas pequeñas *!
  .carousel-item img{
    height: 350px;
  }
  @media (min-width: 1024px) {
    .carousel-item img {
      height: 450px;   !* Ajusta la altura para pantallas grandes *!
    }
  }
  .carousel-nav {
    font-size: 18px;
  }

  .carousel-item-content {
    padding: 5px;
  }
}*/

/* Carrusel en pantallas grandes */
@media (min-width: 1024px) {
  .carousel-container {
    width: 80%;
  }
}

/* Carrusel en pantallas medianas */
@media (max-width: 1024px) {
  .carousel-container {
    width: 95%;
  }
}

.hero__slider--section {
  position: relative;
  width: 100%;
  max-height: 650px;
  height: 650px;
}

.hero__slider--activation {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.swiper-pagination-bullet {
  height: 1.25rem;
  width: 1.25rem;
}

.slider__content {
  margin-top: 0.75rem;
}

.slider__pagination.swiper-pagination {
  bottom: 0 !important;
}

@media only screen and (min-width: 768px) {
  .hero__slider--section {
    max-height: 600px;
    height: 600px;
  }

  .slider__pagination.swiper-pagination {
    bottom: 1rem !important;
  }
}

.swiper-pagination-bullet {
  border: 1px solid var(--au-purple);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--au-purple);
}

.slider__layer--img {
  width: 90%;
}



      