.handl-search{
    max-width:1200px;
    margin:40px auto;
    position:relative;
}

.handl-search-inner{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.handl-search-keyword{
    flex:1;
}

.handl-search-keyword input{
    width:100%;
    height:50px;
    border:1px solid #6C4CF1;
    border-radius:.25rem;
    padding:0 22px;
    font-size:17px;
    outline:none;
	font-weight: 400;
	line-height: 1.5;
}

.handl-search-category{
    width:300px;
}

.handl-search-category select{
    width:100%;
    height:50px;
    border:1px solid #6C4CF1;
    border-radius:.25rem;
    padding:0 18px;
	font-weight: 400;
    font-size:17px;
	line-height: 1.5;
}

.handl-search-button{
    width:170px;
}

.handl-search-button button{
    width:100%;
    height:50px;
    border:0;
    border-radius:.25rem;
    background:#6446F5;
    color:#fff;
    font-size:17px;
    font-weight:400;
    cursor:pointer;
}

#handl-search-results{
    display:none;
}

@media (max-width:768px){

    .handl-search-keyword,
    .handl-search-category,
    .handl-search-button{

        width:100%;
        flex:0 0 100%;

    }

    .handl-search-button{

        margin-top:5px;

    }

}

#handl-search-results{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    width:720px;
    max-width:calc(100vw - 40px);
    max-height:460px;
    background:#FFFFFF;
    border:1px solid #ECECEC;
    border-radius:18px;
    overflow-x:hidden;
    overflow-y:auto;
    box-shadow:
        0 18px 50px rgba(0,0,0,.14);
    z-index:99999;
    animation:handlPopup .18s ease;
}

@keyframes handlPopup{
    from{
        opacity:0;
        transform:translateY(10px);

    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes handlPopup{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#handl-search-results::-webkit-scrollbar{

    width:8px;

}

#handl-search-results::-webkit-scrollbar-track{

    background:#F7F7F7;

}

#handl-search-results::-webkit-scrollbar-thumb{

    background:#D4D4D4;

    border-radius:20px;

}

#handl-search-results::-webkit-scrollbar-thumb:hover{

    background:#B8B8B8;

}




.handl-result{
    display:flex;
    gap:14px;
    align-items:center;
    padding:10px 16px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
	transition:.18s;
}

.handl-result:hover{
    background:#F8F6FF;
}

.handl-thumb{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

.handl-info{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.handl-info > *{

    margin:0;
    padding:0;

}

.handl-title{
    font-size:15px;
    font-weight:600;
	margin:1px 0 0;
    line-height:1.7;
}

.handl-category{
    font-size:12px;
    color:#777;
	margin:1px 0 0;
    line-height:1.7;
}

.handl-price{
    font-size:13px;
    font-weight:600;
    color:#6C4CF1;
	 margin:1px 0 0;
    line-height:1.7;
}

.handl-search-keyword{
    position:relative;
}

.handl-selected{

    background:#F5F2FF;

    box-shadow:
        inset 2px 0 0 #6C4CF1,
        0 6px 18px rgba(108,76,241,.12);

    border-radius:12px;

}

.handl-selected .handl-title{

    color:#6C4CF1;

}


.handl-star{

    display:inline-flex;

    align-items:center;

    margin-left:4px;

    color:#F4B400;

    font-size:.85em;

    line-height:1;

    vertical-align:middle;

}



.handl-search-icon{

    position:absolute;

    left:24px;

    top:50%;

    transform:translateY(-50%);

    z-index:5;

    font-size:18px;

    color:#888;

    pointer-events:none;

}

.handl-search-keyword input{

    padding-left:60px;

}







