/* ==========================================================================
   FREEPIXELAI.COM - CATEGORY PAGE STYLES
   ========================================================================== */

.category-hero {
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border-color);
}

.category-hero-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.35);
}

.category-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.category-hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 1.5rem auto;
}

/* Category Filter Bar */
.category-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.category-search-input {
    max-width: 380px;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.category-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.category-tools-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}
