/* =============================================================
   Carrusel de productos (shortcode [daher_productos])
   ============================================================= */

.daher-prod-car {
  position: relative;
  font-family: 'Rubik', sans-serif;
  margin: 0;
}

.daher-prod-car__title {
  font-family: 'Rubik', sans-serif;
  color: var(--color-primario, #011b44);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 22px;
  text-align: left;
}

.daher-prod-car__inner {
  margin: 0;
}

.daher-prod-car__swiper {
  position: relative;
  padding: 6px 0 40px;
}

/* Anula el grid del listado tienda dentro del carrusel */
.daher-prod-car ul.products.swiper-wrapper,
.woocommerce .daher-prod-car .productos_gral_trustus ul.products.swiper-wrapper {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.daher-prod-car .swiper-slide.daher-card {
  height: auto;
  margin: 0;
  float: none;
  padding: 0;
  text-align: left;
}

.daher-prod-car .swiper-slide.daher-card .daher-card__inner {
  height: 100%;
}

/* Flechas */
.daher-prod-car__nav {
  width: 42px;
  height: 42px;
  margin-top: -21px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #ecedf3;
  box-shadow: 0 6px 18px -6px rgba(1, 27, 68, .25);
  color: var(--color-primario, #011b44);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease, opacity .2s ease;
  z-index: 5;
}

.daher-prod-car__nav:hover {
  background: var(--color-primario, #011b44);
  color: #fff;
}

.daher-prod-car__nav:active {
  transform: scale(.96);
}

.daher-prod-car__nav::after {
  font-family: swiper-icons;
  font-size: 14px;
  font-weight: 800;
}

.daher-prod-car__nav--prev { left: -8px; }
.daher-prod-car__nav--next { right: -8px; }

.daher-prod-car__nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* Paginación */
.daher-prod-car__pag.swiper-pagination {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
}

.daher-prod-car__pag .swiper-pagination-bullet {
  background: #cfd3ea;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  transition: background .2s ease, transform .2s ease;
}

.daher-prod-car__pag .swiper-pagination-bullet-active {
  background: var(--color-primario, #011b44);
  transform: scale(1.2);
}

@media (max-width: 575px) {
  .daher-prod-car__title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .daher-prod-car__nav {
    display: none;
  }
}
