/* Custom Toaster CSS */
#ecvap-toaster-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
    pointer-events: none;
}

.ecvap-toast {
    background: white;
    border: 1px solid rgba(44, 26, 14, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    transform: translateY(100%) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.ecvap-toast.hide {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
}

.ecvap-toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ecvap-toast-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: 14px;
    color: var(--color-brun);
    font-weight: 500;
}

.ecvap-toast-content a.button {
    margin-top: 8px;
    background: #0068AC !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    align-self: flex-start;
    border: none !important;
}

/* Hide default WooCommerce notices */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    display: none !important;
}
