/* Gedeeld: toast + cart (lichtgewicht, ook op productpagina) */

.export-cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10001;
  max-width: min(92vw, 420px);
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background: #111827;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 768px) {
  .export-cart-toast {
    left: auto;
    right: 28px;
    transform: translateX(0) translateY(120%);
    font-size: 17px;
  }
  .export-cart-toast--show {
    transform: translateX(0) translateY(0);
  }
}
