/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 95:0 Unexpected "<"
Line 98:8 Expected identifier but found whitespace
Line 98:10 Unexpected "{"
Line 98:19 Expected ":"
Line 98:37 Expected identifier but found "%"
Line 105:9 Expected identifier but found whitespace
Line 105:11 Unexpected "{"
Line 105:20 Expected ":"
Line 105:41 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
.custom-collection-grid {
  text-align: center;
  padding: 40px 20px;
}

.custom-collection-grid h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.45); /* azul marino oscuro con opacidad */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: capitalize;
  transition: background 0.3s ease;
}

.show-more-button {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #0a1428; /* azul marino oscuro */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

@media screen and (max-width: 749px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-item:nth-child(n+5) {
    display: none;
  }

  .collection-item.show {
    display: block;
  }
}
</style>
<style>
.collection-banner-clean {
  width: {{ section.settings.width }}%;
  margin: 0 auto;
  position: relative;
}

.collection-banner-clean .image-container {
  width: 100%;
  height: {{ section.settings.height }}px;
  position: relative;
  overflow: hidden;
}

.collection-banner-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.collection-banner-clean .title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: {{ section.settings.title_color }};
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
</style>