Not Going into Products Details

I am trying to scrape data from below website. It is identifying the pages but unable to go into individual pages. Instead it is just opening the prdocut image. Can some one help?

Url: Bernhardt Furniture | Free Shipping – House&Hold

Sitemap:

{"_id":"Bernhardt_All_FromHousehold","startUrl":["https://www.houseandhold.com/collections/bernhardt"],"selectors":[{"id":"Pages","paginationType":"auto","parentSelectors":["_root","Pages"],"selector":".next a","type":"SelectorPagination"},{"id":"Plist","linkType":"linkFromAttributes","multiple":true,"parentSelectors":["Pages","Plist"],"selector":"img.ls-is-cached","type":"SelectorLink"},{"id":"Pname","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"MSRP","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":".compare-price span","type":"SelectorText"},{"id":"Brand","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":".metaitemwrap a","type":"SelectorText"},{"id":"SKU","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"span#varaint_sku","type":"SelectorText"},{"id":"Size","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"ul:nth-of-type(4) li","type":"SelectorText"},{"id":"Material","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"ul:nth-of-type(5) li","type":"SelectorText"}]}

use
div.productinfomobile a
to follow product pages

and make this selector as a child to pages selector only

Could you please guide on how to do it.

check it:

{"_id":"Bernhardt_All_FromHousehold","startUrl":["https://www.houseandhold.com/collections/bernhardt"],"selectors":[{"id":"Plist","linkType":"linkFromHref","multiple":true,"parentSelectors":["Pages"],"selector":"div.productinfomobile a","type":"SelectorLink"},{"id":"Pages","paginationType":"auto","parentSelectors":["_root","Pages"],"selector":".next a","type":"SelectorPagination"},{"id":"Pname","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"MSRP","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":".compare-price span","type":"SelectorText"},{"id":"Brand","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":".metaitemwrap a","type":"SelectorText"},{"id":"SKU","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"span#varaint_sku","type":"SelectorText"},{"id":"Size","multiple":false,"parentSelectors":["Plist"],"regex":"","selector":"ul:nth-of-type(4) li span","type":"SelectorText"},{"extractAttribute":"","id":"Material","parentSelectors":["Plist"],"selector":"ul:nth-of-type(5) li","type":"SelectorGroup"}]}

Thanks Bro.

It is Working.