
.low-stock-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e67e22;
    color: white;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    animation: slideUp 0.4s ease-in-out;
    z-index: 999999;
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
