/* Animation en fondu */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8; /* Fond légèrement transparent */
}
.mfp-fade.mfp-wrap {
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: scale(0.95); /* Légère réduction de taille à l'ouverture */
}
.mfp-fade.mfp-wrap.mfp-ready {
    opacity: 1;
    transform: scale(1); /* Effet zoom */
}
.mfp-fade.mfp-wrap.mfp-removing {
    opacity: 0;
    transform: scale(0.95); /* Retour à la réduction de taille */
}