/* ===== Product cart toast ===== */

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  min-width: 280px;
  max-width: calc(100vw - 48px);

  padding: 16px 18px;

  border-radius: 0;
  background: #fffaf5;
  border: 1px solid #ded3c7;
  box-shadow: 0 18px 48px rgba(30, 28, 25, 0.18);

  color: #3f3934;

  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;

  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-toast-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cart-toast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 14px;

  border-radius: 0;
  background: #969d82;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 520px) {
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: 0;
    max-width: none;
  }
}
