/**
 * Стили для автодополнения поиска
 */

/* Контейнер подсказок */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    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);
    max-height: 400px;
    overflow-y: auto;
    margin-top: -1px;
}

/* Элемент подсказки */
.autocomplete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

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

.autocomplete-item:hover,
.autocomplete-item.selected {
    background-color: #f8f9fa;
}

/* Контент подсказки */
.autocomplete-item-content {
    flex: 1;
    min-width: 0;
    margin-right: 16px;
}

.autocomplete-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item-name strong {
    color: #007bff;
    font-weight: 600;
}

.autocomplete-item-producer {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Цена */
.autocomplete-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    white-space: nowrap;
}

/* Скроллбар */
.autocomplete-suggestions::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Адаптивность */
@media (max-width: 768px) {
    .autocomplete-suggestions {
        max-height: 300px;
    }
    
    .autocomplete-item {
        padding: 10px 12px;
    }
    
    .autocomplete-item-name {
        font-size: 13px;
    }
    
    .autocomplete-item-producer {
        font-size: 11px;
    }
    
    .autocomplete-item-price {
        font-size: 13px;
    }
}

/* Анимация появления */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.autocomplete-suggestions {
    animation: slideDown 0.2s ease-out;
}

/* Состояние загрузки */
.autocomplete-loading {
    padding: 12px 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Пустое состояние */
.autocomplete-empty {
    padding: 12px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Позиционирование для формы поиска */
.search-form {
    position: relative;
}

/* Убираем стандартное автодополнение браузера */
.search-input {
    autocomplete: off;
}

/* Фокус на поле поиска с открытыми подсказками */
.search-input:focus + .autocomplete-suggestions {
    border-color: #007bff;
}