.sc-fast-search{
    position:fixed;
    z-index:9999;
    max-height:min(610px,72vh);
    overflow-y:auto;
    background:#f5f7f8;
    border:1px solid #dce5e1;
    border-radius:12px;
    box-shadow:0 18px 45px rgba(23,45,35,.20);
}

.sc-fast-search[hidden]{
    display:none !important;
}

.sc-fast-section{
    padding:11px;
    border-bottom:1px solid #dfe6e3;
}

.sc-fast-heading{
    margin:0 0 8px;
    font-size:12px;
    font-weight:800;
    color:#607486;
}

.sc-fast-chips{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.sc-fast-chip{
    display:inline-flex;
    align-items:center;
    min-height:31px;
    padding:6px 12px;
    background:#fff;
    border:1px solid #dde5e2;
    border-radius:17px;
    color:#496072;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}

.sc-fast-chip:hover,
.sc-fast-chip.is-active{
    border-color:#93cdb3;
    background:#eef9f3;
    color:#087a54;
}

.sc-fast-products{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
}

.sc-fast-product{
    min-width:0;
    display:grid;
    grid-template-columns:54px minmax(0,1fr) auto;
    gap:10px;
    align-items:center;
    padding:9px;
    background:#fff;
    border:1px solid #dfe5e2;
    border-radius:9px;
    color:#24342d;
    text-decoration:none;
}

.sc-fast-product:hover,
.sc-fast-product.is-active{
    border-color:#97cdb5;
    background:#f4fbf7;
}

.sc-fast-image{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    overflow:hidden;
    border:1px solid #e4ebe7;
    border-radius:8px;
    background:#fff;
}

.sc-fast-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.sc-fast-placeholder{
    width:31px;
    height:31px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#eaf7f1;
    color:#07865c;
    font-size:22px;
    font-weight:700;
}

.sc-fast-info{
    min-width:0;
}

.sc-fast-info strong{
    display:block;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-size:13px;
}

.sc-fast-info small,
.sc-fast-meta{
    display:block;
    margin-top:2px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    color:#6d7973;
    font-size:10px;
}

.sc-fast-price{
    min-width:76px;
    text-align:right;
}

.sc-fast-price strong{
    display:block;
    white-space:nowrap;
    color:#172b22;
    font-size:12px;
}

.sc-fast-price small{
    display:block;
    margin-top:3px;
    white-space:nowrap;
    color:#16845e;
    font-size:9px;
}

.sc-fast-price small.is-out{
    color:#a35454;
}

.sc-fast-categories{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
}

.sc-fast-category{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:43px;
    padding:8px 10px;
    background:#fff;
    border:1px solid #dfe5e2;
    border-radius:8px;
    color:#31473d;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}

.sc-fast-category:hover,
.sc-fast-category.is-active{
    border-color:#97cdb5;
    background:#f4fbf7;
    color:#087a54;
}

.sc-fast-category-icon{
    width:27px;
    height:27px;
    flex:0 0 27px;
    display:grid;
    place-items:center;
    border-radius:7px;
    background:#eaf7f1;
    color:#07865c;
    font-size:18px;
}

.sc-fast-all{
    display:block;
    padding:12px 14px;
    background:#fff;
    color:#087a54;
    text-align:center;
    text-decoration:none;
    font-size:12px;
    font-weight:800;
}

.sc-fast-all:hover,
.sc-fast-all.is-active{
    background:#eef9f3;
}

.sc-fast-loading{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#fff;
    color:#65736c;
    font-size:12px;
}

.sc-fast-loading span{
    width:15px;
    height:15px;
    border:2px solid #d3e1da;
    border-top-color:#07865c;
    border-radius:50%;
    animation:scFastSpin .6s linear infinite;
}

.sc-fast-empty{
    padding:22px;
    background:#fff;
    text-align:center;
}

.sc-fast-empty strong{
    display:block;
    font-size:13px;
}

.sc-fast-empty small{
    display:block;
    margin-top:4px;
    color:#77827d;
    font-size:11px;
}

@keyframes scFastSpin{
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:700px){

    .sc-fast-search{
        left:8px !important;
        width:calc(100vw - 16px) !important;
        max-height:68vh;
    }

    .sc-fast-products{
        grid-template-columns:1fr;
    }

    .sc-fast-categories{
        grid-template-columns:1fr;
    }
}
