.search-wrapper {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}

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

.suggestion-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
}

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

.suggestion-item:hover,
.suggestion-item.focused {
    background-color: #f8f4ff;
    color: #6a0dad;
}

.suggestion-item i {
    color: #aaa;
    font-size: 12px;
}

.suggestion-highlight {
    font-weight: 700;
    color: #6a0dad;
}

.suggestions-empty {
    padding: 12px 16px;
    font-size: 13px;
    color: #999;
}