 .category-slider-wrap {
   position: relative;
 }

@media (min-width: 1023px) {
 .experience-commerce_layouts-containerLayout .experience-commerce_layouts-popularCategories .category-layout-grid {
  padding-left: 0;
  padding-right: 0;
 }
 
 
 .category-slider-wrap {
   position: relative;
   padding-left: 50px;
   padding-right: 50px;
 }
}

.experience-commerce_layouts-popularCategories .popular-categories.circles-categorias {
     display: block;
}

/* Fix Category Grid (Circles) swipe on Desktop */
.experience-commerce_layouts-containerLayout .experience-commerce_layouts-popularCategories .category-layout-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
}

.category-layout-grid.is-dragging {
  cursor: grabbing;
}

.category-layout-grid .category-tile-wrapper {
  flex: 0 0 75%;
}

.category-layout-grid  a {
 /* user-select: none; */
  -webkit-user-drag: none;
}
.category-layout-grid .image-cropper a picture img {
  width: 100%;
  height: 100%;
  display: block;

  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 1024px) {
  .category-layout-grid {
    scroll-snap-type: x mandatory;
  }

  .category-layout-grid .category-tile-wrapper {
    scroll-snap-align: start;
  }

  .category-layout-grid.is-dragging {
    scroll-snap-type: none;
  }
}


.category-slider-arrow {
  position: absolute;
  top: 55px;
  transform: translateY(-50%);

  z-index: 10;

  width: 48px;
  height: 48px;

  padding: 0;
  border: 0;
  background: transparent;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.category-slider-arrow.is-visible {
  display: flex;
}

@media (max-width: 1024px) {
   .category-slider-arrow.is-visible { display: none; }
}


.category-slider-arrow--prev {
  left: 0;
}

.category-slider-arrow--next {
  right: 0;
}

.category-slider-arrow svg {
  display: block;
  pointer-events: none;
}


