/* ===================================
   FEATURE: Trending Searches Section
   Version: 1.0
   =================================== */

.trending-section {
    padding: 2rem 0;
    /* Removed dark background - using body purple-blue gradient */
}

.trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trending-category {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    /* Using purple gradient from style.css */
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.trending-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.trending-category-icon {
    font-size: 1.5rem;
}

.trending-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trending-category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trending-chip {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trending-chip:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(4px);
}