/* Small Corner Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notification-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notification-icon {
    font-size: 40px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.notification-text {
    flex: 1;
    color: white;
}

.notification-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffd700;
}

.notification-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.iso-badge {
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 15px;
    }
    
    .notification-icon {
        font-size: 35px;
    }
    
    .notification-text strong {
        font-size: 1rem;
    }
    
    .notification-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .notification-popup {
        padding: 12px;
    }
    
    .notification-content {
        gap: 10px;
    }
    
    .notification-icon {
        font-size: 30px;
    }
    
    .notification-text strong {
        font-size: 0.95rem;
    }
    
    .notification-text p {
        font-size: 0.8rem;
    }
    
    .iso-badge {
        font-size: 0.9rem;
    }
}
