.pods-swiper {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pods-swiper.thumbs-right {
  flex-direction: row-reverse;
}
.pods-swiper.thumbs-left{
  flex-direction: row-reverse;
}

.pods-swiper.thumbs-bottom {
  flex-direction: column;
  align-items: stretch;
}

.pods-swiper-main {
  width: 100%;
}

.pods-swiper-thumbs {
  width: 92px;
  height: 380px; /* ajusta a tu diseño */
}

.pods-swiper-main { min-height: 300px; }
.pods-swiper-main .swiper-wrapper { min-height: 300px; }

/* FLECHAS */
.pods-swiper .swiper-button-prev::after,
.pods-swiper .swiper-button-next::after {
  font-size: 16px;
  }
  
.pods-swiper .swiper-button-prev,
.pods-swiper .swiper-button-next {
  color: #c6b37c;
}

.pods-swiper .swiper-button-prev,
.pods-swiper .swiper-button-next {
  width: 28px;
  height: 28px;
}

.pods-swiper-thumbs .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
}

.pods-swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.pods-swiper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Móvil: miniaturas abajo 
@media (max-width: 767px) {
  .pods-swiper {
    flex-direction: column;
    align-items: stretch;
  }

  .pods-swiper-thumbs {
    width: 100%;
    height: auto;
  }
}*/


@media (max-width: 767px){

  /* Contenedor principal: layout simple */
  body .pods-swiper{
    display: block !important;     /* rompe el flex lateral */
    width: 100% !important;
  }

  /* Ocultamos miniaturas */
  body .pods-swiper .pods-swiper-thumbs{
    display: none !important;
  }

  /* Ocultamos flechas */
  body .pods-swiper .swiper-button-prev,
  body .pods-swiper .swiper-button-next{
    display: none !important;
  }

  /* Slider principal ocupa todo */
  body .pods-swiper .pods-swiper-main{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    min-height: auto !important;
  }

  body .pods-swiper .pods-swiper-main .swiper-wrapper{
    width: 100% !important;
  }

  body .pods-swiper .pods-swiper-main img{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain;
  }
}

