Impossible to identify the type of the information to scrap

I am struggling to scrap this website : Planches de Surf | Decathlon
It only detects the title as text but info such as price, brand or reviews don't appear. Do you have any idea which type these information are so I can scrap correctly (I have tried under image, links etc.)

Thank you so much for your help!
Roxanne

Hi,

Please share the sitemap you have prepared so far and outline the specific data points you aim to scrape.

Hi sorry for the missing information!
Sitemap : decathlinsurf2
I would like to get product title, price, brand

Thanks!
Roxanne

In case the right element cannot be located with point-and-click, the HTML has to be inspected:

See below a reference sitemap with the required selectors and see if you can find them in the HTML:

{"_id":"decathlon-fr","startUrl":["https://www.decathlon.fr/tous-les-sports/surf/planches-de-surf"],"selectors":[{"id":"pagination","parentSelectors":["_root","pagination"],"paginationType":"auto","type":"SelectorPagination","selector":"button[data-direction='right']"},{"id":"product-wrapper","parentSelectors":["pagination"],"type":"SelectorElement","selector":".listing-section [role=\"listitem\"]","multiple":true},{"id":"title","parentSelectors":["product-wrapper"],"type":"SelectorText","selector":".product-title h2","multiple":false,"regex":""},{"id":"brand","parentSelectors":["product-wrapper"],"type":"SelectorText","selector":".product-title strong","multiple":false,"regex":""},{"id":"price","parentSelectors":["product-wrapper"],"type":"SelectorText","selector":"[aria-label=\"Prix\"]","multiple":false,"regex":""}]}

Thanks it works !!!
I do really appreciate your help !