.search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .45rem);
    z-index: 80;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e6e6ec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    max-height: min(420px, 70vh);
    overflow-y: auto;
    text-align: left;
}

.search-suggestions__list {
    margin: 0;
    padding: 0;
}

.search-suggestions__group {
    position: relative;
    border-bottom: 1px solid #e6e6ec;
    padding-left: 4px;
}

.search-suggestions__group:last-child {
    border-bottom: 0;
}

.search-suggestions__group::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-primary, var(--theme-accent, #6a00f4));
}

.search-suggestions__header {
    display: block;
    padding: .7rem 1rem .55rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #1a1a1a;
    border-bottom: 1px solid #ececf1;
    background: #fff;
}

.search-suggestions__items {
    display: block;
}

.search-suggestions__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
    padding: .8rem 1rem;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f4;
    font-weight: 500;
    font-size: .95rem;
    line-height: 1.35;
    text-decoration: none;
}

.search-suggestions__item:last-child {
    border-bottom: 0;
}

.search-suggestions__item:hover,
.search-suggestions__item:focus {
    background: #f5f5f7;
    color: var(--theme-primary, var(--theme-accent, #6a00f4));
}

.search-suggestions__title {
    display: block;
    font-weight: 600;
}

.search-suggestions__subtitle {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    color: #6b6b6b;
}

.search-suggestions__item:hover .search-suggestions__subtitle,
.search-suggestions__item:focus .search-suggestions__subtitle {
    color: #7a7a7a;
}

.search-suggestions__empty {
    padding: 1rem;
    text-align: center;
    color: #6b6b6b;
    font-size: .92rem;
}