/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: var(--card);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  min-width: 300px;
  max-width: 500px;
  border-left: 4px solid var(--accent);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-left-color: var(--success);
}

.toast-success i {
  color: var(--success);
  font-size: 1.25rem;
}

.toast-error {
  border-left-color: var(--danger);
}

.toast-error i {
  color: var(--danger);
  font-size: 1.25rem;
}

.toast-warning {
  border-left-color: var(--warning);
}

.toast-warning i {
  color: var(--warning);
  font-size: 1.25rem;
}

.toast-info {
  border-left-color: var(--accent, #06b6d4);
}

.toast-info i {
  color: var(--accent, #06b6d4);
  font-size: 1.25rem;
}

.toast-message {
  flex: 1;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

@media (max-width: 576px) {
  .toast-container {
    bottom: 20px;
    left: 12px;
    right: 12px;
    transform: none;
  }

  .toast {
    min-width: auto;
    width: 100%;
  }
}
