#shop-core-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    pointer-events: none;
}

.shop-core-toast {
    pointer-events: auto;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.3s;
    border-left: 4px solid #ccc;
    font-size: 14px;
}

.shop-core-toast.woocommerce-error {
    border-left-color: #ef4444;
    /* Tailwind red-500 */
}

.shop-core-toast.woocommerce-message {
    border-left-color: #10b981;
    /* Tailwind emerald-500 */
}

.shop-core-toast.woocommerce-info {
    border-left-color: #3b82f6;
    /* Tailwind blue-500 */
}

.shop-core-toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.5;
}

.shop-core-toast-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}