#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.4s ease, fadeOut 0.4s ease 1.6s forwards;
}

.toast::before {
    content: "✓";
    font-size: 18px;
    font-weight: bold;
}

.cart-toast span {
    font-size: 22px;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}














.fly-img {
  position: fixed;
  z-index: 1000;
  pointer-events: none;

  /* ⬇️ Slower + smoother */
  transition:
    left 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    top 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.6s ease,
    height 1.6s ease,
    opacity 1.6s ease;
}

/* Cart bounce */
.cart-bounce {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
