.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card.product {
    transition: transform 0.3s ease;
}

.card.product:hover {
    transform: translateY(-5px);
} 