/* Notifications / Toast */
.notification {
  position: fixed; top: 1rem; right: 1rem; z-index: 1000;
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-elegant);
  padding: 1rem 1.5rem; max-width: 400px; animation: slideInRight .3s ease-out;
  border-left: 4px solid var(--primary);
}
.notification.error { border-left-color: hsl(0 84% 60%); }

.notification-title {
  font-weight: 600; margin-bottom: .25rem; color: var(--foreground);
}
.notification-description {
  color: var(--muted-foreground); font-size: .875rem;
}

