Why does this skip one item from each collection being scraped?

Hi,
I'm currently scraping a site and most of the information I want is being pulled.
Stanton Carpet

Problem:
Example: It skips the product represented for each collection which is shown at the medadata start page in the sitemap. First collection Acceleration has a representive image showing on that beginning page. When you open up that collection, that particular product image is the color STEEL. It will scrape the other 9 colors but not STEEL. It does this same behavior for each collection. It skips the color that is showing on that beginning metadata page. There is some connection with the link selector being the color in question.

Can someone explain why it does this?

{"_id":"stantoncarpetcomm","startUrl":["https://www.stantoncarpet.com/commercial-carpet"],"selectors":[{"id":"paginationwrap","type":"SelectorLink","parentSelectors":["_root","paginationwrap"],"selector":"#btnNext","multiple":true,"delay":0},{"id":"maincollectionspages","type":"SelectorLink","parentSelectors":["_root","paginationwrap"],"selector":"#content > div > form > div:nth-child(6) > div > div.product-list.row > div > div.filter-image-container.center > a","multiple":true,"delay":0},{"id":"colorprodpages","type":"SelectorLink","parentSelectors":["maincollectionspages"],"selector":"div.col-sm-6:nth-of-type(n+2) a:nth-of-type(1)","multiple":true,"delay":0},{"id":"construction","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"li.list-group-item:nth-of-type(6)","multiple":false,"regex":"","delay":0},{"id":"colorprodname","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"li.list-group-item:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"subcollectionname","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"li.list-group-item:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"patternrepeat","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"li.list-group-item:nth-of-type(5)","multiple":false,"regex":"","delay":0},{"id":"yarncontentcategory","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"li.fiber","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"div.col-md-9:nth-of-type(2) p:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["colorprodpages"],"selector":"img.img-555x555","multiple":false,"delay":0},{"id":"maincollectionname","type":"SelectorText","parentSelectors":["colorprodpages"],"selector":"span.product-name","multiple":false,"regex":"","delay":0}]}

Thanks for any guidance!

-J