/* Search Suggestions */
.search-container {
    position: relative;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
    max-height: 300px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.suggestion-item:hover {
    background-color: #f9fafb;
}
.suggestion-item.active {
    background-color: #f3f4f6;
}
.highlight {
    font-weight: 600;
    color: #d4af37;
}
