.fade-in {
    animation: fadeIn 0.6s ease-in-out forwards;
    opacity: 0;
    transform: scale(0.95);
}

/* Keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}