body {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Swipe gauche → contenu part à gauche */
body.spm-animate-left {
    transform: translateX(-100px);
    opacity: 0;
}

/* Swipe droite → contenu part à droite */
body.spm-animate-right {
    transform: translateX(100px);
    opacity: 0;
}