.toast-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 280px;
    max-width: 380px;
    padding: 16px 20px;
    background-color: #ffffff;
    color: #1a1d23;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.toast--success { border-left: 4px solid #10b981; }
.toast--error { border-left: 4px solid #ef4444; }
.toast--info { border-left: 4px solid #3b82f6; }
.toast--warning { border-left: 4px solid #f59e0b; }

.toast__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast--success .toast__icon { color: #10b981; }
.toast--error .toast__icon { color: #ef4444; }
.toast--info .toast__icon { color: #3b82f6; }
.toast--warning .toast__icon { color: #f59e0b; }

.toast__content { 
    flex-grow: 1; 
}

.toast__close {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast__close:hover { 
    color: #ffffff; 
}

.woocommerce-message, 
.woocommerce-error, 
.woocommerce-info,
.wpcf7-response-output {
    display: none !important;
}


