
 #Product_ui div
{
    width: 350px;
    background-color: #f7f7f7;
    border-radius: 6px;
    transition: all 0.5s;
    padding: 15px;
    margin:20px;
}
#Product_ui img
{
    width: 100%;
}

#Product_ui div:hover
{
    box-shadow: 3px 3px 5px 5px rgba(172, 172, 172, 0.4);
    cursor: pointer;
} 

.buy-now-btn
{
    border: none;
    padding:2px 5px;
    background-color: black;
    color: white;
    border-radius: 6px;
    transition: all 0.5s;
}
.buy-now-btn:hover
{
    box-shadow: 0 0 5px 3px red;
    transition: all 0.5s;
}
