/* =========================================================
   CARRUSEL PRINCIPAL DE PRODUCTO
   ========================================================= */

#images {
    padding-bottom: 0 !important;
}

/* Contenedor principal: formato cuadrado */
#images > .mySwiper2 {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    overflow: hidden;
}

/* Wrapper interno de Swiper */
#image-detail-carrousel {
    width: 100%;
    height: 100% !important;
}

/* Cada slide ocupa todo el cuadrado */
#image-detail-carrousel > .swiper-slide {
    height: 100% !important;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background-repeat: no-repeat;
}

/* Imagen principal */
#image-detail-carrousel > .swiper-slide > img {
    display: block;

    width: 100% !important;
    height: 100% !important;
    max-width: none;

    object-fit: contain;
    object-position: center;

    margin: 0;
    padding: 0;
}

/* =========================================================
   MINIATURAS
   Se eliminan completamente, aunque existan varias imágenes
   ========================================================= */

#images > .mySwiper {
    display: none !important;
}