.be-ss-dropdown{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin-top:4px;
    z-index:9999;
    width:100%;
    max-width:900px;
    display:none;
}
.be-ss-dropdown.open{
    display:block;
}
.be-ss-list{
    max-height:420px;
    overflow-y:auto;
    background:#ffffff;
    border-radius:14px;
    box-shadow:0 10px 35px rgba(0,0,0,0.18);
    border:1px solid rgba(0,0,0,0.05);
}
.be-ss-item{
    display:flex;
    gap:10px;
    padding:10px 14px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #f2f2f2;
}
.be-ss-item:last-child{
    border-bottom:none;
}
.be-ss-thumb{
    flex:0 0 48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.be-ss-thumb img{
    max-width:100%;
    max-height:100%;
    display:block;
    border-radius:6px;
}
.be-ss-info{
    flex:1;
    min-width:0;
}
.be-ss-title{
    font-size:14px;
    font-weight:500;
    color:#222;
    margin-bottom:4px;
    line-height:1.3;
}
.be-ss-price{
    font-size:13px;
    font-weight:700;
    color:#0a7a0a;
}
@media (max-width:768px){
    .be-ss-dropdown{
        max-width:94%;
    }
    .be-ss-item{
        padding:8px 10px;
    }
}
