/** Shopify CDN: Minification failed

Line 89:8 Unexpected "!"

**/
.filter-controls {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: var(--font-body-family); /* match global font */
}

.filter-controls label {
  font-size: large;
  font-weight: bold;
  color: var(--color-foreground);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-controls select {
  font-family: var(--font-body-family);
  font-size: medium;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  border-radius: 4px;
  min-width: 160px;
  margin-bottom: 5rem;
  
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="12" width="12" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2rem;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 🔥 Exactly 3 columns */
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-bottom: 10rem;
}

@media screen and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* stack vertically on small screens */
  }
}

@media screen and (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-image img {
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 🔥 Crops the image while keeping its ratio */
  display: block;
}


WORKING !!!!