To add a number before Products on Squarespace like this
You can use this code to Custom CSS box
/* Products Number */
.list-grid {
counter-reset: css-counter 0;
list-style-type: none;
}
div.grid-item {
counter-increment: css-counter 1;
}
.grid-title::before {
content : counter(css-counter) '. ';
}