.search-dropdown{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    background:#fff;
    border:1px solid #e5e5e5;
    border-top:none;
    border-radius:0 0 12px 12px;
    z-index:9999;
    max-height:450px;
    overflow-y:auto;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.search-dropdown.d-none{
    display:none;
}

.search-item{
    display:flex;
    flex-direction:row-reverse;
    align-items:center;
    gap:12px;
    padding:12px 15px;
    text-decoration:none;
    color:#222;
    transition:.25s;
    border-bottom:1px solid #f3f3f3;
    text-align:right;
}

.search-item:last-child{
    border-bottom:none;
}

.search-item:hover{
    background:#f8fbff;
}

.search-item img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;
    flex-shrink:0;
}

.search-info{
    flex:1;
    min-width:0;
    text-align:right;
}

.search-name{
    font-size:14px;
    font-weight:700;
    color:#222;
    margin-bottom:5px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.search-category{
    font-size:12px;
    color:#777;
    min-height:18px;
}

.search-category:empty{
    display:none;
}

.search-bottom{
    display:flex;
    flex-direction:row-reverse;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
}

.search-price{
    color:#1e88e5;
    font-size:14px;
    font-weight:700;
}

.search-price:empty{
    display:none;
}

.search-status{
    font-size:12px;
    font-weight:600;
}

.search-status:empty{
    display:none;
}

.search-empty{
    padding:25px;
    text-align:center;
    color:#888;
}

.mobile-search{
    position:relative;
}

#mobile-search-results{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    z-index:9999;
}