/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 129:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.collection-grid-section {
  padding: 50px 0;
  text-align: center;
}
.collection-grid-section h2 {
  margin-bottom: 2rem;
  justify-content: center;
  display: flex;
}
  
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px;
  text-align: left;
}

.collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.collection-image-container {
  border-radius: 20px;
  overflow: hidden;
}

.collection-image-container img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}

/* Aplica el zoom cuando se hace hover en la tarjeta completa */
.collection-card:hover .collection-image-container img {
  transform: scale(1.05);
}  

.collection-card img {
  width: 100%;
  /* height: 400px; */
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}

.collection-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-left: 5px;
  justify-content: space-between;
}

.collection-title {
  font-size: x-large;
  font-weight: 600;
}

.collection-title:hover {
  color: #fe1d26
}  

.btn-collection {
  cursor: pointer;
  border-radius: 50%;
  background: black;
  color: white;
  border: 1px solid black;
  padding: 1rem;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-position 0.4s ease, color 0.4s ease;
  background-image: linear-gradient(to right, #fe1d26 50%, black 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.collection-card:hover .btn-collection {
  background-position: 0 0;
  border: 1px solid #fe1d26;
}


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

@media (max-width: 640px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px;
  }
  .collection-card img {
    height: 200px; /* Ajustamos para que no sean tan altas en móvil */
  }

  .collection-title {
    font-size: medium;
  }

  .collection-title-wrapper {
    gap: 6px;
    margin-top: 8px;
    padding-left: 3px;
  }
}
</style>