/* iMart classic toast — navy + red only */
.imart-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.imart-toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  padding: 0.875rem 1rem;
  background: #0a1628;
  border: 1px solid rgba(204, 34, 41, 0.4);
  border-left: 4px solid #cc2229;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #c8dff0;
  font-family: Inter, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  animation: imart-toast-in 0.25s ease;
}
.imart-toast.imart-toast--error {
  border-left-color: #cc2229;
  border-color: rgba(204, 34, 41, 0.5);
}
.imart-toast.imart-toast--success {
  border-left-color: #cc2229;
  border-color: rgba(204, 34, 41, 0.4);
}
@keyframes imart-toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.imart-toast.hiding {
  animation: imart-toast-out 0.2s ease forwards;
}
@keyframes imart-toast-out {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
[data-bs-theme="light"] .imart-toast {
  background: #f0f4f8;
  border-color: rgba(204, 34, 41, 0.35);
  color: #0a1628;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
