.wholesale-search-suggestions {
    position: fixed;
    z-index: 7000;
    display: none;
    max-height: min(480px, 62vh);
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(18, 38, 52, .16);
    box-sizing: border-box;
    overscroll-behavior: contain;
}

.wholesale-search-suggestions.is-open {
    display: block;
}

.wholesale-search-suggestion {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 8px;
    color: #1f2d36;
    text-decoration: none;
    line-height: 1.45;
    box-sizing: border-box;
}

.wholesale-search-suggestion:hover,
.wholesale-search-suggestion.is-active,
.wholesale-search-suggestion:focus {
    background: #f3f6f8;
    color: #182630;
    outline: none;
    text-decoration: none;
}

.wholesale-search-suggestion-label {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: keep-all;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.25px;
}

.wholesale-search-suggestion-count {
    flex: 0 0 auto;
    color: #82909a;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

.wholesale-search-suggestion-empty {
    padding: 13px 12px;
    color: #7d8991;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 560px) {
    .wholesale-search-suggestions {
        max-height: min(430px, 58vh);
        padding: 5px;
        border-radius: 10px;
    }

    .wholesale-search-suggestion {
        gap: 8px;
        padding: 12px 10px;
    }

    .wholesale-search-suggestion-label {
        font-size: 13px;
        line-height: 1.5;
    }

    .wholesale-search-suggestion-count {
        font-size: 10px;
    }
}
