/*danh mục sp*/
.dmden {
    text-align: center;
    margin-bottom: 80px;
}

.category {
    width: 100%;
    height: 800px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
}

.catedetail {
    width: 80%;
    height: 200px;
}

.catedetail:hover {
    height: 200px;
    background-color: white;
    box-shadow: 0 0 5px gray;
}

.catedetail img {
    width: 80%;
    padding-left: 10%;
    transition: all 0.5s ease-in-out;
}

.catedetail img:hover {
    width: 90%;
}

.catedetail p {
    text-align: center;
    font-weight: bold;
    font-variant: small-caps;
    font-size: larger;
}
.catedetail span{
    color: orangered;
    font-size: 15px;
}
/*end danh mục*/

/*sản phẩm sale*/
.sale_products{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 30px;
}
.s_product{
    height: 340px;
    box-shadow: 0px 0px 5px 0px gray;
    border-radius: 15px;
    text-align: center;
    transition: all 0.1s ease ;
    cursor: pointer;
}
.s_product:hover{
    box-shadow: 10px 10px 20px 10px gray;
    transform: scale(1.08);
}
.s_product a img{
    width: 100%;
    height: 200px;
}
.s_product span{
    text-decoration: line-through;
    font-size: 18px;
    
}
.s_product b{
    color: orangered;
    font-size: 22px;
}
.s_name{
    font-style: inherit;
    font-size: 18px;
    font-style: bold;
}
/*end sale*/