#primary .hqw-category-controls {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

#primary .hqw-category-indicators-wrapper {
    display: flex;
    align-items: center;
    height: 32px;
    background: rgba(229, 231, 235, 0.6);
    border-radius: 20px;
    padding: 0 10px;
}

#primary .hqw-category-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

#primary .hqw-category-indicator {
    width: 6px;
    height: 6px;
    background-color: #d1d5db;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#primary .hqw-category-indicator.active {
    background-color: var(--huoqiao-secondary-color, #ef4444);
    width: 20px;
    border-radius: 3px;
}

#primary .hqw-category-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

#primary .hqw-category-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

#primary .hqw-category-btn svg {
    width: 14px;
    height: 14px;
}

#primary .hqw-category-btn:hover,
#primary .hqw-category-btn:active {
    color: var(--huoqiao-secondary-color, #ef4444);
}

@media (max-width: 576px) {
    #primary .hqw-category-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 8px;
    }
}