/* ==========================================================================
   KOMPONEN: Toast — notifikasi singkat
   ========================================================================== */
.c-toast-wrap {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: var(--z-toast);
}
.c-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  min-width: 240px;
  max-width: 320px;
  background: var(--ink-3);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--indigo);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  color: var(--text);
  animation: toastIn var(--dur-med) var(--ease);
}
.c-toast.success {
  border-left-color: var(--jade);
}
.c-toast.warning {
  border-left-color: var(--gold);
}
.c-toast.danger {
  border-left-color: var(--shu);
}
.c-toast.info {
  border-left-color: var(--indigo-light);
}
.c-toast .toast-icon {
  font-family: var(--font-display);
  font-size: 16px;
  flex-shrink: 0;
}
.c-toast .toast-close {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 12px;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
