#main-liste{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 64px;
    /*max-height: 100vh;*/
    overflow-x: scroll;
}
    #main-liste>li{
        list-style-type: none;
        width: 100%;
        /*aspect-ratio: 16 / 6;*/
        min-height: 400px;
        margin-bottom: 2em;
        border-radius: 2em;
        overflow: hidden;

        display: flex;
    }
    #main-liste .img_container{
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 60%;
    }
    #main-liste .desc_container{
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 40%;
        background-color: white;

        padding: 32px;

        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: flex-start;
        justify-content: space-between;
        align-items: flex-start;
    }
        .desc_container_txt{
            margin-bottom: 2em;
        }
        .desc_container_btn{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-content: flex-end;
            justify-content: space-between;
            align-items: flex-end;
        }
        .desc_container_btn a{
            margin: .25em;
        }
        #main-liste .desc_nom,
        #description_apercu .desc_nom{
            display: block;
            font-size: 1.3em;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1.2;
        }
        #main-liste .desc_marque,
        #description_apercu .desc_marque{
            color: var(--col-red);
        }
        #main-liste .desc_carac,
        #description_apercu .desc_carac{
            text-transform: uppercase;
            font-weight: bold;
            margin: .7em 0;
        }

        .desc_text>li{
            display: table-row;
            list-style-type: none;
        }
        .desc_text>li div{
            display: table-cell;
            line-height: 1.2;
        }
        .desc_text>li>div:first-child{
            padding-right: 2em;
            font-weight: bold;            
            padding-bottom: .4em;
        }


#produits-liste{
    padding-left: 1em;
    margin-bottom: 2em;
}
    #produits-liste .prod-li a {
        display: block;
        padding: .4em 1.5em;
        border-bottom: 1px solid var(--body-bg);
        width: 100%;
        height: 100%;
        color: var(--col-red);
        font-family: var(--font-special);
        text-transform: uppercase;
    }
    #produits-liste li:last-child a{
        border-bottom: none;
    }
    #produits-liste .prod-li a:hover,
    #produits-liste .prod-li a.prod-scroll-active{
        background-color: var(--hover-grey-c);
        color: white;
        border-radius: .5em 0 0 .5em;
    }