

/**************************************************************************************************/
/********* CATALOGUE PRODUITS CONTENT
/**************************************************************************************************/
.catProdContent {
    background: var(--color-produits-content);
    overflow: hidden;
}

/*** cat prod quick links ***/
.prodQuickLinks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.5rem;
    padding: 1rem 0;
    gap: 0rem 4rem;
    
}
.prodQuickLinks a {
    display: block;
    padding: 1rem 0;
    position: relative;
}
.prodQuickLinks li:first-child a::after {
    content: '';
    border-bottom: 1px solid;
    position: absolute;
    bottom: .5rem;
    left: 0;
    width: 100%;
}

/*** Prod SubCat header **/
.products {
    margin-top: 2rem;
}
.subcategory {
    display: grid;
    grid-template: 
        "des img" auto
        "art art" auto / 2fr 1.2fr ;
    gap: 0 4rem;
}

.prodSubCatImg      {grid-area: img;}
.prodSubCatdesc     {grid-area: des;}
.prodSubCatList      {grid-area: art;}

.prodSubCatTitle {
    font-size: 3.35rem;
    margin-bottom:2rem;
}
.prodSubCatTxt {
    font-size: 1.4rem;
}

/** Prod list **/
.prodSubCatList {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    margin: 4rem 0;
    gap: 1.5rem;
}
.prodListProdTitle {
    font-size: 1.3rem;
}

/**************************************************************************************************/
/********* RESPONSIVE
/**************************************************************************************************/

@media screen and (max-width: 1350px) {
    .prodSubCatList {
        grid-template-columns: repeat(4,1fr);
    }
}

@media screen and (max-width: 1080px) {
    .prodQuickLinks {
        font-size: 1rem;
        gap: 0rem 2rem;
    }
    .prodSubCatTxt {
        font-size: 1.2rem;
    }
    .prodSubCatList {
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width: 980px) {
    .subcategory {
        grid-template:
            "des" auto
            "img" auto
            "art" auto / 1fr ;
        gap: 0 4rem;
    }
    .prodSubCatImg {
        display: none;
    }
}
@media screen and (max-width: 650px) {
    .prodSubCatList {
        grid-template-columns: repeat(2,1fr);
    }
}