.product-flags {
    left: 120px !important;
}

#product #content {
    max-width: 100%;
}

/* Contenedor principal de imágenes */
.images-container {
    width: 100%;
}

/* Imagen principal con ratio 4:3 */
.product-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Miniaturas en columna a la izquierda */
.js-qv-mask {
    display: flex;
    flex-direction: column;
    position: absolute;
    /*left: -120px;*/
    top: 0;
    width: 100px !important;
    height: 100%;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 600px;
}

.thumb-container {
    width: 100px;
    height: 75px; /* manteniendo ratio 4:3 */
}

.thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .js-qv-mask {
        position: relative;
        left: 0;
        width: 100%;
        flex-direction: row;
        margin-top: 10px;
    }

    .product-images {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
        max-width: 100%;
    }

    .thumb-container {
        min-width: 80px;
        height: 60px;
    }

    .images-container {
        display: flex;
        flex-direction: column;
    }
}