/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 140:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .colecciones-carrusel-wrapper {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .colecciones-carrusel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .colecciones-carrusel-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
  }

  .colecciones-carrusel-header a {
    color: #00503c;
    font-weight: 600;
    text-decoration: none;
  }

  .colecciones-carrusel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .colecciones-card {
    width: 220px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
  }

  .colecciones-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .colecciones-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .colecciones-card-text {
    padding: 0.75rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
  }

  .colecciones-card-text span {
    flex-grow: 1;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .colecciones-card-logo {
    height: 18px;
    max-width: 36px;
    margin-left: 0.5rem;
  }

  @media screen and (max-width: 1024px) {
    .colecciones-card {
      width: 45%;
    }
  }

  @media screen and (max-width: 768px) {
    .colecciones-carrusel-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 1rem;
      scroll-snap-type: x mandatory;
      padding-inline: 1rem;
      scroll-padding-left: 1rem;
      -webkit-overflow-scrolling: touch;
    }

    .colecciones-carrusel-grid::-webkit-scrollbar {
      height: 3px;
    }

    .colecciones-carrusel-grid::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    .colecciones-carrusel-grid::-webkit-scrollbar-track {
      background: transparent;
    }

    .colecciones-card {
      width: 150px;
      max-width: 150px;
    }

    .colecciones-card-text {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .colecciones-card-logo {
      margin-left: 0;
    }
  }
</style>