/* Search Autocomplete Styles */
.search-autocomplete-container {
    position: relative;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.autocomplete-results {
    list-style: none;
    margin: 0;
    padding: 0;
}

.autocomplete-results li {
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-results li:last-child {
    border-bottom: none;
}

.autocomplete-results li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.autocomplete-results li a:hover {
    background-color: #f8f8f8;
}

.autocomplete-results i {
    font-size: 18px;
    color: #f91942;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.autocomplete-item {
    flex: 1;
}

.autocomplete-item strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.autocomplete-item span {
    display: block;
    font-size: 12px;
    color: #888;
}

/* Search box on homepage */
.hero-search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

.hero-search-form .main-search-input {
    margin: 0;
}

.hero-search-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}