/**
 * gda WooCommerce Grid - Benachrichtigungen
 * Gehoert zu js/gda-notifications.js
 */

.gda-notification {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    max-width: 360px;
    padding: 16px 20px;
    border-left: 5px solid #F15A24;
    border-radius: 4px;
    background: #1E213D;
    box-shadow: 0 8px 24px rgba(30, 33, 61, 0.25);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.gda-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.gda-notification.success {
    border-left-color: #2ecc71;
}

.gda-notification.error {
    border-left-color: #e74c3c;
}

.gda-notification.warning {
    border-left-color: #f1c40f;
}

.gda-notification.info {
    border-left-color: #2980b9;
}

@media (max-width: 600px) {
    .gda-notification {
        right: 16px;
        left: 16px;
        bottom: 16px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gda-notification {
        transition: none;
    }
}
