/* ==========================================
   365-emart Animations & Smooth Transitions
   ========================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.product-card, .category-card, .blog-card {
    animation: fadeIn 0.6s ease-in-out;
}

.modal-content {
    animation: scaleUp 0.3s ease-in-out;
}

/* Subtle Hover Pulses */
.action-btn:active, .btn-primary:active, .btn-secondary:active {
    transform: scale(0.97);
}