.autocomplete-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: #007bff;
}

.suggestions {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.suggestion:hover {
    background: #f5f5f5;
}

.suggestion:last-child {
    border-bottom: none;
}

.suggestion-content {
    display: flex;
    align-items: center;
}

.suggestion-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.suggestion-text {
    flex: 1;
}

.suggestion-title {
    font-weight: 600;
    margin-bottom: 4px;
}
.suggestion-title em{
	font-weight: 700;
	color: #C0A375;
	margin-right: 1px;
}

.suggestion-description {
    color: #666;
    font-size: 14px;
}
.suggestion-description em{
	margin-right: 1px;
	color: #C0A375;
}

.no-results {
    padding: 12px 16px;
    color: #666;
    font-style: italic;
}

@media(max-width: 575.98px){
	.autocomplete-container{
		padding-left: 0;
		padding-right: 0;
	}
	.suggestion-description{
		font-size: 13px;
	}
}

