/**
 * 즐겨찾기 팝업 스타일
 */

#ncg-favorite-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

#ncg-favorite-popup.show {
    display: flex;
}

#ncg-favorite-popup .popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

#ncg-favorite-popup h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

#ncg-favorite-popup p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

#ncg-favorite-popup .button-group {
    margin: 30px 0;
}

#ncg-add-favorite {
    background: #2271b1;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s;
}

#ncg-add-favorite:hover {
    background: #135e96;
}

#ncg-close-popup {
    background: #ddd;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#ncg-close-popup:hover {
    background: #bbb;
}

#ncg-favorite-popup .warning-text {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 모바일 반응형 */
@media (max-width: 600px) {
    #ncg-favorite-popup .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    #ncg-favorite-popup h2 {
        font-size: 20px;
    }
    
    #ncg-add-favorite,
    #ncg-close-popup {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}


