#categoriesScroll {
  justify-content: flex-start;
}

/* cuando NO hay scroll */
#categoriesWrapper.no-scroll #categoriesScroll {
  justify-content: center;
  overflow-x: hidden;
}

/* cuando HAY scroll */
#categoriesWrapper.has-scroll #categoriesScroll {
  overflow-x: auto;
}

/* Ocultar scrollbar horizontal definitivamente */
#categoriesScroll {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge viejo */
}

#categoriesScroll::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}
.tab-arrow {
  width: 36px;
  height: 36px;

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

  font-size: 30px;
  line-height: 1;

  background: none;
  border: none;

  color: var(--secondary-color);
  cursor: pointer;

  transition: color 0.2s ease;
}

.tab-arrow.is-hidden {
  display: none;
}

.tab-arrow:hover {
  color: var(--primary-color);
}

.category-tab {
  position: relative;
  padding-bottom: 10px;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-color, #5f6368);
  transition: color 0.2s ease;
}

.category-tab:hover {
  color: var(--primary-color);
}

.category-tab.active {
  color: var(--primary-color, #1a73e8);
  font-weight: 500;
}

.category-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color, #1a73e8);
  border-radius: 2px;
}
