/*
Theme Name: SASU ABCduWeb
Description: Thème enfant Divi — ABCduWeb. Palette verte #8ab734.
Author: SASU ABCduWeb - Adrien
Author URI: https://abcduweb.fr
Template: Divi
Version: 2026.1.0
*/

/* ── Empêcher le scroll horizontal — NE PAS mettre overflow:hidden sur body (casse position:fixed) ── */
/* Divi ajoute body.et_fixed_nav { overflow: hidden } — on le contre avec clip qui ne casse pas fixed */
body,
body.et_fixed_nav,
body.et_fixed_nav.et_non_fixed_nav {
    overflow-x: clip !important; /* clip = pas de scrollbar, NE casse PAS position:fixed */
}

/* On cible uniquement les wrappers de contenu Divi */
#page-container,
#et-boc,
#et-main-area,
#main-content {
    overflow-x: clip;
    max-width: 100%;
}

/* Quand le cart drawer est ouvert, body peut bloquer le scroll vertical */
body.als-cart-open {
    overflow-y: hidden !important;
}
