/* Toast Notifications for WooCommerce */

#wc-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.wc-toast {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: auto;
    border-left: 5px solid #28a745;
}

.wc-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.wc-toast-icon {
    font-size: 20px;
    color: #28a745;
}

.wc-toast.remove .wc-toast-icon {
    color: #dc3545;
}

.wc-toast.remove {
    border-left-color: #dc3545;
}

.wc-toast-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    flex-grow: 1;
}

.wc-toast-close {
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
    line-height: 1;
    padding: 0 5px;
}

.wc-toast-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    #wc-toast-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    .wc-toast {
        width: 100%;
        min-width: auto;
    }
}