/* ========================================
   استایل نوتیفیکیشن (Toast)
   ======================================== */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gradient-secondary);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  font-family: 'Vazirmatn', sans-serif;
}

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