/* Smart Search Suggestions */

.smart-search-wrap {
    position: relative;
}

.search-suggestions {
    display: none;
    position: absolute;
    z-index: 50;
    top: calc(100% - 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 12px 14px;
    cursor: pointer;
    display: grid;
    gap: 3px;
    border-bottom: 1px solid #f0f0f0;
}

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

.search-suggestion-item:hover {
    background: #f4fff8;
}

.search-suggestion-item strong {
    color: var(--green);
    font-size: 15px;
}

.search-suggestion-item span {
    color: var(--muted);
    font-size: 13px;
}
