.bloc-liste::before {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #a4bc8f;
    background-image: url(https://lamaisonemilie.com/wp-content/uploads/2025/06/PetitsPoints.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
}

.bloc-liste::after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #6E7A64;
}

.bloc-liste .row {
    z-index: 1;
    position: relative;
}

.bloc-liste .row .content-part {
    padding: 32px 5% 32px 0;
}

.bloc-liste .row .content-part h2 {
    color: var(--cream, #F3EEE8);
}

.bloc-liste .row .content-part h2 strong {
    color: var(--caramel, #5C757A);
}

.bloc-liste .row .content-part .btn {
    color: #F3EEE8;
}

.bloc-liste .row .content-part .btn::after {
    background-image: url("https://lamaisonemilie.com/wp-content/uploads/2025/06/ArrowWhiteCircle.svg");
}

.content-liste-wrapper {
    height: 600px; /* Ajustable */
    overflow: hidden;
    position: relative;
}


/* Filtres fondus haut/bas */
.content-liste-wrapper::before,
.content-liste-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    pointer-events: none;
}

.content-liste-wrapper::before {
    top: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(109,122,100,0.9), rgba(109,122,100,0));
}

.content-liste-wrapper::after {
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(109,122,100,0.9), rgba(109,122,100,0));
}

.bloc-liste .row .content-liste {
    display: flex;
    flex-direction: column;
}

.bloc-liste .row .content-liste .content-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0 32px;
    padding: 32px 0;
    border-bottom: 1px solid #A4BC8F;
}

.bloc-liste .row .content-liste .content-item:last-child {
    border-bottom: 0;
}

.bloc-liste .row .content-liste .content-item::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("https://lamaisonemilie.com/wp-content/uploads/2025/06/IconCheckGreen.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.bloc-liste .row .content-liste .content-item p {
    display: block;
    flex: 1 1 0;
    color: var(--dark-jungle, #F3EEE8);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 200;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .bloc-liste::before, .bloc-liste::after {
        display: none;
    }

    .bloc-liste .row .content-part {
        padding: 64px 5%;
        background-color: #a4bc8f;
    }

    .bloc-liste .row .content-liste {
        padding: 48px 5%;
        background-color: #6E7A64;
    }

    .bloc-liste > .row {
        width: 100% !important;
    }

    .bloc-liste > .row .container-myprod {
        width: 100% !important;
    }
}