/* Search form container */
.search-form {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow:visible !important;
}


.search-autocomplete {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 5px;
}

/* Mobile specific styles for autocomplete */
@media (max-width: 1023px) {
    .header-search .search-autocomplete {
        position: absolute;
        top: 100%; /* Adjust based on your header height */

        left: 0;

        max-height: calc(100vh - 60px);
        border-radius: 0;
        border: none;
        border-top: 1px solid #eee;
    }
}

.search-autocomplete__section {
    border-bottom: 1px solid #eee;
}

.search-autocomplete__section:last-child {
    border-bottom: none;
}

.search-autocomplete__section-title {
    padding: 8px 15px;
    font-weight: bold;
    font-size: 14px;
    color: #666;
    background-color: #f8f9fa;
}

.search-autocomplete__items {
    padding: 5px 0;
}

.search-autocomplete__item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.search-autocomplete__item:hover {
    background-color: #f8f9fa;
}

.search-autocomplete__item-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.search-autocomplete__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.search-autocomplete__item-content {
    flex-grow: 1;
    overflow: hidden;
}

.search-autocomplete__item-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.search-autocomplete__item-type {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* Loading state */
.search-autocomplete__loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* No results message */
.search-autocomplete__no-results {
    padding: 15px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.search-autocomplete--loading:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px auto;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
