/* CONTENEDOR PRINCIPAL DEL SWIPER */
.prod-swiper {
  width: 100%;
  height: 420px;                 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

/* SLIDES NORMALIZADOS */
.prod-swiper .swiper-slide {
  height: 100%;                  
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGEN Y VIDEO, MISMA ALTURA */
.prod-swiper img,
.prod-swiper video {
  height: 100%;                   
  width: auto;                    
  border-radius: 10px;
  object-fit: cover;             
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* VIDEO WRAPPER PARA OVERLAY */
.video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ICONO TIKTOK */
.video-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.35);
  padding: 6px;
  border-radius: 8px;
  z-index: 5;
}

.video-logo {
  width: 30px;
  height: 30px;
  opacity: 0.95;
}

/* PAGINACIÓN (DOTS) */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: 0.25s;
}

.swiper-pagination-bullet-active {
  background: #333;
  transform: scale(1.15);
}

/* AJUSTE RESPONSIVO */
@media (max-width: 500px) {
  .prod-swiper {
    height: 360px;              
  }
}

@media (max-width: 380px) {
  .prod-swiper {
    height: 320px;
  }
}
