/* CORRECTIF AFFICHAGE IMAGES + LOGO + PDF MOBILE */

/* Images dans les cartes produits : afficher toute l’image, sans découper */
.product img,
.gallery img{
    object-fit:contain !important;
    background:#f8fbff !important;
}

/* Cartes produits : image principale complète */
.product img{
    height:190px !important;
    padding:6px !important;
}

/* Galerie détail produit */
.gallery img{
    height:145px !important;
    padding:5px !important;
}

/* Logo PDF / catalogue */
.pdf-logo,
.catalog-logo{
    max-width:170px !important;
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
    display:block !important;
}

/* Images dans les aperçus PDF / catalogue */
.pdf-product-image,
.catalog-product-image{
    width:100% !important;
    height:220px !important;
    object-fit:contain !important;
    background:#f8fbff !important;
    border-radius:14px !important;
    border:1px solid #e5eaf1 !important;
    padding:6px !important;
}

/* Header PDF responsive */
.pdf-head,
.catalog-head{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:18px !important;
    border-bottom:5px solid #F58220 !important;
    padding-bottom:15px !important;
    margin-bottom:20px !important;
}

/* Mobile */
@media(max-width:768px){
    .product img{
        height:210px !important;
    }

    .gallery img{
        height:165px !important;
    }

    .pdf-head,
    .catalog-head{
        flex-direction:column !important;
        align-items:flex-start !important;
        text-align:left !important;
    }

    .pdf-logo,
    .catalog-logo{
        max-width:130px !important;
        align-self:flex-start !important;
    }

    .pdf-product-image,
    .catalog-product-image{
        height:190px !important;
    }
}

/* Impression / PDF */
@media print{
    .pdf-head,
    .catalog-head{
        flex-direction:row !important;
        align-items:center !important;
    }

    .pdf-logo,
    .catalog-logo{
        max-width:135px !important;
    }

    .pdf-product-image,
    .catalog-product-image{
        height:170px !important;
        object-fit:contain !important;
    }

    .product img,
    .gallery img{
        object-fit:contain !important;
    }
}
