/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 90:0 Unexpected "<"

**/
/* START_SECTION:collection-list-grid (INDEX:10) */
<style>
.shop-by-collection-section {
  padding: 60px 20px;
  text-align: center;
}

.shop-by-collection-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #111;
}
  @media (max-width: 767px) {
  .shop-by-collection-heading {
    font-size: 2rem;
  }
}

.shop-by-collection-subheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}
.shop-by-collection-section {
  padding: 60px 20px 20px 20px; /* Added padding to the top */
  text-align: center;
}

  .shop-by-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Bigger cards */
  gap: 12px; /* Reduced gap */
  justify-items: center;
}

@media (max-width: 767px) {
  .shop-by-collection-grid {
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns on mobile */
  }
}

  
.collection-card {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 300px; /* Increased card width */
  text-align: center;
  transition: transform 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
  max-width: 300px; /* Increased max-width */
  max-height: 300px; /* Increased max-height */
}

.collection-card-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #222;
}
.collection-card {
  text-decoration: none;
  color: inherit;
}

.collection-card:hover {
  text-decoration: none;
}
</style>
/* END_SECTION:collection-list-grid */
