.search-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(47, 139, 42, 0.1);
    color: var(--brand-green);
    font-size: 2rem;
}

.search-suggest-input {
    border-radius: 999px;
    padding: 10px 45px 10px 20px;
}

.search-suggest-input:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 0.2rem rgba(47, 139, 42, 0.15);
}

.search-suggest-btn {
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;
    color: var(--brand-green);
    background: transparent;
    border: none;
}

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

.search-suggest-list.is-open {
    display: block;
}

.search-suggest-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: inherit;
    text-decoration: none;
}

.search-suggest-list li a:hover,
.search-suggest-list li a.is-active {
    background: #f4f4f4;
}

.search-suggest-list li img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-suggest-list li span {
    font-size: 14px;
    line-height: 1.3;
}

.search-suggest-list li.is-query a i {
    width: 36px;
    text-align: center;
    color: #888;
    flex-shrink: 0;
}
