/**
 * Enhanced Search Styles
 */

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    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: 300px;
    overflow-y: auto;
    display: none;
}

.suggestions-section {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.suggestions-section:last-child {
    border-bottom: none;
}

.suggestions-section h4 {
    margin: 0 15px 10px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.search-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

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

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

.suggestion-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.suggestion-info {
    flex: 1;
}

.suggestion-title {
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 14px;
    color: #333;
}

.suggestion-price {
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
}

.suggestion-brand {
    font-size: 12px;
    color: #666;
}

.suggestion-type {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-suggestions {
        max-height: 250px;
    }
    
    .search-suggestion-item {
        padding: 8px 12px;
    }
    
    .suggestion-title {
        font-size: 13px;
    }
    
    .suggestion-price {
        font-size: 13px;
    }
}