/* .images-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
} */

/* .images-container > img{
    width: auto;
    height: 215px !important;
     flex: 1; 
} */

.imagenes-gallery-wrap {
    width: 100%;
    
}

.imagenes-splide{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imagenes-splide .splide__track{
    width: 80%;
}

.imagenes-gallery-wrap .imagenes-splide .splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.imagenes-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    justify-content: center;
}

.imagenes-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.2s;
    border-radius: 4px;
    flex-shrink: 0;
}

.imagenes-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagenes-thumbnail.is-active {
    opacity: 1;
    outline: 2px solid var(--color_1);
    outline-offset: 2px;
}

.imagenes-gallery-wrap .splide__arrow{
    position: absolute;
    transform: none;
    background-color: transparent;
    width: 1em;
    height: 1em;
}

.imagenes-gallery-wrap .splide__arrow svg{
    width: 2rem;
    height: 2rem;
}

/* Carrusel de miniaturas */
.imagenes-thumbs-splide {
    margin-top: 10px;
}

.imagenes-thumbs-splide .splide__track {
    padding: 0;
}

.imagenes-thumbs-splide .splide__slide {
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.35;
    transition: opacity 0.2s;
}

.imagenes-thumbs-splide .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagenes-thumbs-splide .splide__slide.is-active {
    opacity: 1;
    outline-offset: 2px;
}

@media (min-width: 600px) {

    .imagenes-gallery-wrap .imagenes-splide .splide__slide img {
        width: 100%;
        height: 360px;
        object-fit: contain;
        display: block;
        border-radius: 4px;
    }
    .imagenes-gallery-wrap .splide__arrow{
        width: 2em;
        height: 2em;
    }
}

@media (min-width: 992px) {

    .imagenes-gallery-wrap .imagenes-splide .splide__slide img {
        width: 100%;
        height: 480px;
        object-fit: contain;
        display: block;
        border-radius: 4px;
    }

}