/* ═══════════════════════════════════════════
   NOTIFICATION POPUP
   ═══════════════════════════════════════════ */

.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-popup.show {
    display: flex;
}

.notification-popup.success {
    background: #10b981;
    color: white;
}

.notification-popup.error {
    background: #ef4444;
    color: white;
}

.notification-popup.info {
    background: var(--accent);
    color: var(--dark);
}

.notification-popup svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.notification-popup.hide {
    animation: slideOut 0.3s ease-out forwards;
}

@media (max-width: 768px) {
    .notification-popup {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}