/* --- Shared Toast Notification System --- */
#toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  max-width: 350px;
}

.toast {
  background: rgba(19, 19, 19, 0.95);
  backdrop-filter: blur(10px);
  color: #f0ede8;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(40px);
  animation: toastSlideIn 0.4s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #D4AF37;
}

.toast.success { border-left-color: #D4AF37; }
.toast.error { border-left-color: #f87171; }
.toast.warning { border-left-color: #fb923c; }

.toast.fade-out {
  animation: toastSlideOut 0.4s forwards ease;
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.toast.success .toast-icon { fill: #D4AF37; }
.toast.error .toast-icon { fill: #f87171; }
.toast.warning .toast-icon { fill: #fb923c; }

@keyframes toastSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastSlideOut {
  to { opacity: 0; transform: translateX(40px); }
}
