/* Product Card Hover Effect */
.product-card-link .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-link:hover .card {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}