/* ═══════════════════════════════════════
   TOAST — Notification messages
   ═══════════════════════════════════════ */

.toast {
  position: fixed;
  top: var(--y-space-xxl);
  left: 50%;
  transform: translateX(-50%);
  background: var(--y-color-toast-bg);
  color: var(--y-color-white);
  padding: var(--y-space-m) var(--y-space-xxl);
  border-radius: var(--y-radius-xl);
  z-index: var(--y-z-toast);
  font-weight: var(--y-weight-semibold);
  box-shadow: var(--y-shadow-xl);
  opacity: 0;
  transition: opacity var(--y-transition-smooth);
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
}

/* ═══════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .toast {
    padding: var(--y-space-m) var(--y-space-xl);
  }
}

@media (max-width: 768px) {
  .toast {
    font-size: var(--y-font-s);
    max-width: 90vw;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .toast {
    top: var(--y-space-l);
    padding: var(--y-space-m) var(--y-space-l);
  }
}
