 body{
    background-color: #ffffff;
}

.hero{
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: linear-gradient(90deg, rgba(90,57,201,0.08), transparent);
    position: relative;
    overflow: hidden;
}

/* TEXTE */
.hero-content{
    max-width: 480px;
    z-index: 2;
}

.hero-content h1{
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-content h1:last-child{
    color: #5A39C9;
}

/* IMAGE */
.hero-image{
    position: absolute;
    left: 580px;   
    bottom: -20px;
    z-index: 1;
}

.hero-image img{
    height: 520px;
    width: 950px;
}

.produits-filter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    margin-top: 40px;
}
.produits-titre h1{
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
}

/* petit underline stylé */
.produits-titre h1::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 4px;
    background: #5A39C9;
    border-radius: 10px;
}
.filterC{
    display: flex;
    gap: 15px;
}

.filterCategories{
    width: 220px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filterCategories:hover{
    border-color: #5A39C9;
    box-shadow: 0 6px 15px rgba(90,57,201,0.15);
}

.filterCategories:focus{
    outline: none;
    border-color: #5A39C9;
}






.all-liste{
    display: flex;
    margin-top:60px;
    flex-wrap: wrap;
    gap: 7px;
    margin-left: 50px;
}

.liste{
    width:280px;
    background:white;
    box-shadow:0 3px 10px rgba(0,0,0,0.12);
    overflow:hidden;
    position:relative;
    transition:0.25s; 
}


.icon{
    position:absolute;
    top:10px;
    right:10px;
    display:flex;
    height:50px;

}

.icon svg{
    width:26px;
    height:26px;
    color:#333;
    cursor:pointer;
    background:white;
    padding:6px;
    border-radius:50%;
    box-shadow:0 2px 5px rgba(0,0,0,0.15);
    transition:0.2s;
}
.icon svg:hover{
    color:#0d6efd;
    transform:scale(1.1);
}

.icon button{
    border:none;
    background:transparent;
    padding:0;
}

.img-list img{
    margin-top:50px;
    width:100%;
    height:240px;
}

.img-list img:hover{
   transform: translateY(-8px)scale(1.05);
}
.titre-liste h5{
    text-align:center;
    margin:12px 0 6px 0;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.prix{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:8px 0 12px 0;
}
.prix-act{
    color:#5A39C9;
    font-weight:bold;
    font-size:16px;
}
.prix_anc{
    color:#999;
    text-decoration:line-through;
    font-size:14px;
} 









/* ============================= */
/* RESPONSIVE SEULEMENT MOBILE */
/* ============================= */

/* Tablette */
@media (max-width: 992px) {

    .hero{
        padding: 0 30px;
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-image{
        position: static;
        margin-top: 20px;
    }

    .hero-image img{
        width: 100%;
        height: auto;
    }

    .produits-filter{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 30px;
    }

    .all-liste{
        justify-content: center;
        margin-left: 0;
        padding: 0 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .hero-content h1{
        font-size: 28px;
    }

    .filterC{
        flex-direction: column;
        width: 100%;
    }

    .filterCategories{
        width: 100%;
    }

    .liste{
        width: 100%;
        max-width: 320px;
    }

    .img-list img{
        height: 200px;
    }

}




