.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy-900);
  color: var(--text-inverse);
  padding: 16px 32px;
  padding-right: 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s var(--ease-gold);
  box-shadow: var(--shadow-2xl);
  border-right: 3px solid var(--gold);
  max-width: 460px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-right-color: var(--emerald);
  background: #1a2e1a;
}

.toast.error {
  border-right-color: var(--terra-cotta);
  background: #2a1a18;
}
