/*
 * Corrige uniquement l'affichage de la grande image sur les fiches produit.
 * Objectif : aucune photo rognée, pas de zoom excessif, centrage complet.
 */

body#product .product-cover {
    overflow: hidden !important;
}

body#product .product-cover img,
body#product .product-cover img.js-qv-product-cover,
body#product .product-cover .js-qv-product-cover {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    scale: 1 !important;
}

/* Empêche d'anciennes règles de galerie d'agrandir artificiellement l'image */
body#product .product-cover picture,
body#product .product-cover .layer {
    width: 100% !important;
    height: 100% !important;
}

body#product .product-cover picture img {
    object-fit: contain !important;
    object-position: center center !important;
}

/* Les flèches/badges restent visibles et inchangés */
body#product .product-cover .jp-gallery-arrow,
body#product .product-cover .product-flags,
body#product .product-cover .product-flag {
    z-index: 5;
}
