@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.des-CU{
    font-size: 50px;
    font-family:'Times New Roman', Times, serif;
    font-weight: bolder;
    text-align: center;
    color: goldenrod;
    padding: 20px 0; 
}

/*start conatainer-card*/
.conatainer-card{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;

}


.all-card{

    width: 100%;
    max-width: 70%;
    height: auto;
    margin: 0 0 50px 0;


}


.all-card .contentCard{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto ;
    justify-content: space-around;
    gap: 10px;
    row-gap: 40px;
}
/* card-item */
.all-card .card-item{
    width: 270px;
    height: 350px;
    /* border: 1px solid #000; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    padding: 0 10px;
}

.all-card .card-item > a{
    text-decoration: none;
    color: #000;
}
/* change color views */
.card-item .change-colors-views{
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.change-colors-views .first-badge{
    padding: 8px;
    color: #222;
    /* background-color: #f4c8bb; */
    font-weight: bolder;
    background-image: radial-gradient(circle at -11% 19%,#a7f4e4,#f2f6e8 46%,#a7f4e4 97%);
}

.change-colors-views .discount{
    padding: 8px;
    color: #222;
    background-color: #f4c8bb;
    font-weight: bolder;
}

/* img */
.card-item .img{
    width: 100%;
    height: 60%;
}
.card-item .img > img{
    width: 100%;
    height: 100%;
}
/* price */
.card-item .description{
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 25px;
}

.card-item .description .style-name{
    font-weight: bold;
}

/* price */
.card-item .description .price{
    font-weight: bolder;
}

.card-item .description .price .regularPrice{
    color: #7d7b7b;
}
/* card-item */


/* end of conatainer-card */