Problem in scrapping products details from hepsiburada

Describe the problem.
When I try to scrape data from this site It does not scrape all data and shows null values. How can I do that? Thanks in advance who will help me.

Url: https://www.hepsiburada.com/

Sitemap:
{id:"sitemap code"}

{"_id":"hepsiburada","startUrl":["https://www.hepsiburada.com/spor-ayakkabilar-c-384551?filtreler=cinsiyet:Erkek"],"selectors":[{"id":"Products Links","type":"SelectorLink","parentSelectors":["_root"],"selector":".box a","multiple":true,"delay":0},{"id":"Title","type":"SelectorText","parentSelectors":["Products Links"],"selector":".best-price-trick font font, .product-information span.brand-name","multiple":false,"regex":"","delay":0},{"id":"Price","type":"SelectorText","parentSelectors":["Products Links"],"selector":"[itemprop='price'] span","multiple":false,"regex":"","delay":0},{"id":"Seller","type":"SelectorText","parentSelectors":["Products Links"],"selector":".\36 31222f6-5a42-48ed-bbd0-354737bdb3d5 font font","multiple":false,"regex":"","delay":0},{"id":"Brand","type":"SelectorText","parentSelectors":["Products Links"],"selector":"a.\38 0b0f000-5c9e-4e43-b039-f24efe6b512f","multiple":false,"regex":"","delay":0},{"id":"Discount","type":"SelectorText","parentSelectors":["Products Links"],"selector":"span.badge","multiple":false,"regex":"","delay":0},{"id":"Stock Code","type":"SelectorText","parentSelectors":["Products Links"],"selector":".data-list tr:contains('Stok Kodu') td","multiple":false,"regex":"","delay":0},{"id":"Warranty Period(Months)","type":"SelectorText","parentSelectors":["Products Links"],"selector":".data-list tr:contains('Garanti Süresi (Ay)') td","multiple":false,"regex":"","delay":0},{"id":"Image1","type":"SelectorImage","parentSelectors":["Products Links"],"selector":".synced img","multiple":false,"delay":0},{"id":"Image2","type":"SelectorImage","parentSelectors":["Products Links"],"selector":"div.active:nth-of-type(2) img[itemprop='image']","multiple":false,"delay":0},{"id":"Image3","type":"SelectorImage","parentSelectors":["Products Links"],"selector":"div.active:nth-of-type(3) img[itemprop='image']","multiple":false,"delay":0},{"id":"Image4","type":"SelectorText","parentSelectors":["Products Links"],"selector":"div.active:nth-of-type(4) img[itemprop='image']","multiple":false,"regex":"","delay":0},{"id":"Image5","type":"SelectorText","parentSelectors":["Products Links"],"selector":"div.active:nth-of-type(5) img[itemprop='image']","multiple":false,"regex":"","delay":0}]}

Some of your scrapers are using selectors which are too specific, e.g. for Seller it is currently a.\38 0b0f000-5c9e-4e43-b039-f24efe6b512f
This would only work for one specific page, probably the original page you used to create the sitemap.

For Seller, you need a better selector like:
span.seller > span a

For Brand, try:
div > span.brand-name