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

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

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

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

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

.search-item img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

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

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

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

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

.search-price{
    color:#28a745;
    font-size:13px;
    font-weight:700;
}

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

.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;
}