/* ============================================
   Animations - Minimal & clinical
   Only subtle transitions, no decorative motion
   ============================================ */

:root {
    --transition-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Soft Hover for Buttons */
.btn-soft-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-soft-hover:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}