/**
 * Correction simple du scroll horizontal
 */

/* Empêcher UNIQUEMENT le débordement horizontal */
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body {
    overflow-x: hidden !important;
}

/* Corriger les rows Bootstrap */
.row {
    max-width: 100% !important;
}

/* S'assurer que les images ne dépassent pas */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* Sliders */
.swiper-container,
.swiper,
.owl-carousel,
.slick-slider {
    overflow: hidden !important;
    max-width: 100% !important;
}
