
/* Mobile Filter Modal Styles */
.kjo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}
.kjo-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    animation: scaleIn 0.3s forwards;
}
.kjo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}
.kjo-modal-header h3 { margin: 0; font-size: 1.2rem; }
.kjo-modal-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #888; }
.kjo-modal-body { padding: 20px; overflow-y: auto; }
.kjo-modal-body .sidebar-filter-list li a { padding: 12px 5px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }


