/* Autocomplete: sugestões de termos (categorias e tags) na barra de busca */
.zhf-search-ac-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.zhf-search-ac-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 240px;
    overflow-y: auto;
    z-index: 9999;
}

.zhf-search-ac-wrap.zhf-search-ac-open .zhf-search-ac-list {
    display: block;
}

.zhf-search-ac-item {
    margin: 0;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    border-bottom: 1px solid #eee;
}

.zhf-search-ac-item:last-child {
    border-bottom: 0;
}

.zhf-search-ac-item:hover,
.zhf-search-ac-item:focus {
    background: #f5f5f5;
    outline: 0;
}

.zhf-search-ac-header {
    margin: 0;
    padding: 6px 12px 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    pointer-events: none;
    border-bottom: 1px solid #eee;
}

.zhf-search-ac-icon {
    margin-right: 6px;
    font-style: normal;
}
