/* Header search typeahead dropdown (SP-105) */
.search-header__form {
    position: relative;
}

.search-typeahead {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 70vh;
    overflow-y: auto;
}

.search-typeahead[hidden] {
    display: none;
}

.search-typeahead__group {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.search-typeahead__group:last-of-type {
    border-bottom: 0;
}

.search-typeahead__label {
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a8a8a;
}

.search-typeahead__item a,
.search-typeahead__item span {
    display: block;
    padding: 8px 16px;
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.3;
}

.search-typeahead__item a:hover,
.search-typeahead__item.is-active a,
.search-typeahead__item.is-active span {
    background: #f5f5f5;
}

.search-typeahead__item span {
    color: #6a6a6a;
    cursor: default;
}

.search-typeahead__empty {
    padding: 16px;
    color: #8a8a8a;
    font-size: 15px;
}

.search-typeahead__all {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: inherit;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 767px) {
    .search-typeahead {
        max-height: 50vh;
        border-radius: 0 0 12px 12px;
    }
}
