/* Landing — Notification/toast styles */

/* Enhanced notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) var(--space-5);
  z-index: var(--z-toast);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 400px;
  margin-right: var(--safe-area-inset-right);
  margin-top: var(--safe-area-inset-top);
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.notification-success {
  border-left: 4px solid #28a745;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-warning {
  border-left: 4px solid #ffc107;
}

.notification-info {
  border-left: 4px solid #17a2b8;
}

.notification i {
  font-size: var(--text-lg);
}

.notification-success i {
  color: #28a745;
}

.notification-error i {
  color: #dc3545;
}

.notification-warning i {
  color: #ffc107;
}

.notification-info i {
  color: #17a2b8;
}

@media (max-width: 768px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
  }

  .notification.show {
    transform: translateY(0);
  }
}
