.product_card_body ul{
    display: none;
    animation: fadein 0.5s ease-in-out;
}
.product_card_body:hover ul{
    display: flex;
}


@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}