
/* --- STYLES POUR LE HEADER AU SCROLL --- */

    /* Animation douce pour le header */
    #sticky-header {
        transition: background-color 0.4s ease;
    }

    /* Le header devient noir au scroll */
    #sticky-header.sticky-menu {
        background-color: #000 !important;
    }
    
    /* 1. Les textes du menu deviennent BLANCS par défaut au scroll */
    #sticky-header.sticky-menu .navigation > li > a {
        color: #fff !important;
    }
    
    /* 2. Au survol (hover), le texte du menu devient ORANGE */
    #sticky-header.sticky-menu .navigation > li > a:hover {
        color: #E47701 !important;
    }
    
    /* 3. Le lien du menu actif reste ORANGE pour savoir sur quelle page on est */
    #sticky-header.sticky-menu .navigation > li.active > a {
        color: #E47701 !important;
    }

    /* 4. Les icônes restent blanches au scroll */
    #sticky-header.sticky-menu .tgmenu__action .list-wrap > li > a i,
    #sticky-header.sticky-menu .menu-tigger svg path {
        color: #fff !important;
        stroke: #fff !important;
    }

    /* NOUVEAU : Au survol, les icônes du panier et de la recherche deviennent ORANGE */
    #sticky-header.sticky-menu .tgmenu__action .list-wrap > li.header-search:hover a i,
    #sticky-header.sticky-menu .tgmenu__action .list-wrap > li.header-cart:hover a i {
        color: #E47701 !important;
    }



    /* Styles par défaut (pour les grands écrans / ordinateurs) */
    .slider__content-three {
        background: none !important;
        padding: 0px !important;
        margin-bottom: 15vh !important; /* Pousse le texte vers le haut */
    }

    .slider__content-three .title {
        font-size: 5rem;
        color: white;
    }

    .slider__content-three h2 {
        font-size: 3.5rem;
        color: green;
    }

    .slider__content-three p {
        font-size: 1.3rem;
        max-width: 800px;
        color: white;
    }


    /* --- VERSION TABLETTE --- */
    /* S'applique aux écrans de 991px de large ou moins */
    @media (max-width: 991px) {
        .slider__content-three .title {
            font-size: 3.5rem; /* Taille de police réduite pour la tablette */
        }
        .slider__content-three h2 {
            font-size: 2rem;
        }
        .slider__content-three p {
            font-size: 1.1rem;
        }
    }


    /* --- VERSION MOBILE --- */
    /* S'applique aux écrans de 767px de large ou moins */
    @media (max-width: 767px) {
        .slider__content-three {
            margin-bottom: 5vh !important; /* Moins de marge sur mobile */
        }
        .slider__content-three .title {
            font-size: 2.5rem; /* Police encore plus petite pour le mobile */
            line-height: 1.2; /* Améliore la lisibilité du titre s'il est sur plusieurs lignes */
        }
        .slider__content-three h2 {
            font-size: 1.5rem;
        }
        .slider__content-three p {
            font-size: 1rem; /* Taille de police standard pour le paragraphe */
            display: none; /* Optionnel : cache le paragraphe sur les très petits écrans si ça prend trop de place */
        }
    }
