/* 커스텀 커서 스타일 - 통일된 디자인 */

/* 모든 클릭 가능한 요소에서 기본 커서 숨기기 */
body a, 
body button, 
body .work-item, 
body .filter-btn, 
body .submit-button, 
body .menu-toggle, 
body .template-card, 
body .fullpackage-card {
    cursor: none !important;
}

/* 입력폼에서는 기본 커서 유지 */
input, textarea, select {
    cursor: text !important;
}

/* 커스텀 커서 */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #FFC14D;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    left: 0;
    top: 0;
}

.custom-cursor.hover {
    transform: scale(1.5);
    background: #FFC14D;
}

/* 모바일에서는 커서 숨기기 */
@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }
    
    body a, 
    body button, 
    body .work-item, 
    body .filter-btn, 
    body .submit-button, 
    body .menu-toggle, 
    body .template-card, 
    body .fullpackage-card {
        cursor: pointer !important;
    }
}
