.live-search{z-index:999;position:relative}
.live-search__ul{position:absolute;width:100%;max-height:80vh;overflow-y:auto;list-style:none;background:#fff;border-radius:var(--border-radius-1);box-shadow:0 6px 12px rgba(0, 0, 0, .2);
padding: 20px;
display: grid;
gap: 12px;
}
.live-search__ul::-webkit-scrollbar{width:8px;background:#eee;border-radius:4px}
.live-search__ul::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:4px}
.live-search__section{margin:0;font-weight:700;color:var(--body-c)}
.live-search__category{margin:0 0 20px}
.live-search__category-item{display:inline-block;padding:0 15px 5px 0;font-size:.9em;font-weight:500;cursor:pointer}
.live-search__item{display:flex;align-items:center;padding: 0;cursor:pointer;border-radius:var(--border-radius-1)}
/* .live-search__section + .live-search__item{margin-top:-5px;} */
/* .live-search__item:hover{background:rgba(0, 0, 0, .02)} */
.live-search__image{padding:0 10px 0 0;text-align:center}
.live-search__image > img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}
.live-search__wrapper{width:100%;padding:0 10px;
    display: grid;
    gap: 4px;
}
.live-search__name, .live-search__name span{
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: var(--grey-800);
}
.live-search__model {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: var(--grey-400);
}
.live-search__rating{min-height:0 !important;margin:10px 0 0}
.live-search__rating .rating{min-height:0 !important;margin:0 !important}
.live-search__price{flex-wrap:wrap;width:100px;padding:0 0 0 10px;white-space:nowrap; justify-content: end;}
.live-search__price span{display:block;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    text-align: right;
    color: var(--grey-400);
}
.live-search__price .price-new{margin:0;
color: var(--grey-800);}
.live-search__more{justify-content:center;padding:5px 0;font-weight:500;line-height:30px;border:none !important;background:#f7f7f7}
.live-search__loading{height:34px}
.live-search__loading:before{position:absolute;top:50%;left:50%;display:block;width:20px;height:20px;margin:-10px auto auto -10px;content:'';border:solid 3px;border-color:#f6846a #f6846a transparent;border-radius:100%;animation:spin 1s infinite linear}
.live-search__section.category.heading {
    margin-top: 20px;
}

.live-search__category.custom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    
}

.live-search__category.custom .live-search__category-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 8px 12px;
}

.live-search__category.custom .live-search__category-item .live-search__category-item__image {
    width: 60px;
    height: 60px;
}

.live-search__category-item__wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-search__category-item__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: var(--grey-800);
}

.live-search__category-item__total {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: var(--grey-400);
}

@media (max-width:768px){
    .live-search__ul{max-height:calc(100vh - 150px)}
}