/* Gallery container */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between items */
  justify-content: center; /* center items horizontally */
  margin-bottom: 40px;
}

/* Individual items */
.gallery-item {
  flex: 1 1 240px; /* grow, shrink, base width */
  max-width: 350px; /* increase max size if you want larger images */
  text-align: center;
}

/* Remove the second/third specific margins */
.gallery-item.second,
.gallery-item.third {
  margin: 0;
}

/* Make images fill the item width */
.gallery-item img {
  width: 100%;
  height: auto;
}
.on-sale {
  color: #a00;
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 45%; /* 2 items per row on tablets */
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%; /* 1 item per row on mobile */
  }
}
