.product-banner-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-banner-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  max-width: 700px;
  width: 100%; /* Añadido para el transform */
}

.product-banner-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 24px 100px;
  width: 100%;
  flex-shrink: 0; /* Evita que los slides se compriman */
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-arrows button {
  background-color: rgba(0, 0, 0, 0.5);
  background-color: transparent;
  color: #23a19e;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  width: 38px;
  height: 38px;
  font-size: 24px;
  z-index: 10; /* Asegura que estén encima */
  opacity: 0.8;
}
.carousel-arrows button:hover {
  opacity: 1;
  /* background-color: transparent;
  color: #9bbd41; */
}

.product-banner-slide ul {
  list-style-type: none;
  padding: 0;
}

.product-banner-slide li {
  margin: 5px 0 18px;
}

.product-banner-slide h4,
.product-banner-slide h3,
.product-banner-slide h2 {
  text-align: center;
  margin-bottom: 24px;
}

.product-banner-slide li strong {
  margin-right: 24px;
  font-weight: 500;
  color: #23a19e;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.carousel-pagination .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-pagination .dot.active {
  background-color: #23a19e;
}

@media screen and (max-width: 767px) {
  .product-banner-slide {
    padding: 16px 48px;
  }
}
