
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


#box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}
#parent_box{
    /* border: 1px solid black; */
    box-shadow:0 0 15px rgba(50, 50, 50, 0.3);
    /* width: 300px;
    height:450px; */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transition: all 0.5s;
    overflow: hidden;
}
#parent_box:hover{
    box-shadow:0 0 20px rgba(50, 50, 50, 0.3);
    transform: translateY(-5px);
}
#parent_box img{
    transition: all 0.5s;
}

#parent_box img:hover{
    transform: scale(1.04);
}

img{
   width: 100%;

}
#title1, #price1, #category1{
    background-color: transparent;
    padding:  5px 10px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow:0 0 1px rgba(0, 0, 0, 0.2);

}
h2, h3,p{
    text-align: center;
    font-size: 20px;
}
#cart{
    font-size: 20px;
}
 table img{
    width: 100px;
 }