/* Quick Add to Cart Toast Notifications */
.quick-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 400px;
}

.quick-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.quick-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.quick-toast-content i {
    font-size: 20px;
    flex-shrink: 0;
}

.quick-toast-success {
    border-left: 4px solid #28a745;
}

.quick-toast-success .quick-toast-content i {
    color: #28a745;
}

.quick-toast-error {
    border-left: 4px solid #dc3545;
}

.quick-toast-error .quick-toast-content i {
    color: #dc3545;
}

/* Button states */
.add-to-cart-btn.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .quick-toast {
        top: 70px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}