.ntt-search-result{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    border:1px solid #ececec;
    margin-top:8px;
    overflow:hidden;
    display:none;
    z-index:9999;
    max-height:500px;
    overflow-y:auto;
}

.ntt-search-result.active{
    display:block;
}

.ntt-search-item{
    display:flex;
    gap:12px;
    align-items:center;
    padding:12px;
    text-decoration:none;
    color:#222;
    transition:.2s;
    border-bottom:1px solid #f3f3f3;
}

.ntt-search-item:last-child{
    border-bottom:none;
}

.ntt-search-item:hover{
    background:#f7faff;
}

.ntt-search-item img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

.ntt-search-info{
    flex:1;
    min-width:0;
}

.ntt-search-title{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    color:#222;
    margin-bottom:4px;
}

.ntt-search-sku{
    font-size:12px;
    color:#888;
    margin-bottom:4px;
}

.ntt-search-price{
    font-size:15px;
    color:#e60023;
    font-weight:700;
}

.ntt-search-stock{
    margin-top:5px;
    display:inline-block;
    font-size:12px;
    color:#fff;
    background:#888;
    padding:2px 8px;
    border-radius:20px;
}

.ntt-search-loading,
.ntt-search-empty{
    padding:18px;
    text-align:center;
    color:#777;
    font-size:14px;
}

@media(max-width:768px){

    .ntt-search-result{
        width:100%;
        left:0;
        right:0;
    }

    .ntt-search-item img{
        width:52px;
        height:52px;
    }

}