Scrape names and price form pagination link without going into prod link

Hello,

I am trying to extract description and prices from a e-commerce site. i don't want to go into the prod link to avoid being blocked and also to make it faster. I am trying to extract the name, description and price from the pagination page.
The problem is that the prod name and price are in 2 different rows and not in the same row (different column). I tried to do the same also on the test website and I have the same problem, so I am clearly doing something wrong.
I watched all the videos tutorial but I am missing something.

Any help would be greatly appreciated.
Merry Xmas everyone
Thanks :christmas_tree:

Url: https://www.webscraper.io/test-sites/e-commerce/static

Sitemap:
{"_id":"test_www","startUrl":["https://www.webscraper.io/test-sites/e-commerce/static"],"selectors":[{"id":"group","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.caption","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["group"],"selector":"a.title","multiple":true,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["group"],"selector":"h4.pull-right","multiple":true,"regex":"","delay":0}]}

In the example, uncheck "Multiple" for the title and price selectors and you'll get the result you expect. Each product element (parent selector) has exactly one title and price, so these selectors shouldn't have "Multiple" checked.

Thanks a lot @KasparsWS. That was it! Now it works perfectly!