/* Category Label Slider for Mobile Banner */
.m-category-label-slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 60px;
  background: transparent;
  position: relative;
  margin: 0 auto;
  padding: 0 8px;
}
.m-category-label-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.m-category-label-slide {
  flex: 0 0 120px;
  max-width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.2s;
}
.m-category-label-slide img {
  max-height: 40px;
  max-width: 100px;
  display: block;
}
