@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {

    font-family: sans-serif;
    background-color: #F1F3F2;
    /* color: hsl(356,9%,63%); */
}
/* .dropEyeglas {
    background-color: red;
} */


.slide-discount{
    background-color: rgba(225, 225, 222, 0.933);
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    row-gap: 20px;
    padding: 20px;
}

/*start conatainer-card*/
.conatainer-card{
    width: 100%;
    display: flex;
}


.all-card{
    width: 85%;
    height: auto;
    margin:  10px auto 60px ;


}


.all-card .contentCard{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-around;
    gap: 10px;
    row-gap: 20px;
}
/* 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 */

/* card-menu */
.conatainer-card .card-menu{

    width: 15%;
    display: flex;
    justify-content: end;
}

.conatainer-card .card-menu ul{
    position: sticky;
    top: 25%;
    width: 100%;
    max-width: 80%;
    height: 400px;
    display: flex;
    list-style-type: none;
    flex-direction: column;
    row-gap: 10px;
}
.conatainer-card .card-menu ul .title{
    text-transform: uppercase;
}
.conatainer-card .card-menu ul li{
    padding: 8px 0; 
   
}

.conatainer-card .card-menu ul li:hover a{
    color: #000;
    font-size: 22px;
    transition: all 0.2s;
  
}
.conatainer-card .card-menu ul li a{
    transition: all 0.2s;
    padding: 12px 17px;
    text-decoration: none;
    color: #3b3b3b;
    font-size: 17px;
    border-bottom: 1px solid #d8dad9;
}

.card-menu ul li #navActive{
    color: goldenrod;
}
/* end of card-menu */

/* end of conatainer-card */