.test-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;   /* increase this number for more spacing */
  padding: 20px; /* optional: adds space around the whole grid */
}


.snipcart-add-item
{
  
  width: 140px;
  height: 40px;
  border-radius: 15px;
}


.test-img {
 
  height: 150px;      /* all thumbnails same height */
  width: auto;        /* keep proportions */
  margin: 10px;
  object-fit: cover;  /* crop edges for a clean grid */
  cursor: pointer;
   border: 6px solid #a4a4c1;

  }