/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 123:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.circular-categories {
  text-align: center;
  padding: 40px 0;
}
.circular-categories h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.circular-categories__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.circular-categories__item {
  width: 120px;
  text-align: center;
}
.circular-categories__item a {
  text-decoration: none;
  color: inherit;
}
.circular-categories__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.circular-categories__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circular-categories__title {
    font-size: .875rem;
    font-weight: 500;
    font-family: 'Helvetica';
}
@media screen and (min-width: 768px) {
  .circular-categories__item {
    width: 100px;
    
  }
  .circular-categories__image {
    width: 6rem;
    height: 6rem;
  }
}
  .circular-categories__slider-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.circular-categories__item {
  text-align: center;
  flex: 0 0 auto;
}
.circular-categories__grid {
  justify-self: anchor-center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  width: 100%;
}
.circular-categories__grid {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    max-width: 100%;
    flex-wrap: nowrap;
}

/* Carrusel en móviles */
@media screen and (max-width: 768px) {
  .circular-categories__grid {
  justify-self: baseline;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  width: 900px;
}
.circular-categories__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    flex-wrap: nowrap;
    scrollbar-width: none;
    justify-content: flex-start;
}
  .circular-categories__grid {
    gap: 0px;
    padding-left: 5rem;
}

  .circular-categories__item {
    min-width: 140px;
    scroll-snap-align: start;
  }
}
</style>