#main{
    display: flex;
    box-sizing: border-box;
    width: 100%;
}
#bestsell{
    padding-top: 30px;
    padding: 30px 30px;
    /* border: 1px solid red; */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap: 20px;
   /* justify-content: space-evenly; */
}
#bestsell>div img{
    width: 100%;
    border-radius: 12px 12px 0 0;
}
#bestsell>div{
    /* border: 1px solid red; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 12px;
}
#productcontainer{
    text-align: center;
    /* padding-top: 10px; */
    padding: 5px;
    line-height: 10px;
}
.productname{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 20px;
    max-height: 20px*2;
    font-weight: 600;
    font-size: 13px;
}
.pricediv{
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 20px;
    
}
.pricediv>p:nth-child(1){
    color: #969696;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.pricediv>p:nth-child(2){
  color: brown;
  font-weight: 600;
}
.savePrice{
    color: #009d00;
    font-size: 10px;
    font-weight: 600;
}
#hoverButton{
    position: relative;
    bottom: 120px;
    left: 33px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    font-weight: 600;
    /* padding: 10px 30px; */
    display: none;
    z-index: 1;
    

    width: 70%;
    height: 40px;
    margin-bottom: -40px;
    /* border: 1px solid red; */
}
#hoverButton:hover{
    background-color: #009d00;
    
}   
/* #hoverButton:hover #imagehoverdiv img{
   opacity: 0.5;
}    */
#imagehoverdiv{
    /* border: 1px solid red; */
  box-sizing: border-box;
  /* height: fit-content; */
  height: 246px;
}
#imagehoverdiv:hover #hoverImage{
    opacity: 0.3;
}   
 #imagehoverdiv:hover #hoverButton{
     display: block;
     
 }
 #imagehoverdiv:hover #quickview{
     display: block;
     
 }
 #quickview{
     /* border: 1px solid red; */
    background-color: black;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    display: none;
 }


#bellacash{
    width: 150px;
    height: 60px;
    background-color: #ffc400;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 100;
    padding-top: 13px;
    font-size: 15px;
    font-weight: 600;
}
#bellacash img{
   margin-left: 20px;
   margin-right: 7px;
}
#whatsapp{
    width: 60px;
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;

}
#whatsapp img{
    width: 70%;
}
#refine{
    font-weight: 600;
    font-size: 14px;
}
#refine img{
    width: 25px;
    margin-left: 35px;
    margin-right: 10px;
}
.navigator+div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}