    /* === Espacements équilibrés réduits === */
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Section Hero avec léger dégradé */
    .hero-section {
        background: linear-gradient(to bottom, #fdfdf8 0%, #ffffff 100%);
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Section à fond crème clair */
    .section-light {
        background-color: #fdfdf8;
    }

    .intro-quote {
        background-color: #f8f8f8;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* === Titres de section === */
    .section-title {
        color: #111;
        font-weight: 700;
        font-size: 2.2rem;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    /* Trait vert fin sous le titre à gauche */
    .section-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: #9ab968;
        border-radius: 2px;
    }

    /* === Images produits === */
    .img-fluid {
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .img-fluid:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* === Animation douce au scroll === */
    .fade-section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease, transform 1s ease;
    }
    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* === Responsive === */
    @media (max-width: 992px) {
        section {
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .section-title {
            font-size: 1.9rem;
        }
    }

    @media (max-width: 576px) {
        section {
            padding-top: 40px;
            padding-bottom: 40px;
        }
        .section-title {
            font-size: 1.6rem;
        }
    }

.flaticon-check {
    color: var(--couleur-accent);
    font-size:20px; 
    margin-right:10px;
}

.flaticon-heart {
    color: #000;
    font-size:16px;
    margin-right:6px;
}