/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 109:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.section-collection-showcase {
      margin: 10%;
  padding: 60px 20px;
  background: #fff;
}

.section-collection-showcase h2 {
  padding-top: 60px;
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #cb1919;
}

.section-collection-showcase .subheading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.collection-grid {
  margin-left: 10%;
  margin-right: 10%;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
}

@media screen and (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(var(--columns-desktop, 4), 1fr);
  }
}

.collection-card {
  position: relative;
 /* border-radius: 12px; */
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.card-image {
  background-size: cover;
  background-position: center;
  height: 300px;
  transition: transform 0.4s ease;
}

  
.collection-card {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
  
.collection-card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(255, 0, 0, 0.7), rgba(255, 0, 0, 0));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay h3 {
  font-size: 30px;
  margin: 0 0 10px;
  color: #ffffff;
}

.card-overlay p {
  font-size: 14px;
  margin: 0 0 8px;
  color: #ffffff;
}

.card-overlay .cta {
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
  color: #ffffff;
}
</style>