/* ============================================================
    1. CARROUSEL : HAUTEUR FIXE À 746PX (PLEINE LARGEUR)
    ============================================================ */
#carousel, .carousel, .carousel-inner {
    width: 100vw !important;
    height: 746px !important; /* Votre hauteur précise */
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    overflow: hidden !important;
}

#carousel .carousel-item, 
#carousel .carousel-item img {
    width: 100vw !important;
    height: 746px !important; /* On force l'image à cette hauteur */
    object-fit: cover !important; /* L'image remplit la zone sans se déformer */
}

/* Suppression de l'espace/ligne grise sous le menu */
#header, .header-top, #wrapper {
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

.header-nav { display: none !important; }

/* ============================================================
    2. ALIGNEMENT : LOGO (GAUCHE) | MENU (CENTRE) | INFOS (DROITE)
    ============================================================ */
@media (min-width: 768px) {
    #header .header-top > .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100px !important;
        max-width: 100% !important;
        padding: 0 30px !important;
    }

    /* LOGO À GAUCHE */
    #_desktop_logo {
        flex: 0 0 auto !important;
    }
    #_desktop_logo img { max-height: 70px !important; width: auto !important; }

    /* MENU AU CENTRE */
    .amegamenu_res_wide {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* INFOS À DROITE (Langue, Connexion, Panier) */
    .right-nav, .header-top-right-itf {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
    }

    #_desktop_language_selector, #_desktop_user_info, #_desktop_cart {
        white-space: nowrap !important;
    }
}

/* 1. SUPPRESSION DU FIL D'ARIANE (BREADCRUMB) PARTOUT */
.breadcrumb, #breadcrumb {
    display: none !important;
}

/* 2. SUPPRESSION DE TOUS LES TITRES DE CATÉGORIES (CENTRE ET GAUCHE) */
#js-product-list-header h1, 
.block-category h1, 
.category-name, 
.block-category.card,
#left-column .products-section-title {
    display: none !important;
}

/* 3. RÉGLAGE DE TA BANNIÈRE (PLEINE LARGEUR) */
.custom-banner-product {
    display: block !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 0 20px 0 !important;
    line-height: 0 !important;
}

.custom-banner-product img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 4. NETTOYAGE DES ESPACES VIDES EN HAUT */
#wrapper, #content-wrapper, #js-product-list-header {
    padding-top: 0 !important;
    margin-top: 0 !important;
    border: none !important;
}