.ot-home-cart-toast {
  background: #111820;
  bottom: 26px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: grid;
  gap: 5px;
  max-width: min(360px, calc(100vw - 32px));
  opacity: 0;
  padding: 16px 18px;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 10020;
}

.ot-home-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ot-home-cart-toast strong {
  font-size: 15px;
}

.ot-home-cart-toast span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.ot-home-cart-toast a {
  color: #f3ca61;
  font-size: 13px;
  font-weight: 900;
  margin-top: 3px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ot-home-cart-toast.is-error {
  background: #751f1f;
}

.ot-home-add-to-cart.is-adding {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 620px) {
  .ot-home-cart-toast {
    bottom: 18px;
    left: 16px;
    right: 16px;
  }
}
