/* Réduit la taille de l'image principale sur la page produit individuel */
.single-product div.product div.images {
    width: 35% !important; /* Ajustez ce pourcentage selon vos besoins */
    margin: 0 auto;
}

/* Assure que la galerie sous l'image principale (si présente) reste alignée */
.single-product div.product div.images .flex-control-thumbs {
    width: 100%;
}

@media (max-width: 768px) {
    .single-product div.product div.images {
        width: 70% !important;
    }
}
