.flex-search-suggest {
    position: fixed;
    z-index: 5000;
    background: #17191d;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    max-height: 420px;
}

.flex-search-suggest-list {
    display: flex;
    flex-direction: column;
    max-height: 420px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.flex-search-suggest-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.flex-search-suggest-item {
    background: transparent;
    border: 0;
    color: #f5f7fa;
    text-align: left;
    width: 100%;
    padding: 9px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: background 0.12s ease;
}

.flex-search-suggest-item + .flex-search-suggest-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.flex-search-suggest-item:hover,
.flex-search-suggest-item.is-active {
    background: rgba(255, 107, 53, 0.16);
}

.flex-search-suggest-label {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.flex-search-suggest-price {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    border-radius: 6px;
    background: rgba(25, 209, 127, 0.14);
    border: 1px solid rgba(25, 209, 127, 0.22);
    color: #b2f3d0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.flex-search-suggest-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
}

