/* Global Search Styles */

/* Global search indicator */
.global-search-indicator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.global-search-indicator.active {
    background-color: #4CAF50;
    color: white;
}

/* Global search results styling */
.global-search-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.global-search-header h2 {
    margin: 0;
    font-size: 1.5rem;
    flex-grow: 1;
}

.back-to-results-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.back-to-results-btn:hover {
    background-color: #e0e0e0;
}

.back-to-results-btn i {
    margin-right: 5px;
}

.global-search-results {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-section {
    margin-bottom: 20px;
}

.category-header {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 15px;
}

.category-header a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-header a:hover {
    color: #0066cc;
}

.product-count {
    color: #666;
    font-size: 0.9em;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.no-results {
    padding: 30px;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.global-loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .global-search-indicator {
        right: 40px;
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .global-search-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .back-to-results-btn {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .category-products {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}