/* Payment Error Notifications */
.payment-error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: #ef4444;
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

.payment-error-notification .error-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.payment-error-notification .material-icons {
    font-size: 1.5rem;
}

.payment-error-notification.fade-out {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .payment-error-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
