/* Search Suggestions Styles */
.predictive-search__item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.predictive-search__item-content {
    flex: 1;
    min-width: 0;
}

.predictive-search__item-heading {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.predictive-search__item-price {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.predictive-search__heading {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    padding: 8px 16px 0;
}

.predictive-search__results-list {
    padding: 0;
    margin: 0;
}

.predictive-search__list-item {
    border-bottom: 1px solid #f0f0f0;
}

.predictive-search__list-item:last-child {
    border-bottom: none;
}

.predictive-search__item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.predictive-search__item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    color: inherit;
}

.predictive-search__item i {
    margin-right: 8px;
    color: #999;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .predictive-search__item {
        padding: 10px 12px;
    }
    
    .predictive-search__item-image {
        width: 35px;
        height: 35px;
    }
    
    .predictive-search__item-heading {
        font-size: 13px;
    }
    
    .predictive-search__item-price {
        font-size: 11px;
    }
}
