/* Espaciado general del carrusel */
.softa-banner-slider {
  width: 100%;
}

/* Cada item del carrusel */
.softa-banner-slider__item {
  padding: 0; /* por defecto */
}

/* ---------- Banner base ---------- */
.softa-wc-banner{
  position: relative;
  width: 100%;  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  overflow: hidden;  
}

/* Capa oscura/verde encima del fondo */
/*
.softa-wc-banner__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 70, 20, 0.88) 0%,
    rgba(10, 70, 20, 0.55) 48%,
    rgba(10, 70, 20, 0.14) 100%
  );
}
*/

/* Contenido interno */
.softa-wc-banner__inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
  padding: 0px 15px;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 500px;
}

/* ---------- Columna izquierda ---------- */
.softa-wc-banner__left{
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.softa-wc-banner__left .button-style2 {
    background-image: -webkit-linear-gradient(0deg, #80bd4a 0%, #375918 100%);
    padding: 15px 45px;
    font-size: 16px;
    max-width: 250px;
}
.softa-wc-banner__left .button-style2 i{
  margin-right: 12px;
}

.softa-wc-banner__title{
  color: #fff;  
  letter-spacing: -0.02em;
}

.softa-wc-banner__subtitle{
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  max-width: 560px;
}

.softa-wc-banner__price{
  margin: 0 0 18px;
  color: #fff;
  font-weight: 500;  
  line-height: 1.1;
}
.softa-wc-banner__inner .woocommerce-Price-amount{
  font-size: clamp(26px, 3.1vw, 38px);
}

/* =========================
   Owl Dots (OwlCarousel2)
   ========================= */

/* Contenedor de dots */
.softa-banner-slider .owl-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  user-select: none;
  padding-bottom: 3px;
}

/* Botón dot */
.softa-banner-slider .owl-dot{
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

/* Punto (estado normal) */
.softa-banner-slider .owl-dot span{
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #D6D6D6; /* ideal sobre fondos oscuros */
  transition: width .18s ease, opacity .18s ease, transform .18s ease;
  opacity: .75;
}

/* Hover */
.softa-banner-slider .owl-dot:hover span{
  opacity: 1;
  transform: scale(1.08);
}

/* Activo: se vuelve “pill” */
.softa-banner-slider .owl-dot.active span{
  width: 32px;
  opacity: 1;
  background: #D6D6D6;
}

/* Si tienes fondo claro y quieres dots oscuros,
   puedes añadir una clase al wrapper (ej: .dots-dark) */
.softa-banner-slider.dots-dark .owl-dot span{
  background: rgba(0,0,0,0.25);
}
.softa-banner-slider.dots-dark .owl-dot.active span{
  background: rgba(0,0,0,0.65);
}

@media (max-width: 450px) {
  .softa-wc-banner__inner {   
    grid-template-columns: 1fr; 
    min-height: 400px;  
  }
  .softa-wc-banner__left .button-style2 {
    padding: 10px 20px;
    max-width: 200px;
  }
}