/* ============================================================
   🎧 Harmonix — Toast.css (v2.0.0)
   Notifications
   ============================================================ */

   .toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 200;
  }
  
  .toast {
    min-width: 280px;
    padding: 16px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(40px);
    animation: toastSlideIn 0.3s ease forwards;
  }
  
  .toast i {
    font-size: 18px;
  }
  
  .toast.success {
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  }
  
  .toast.warning {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
  }
  
  .toast.error {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
  }
  
  .toast.info {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }
  
  @keyframes toastSlideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .toast .close-btn {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
  }
  
  .toast .close-btn:hover {
    color: var(--gold);
  }
  
  @media (max-width: 768px) {
    .toast-container {
      top: auto;
      bottom: 15px;
      right: 15px;
      left: 15px;
    }
  
    .toast {
      min-width: auto;
    }
  }