.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1.25, 0.5, 1);
  will-change: transform;
}

.carousel-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0 8px;
}
/* SOLO para las páginas individuales de tour/producto */
body.home .carousel-item {
  width: 25%;
}

body.single-product .carousel-item {
  width: 33.33%;
}
.image-container {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 1.5s;
  transition-timing-function: ease;
  filter: brightness(70%);
}
.image-container img:hover {
transform: scale(1.1, 1.1);
    filter: brightness(100%);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgb(229 142 36);
  color: white;
  border: none;
  padding: 10px 10px;
  cursor: pointer;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}
.carousel-prev.is-disabled,
.carousel-next.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


/* RESPONSIVO: Mostrar 4 en escritorio, 2 en tablet, 1 en móvil */
/*
@media (min-width: 1024px) {
  .carousel-item {
    width: 33.333%;
  }
}
*/
/* Media queries con más especificidad */
@media (min-width: 768px) and (max-width: 1023px) {
  body.home .carousel-item,
  body.single-product .carousel-item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  body.home .carousel-item,
  body.single-product .carousel-item {
    width: 100%;
  }
}