Skip to content
/* 3 PRODUCTS PER ROW ONLY FOR MATCHING COLLECTION TEMPLATE */
.template-collection-matching .grid {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 15px !important;
}
.template-collection-matching .grid > * {
width: 100% !important;
max-width: 100% !important;
flex: unset !important;
}
@media screen and (max-width: 749px) {
.template-collection-matching .grid {
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
}