.category-carousel-container {
  position: relative;
  width: 100%;
  max-width: var(--content-max-width, 1400px);
  margin: 0 auto;
  padding-inline: 32px;
  padding-top: 4px;
  padding-bottom: 22px;
  box-sizing: border-box;
}

.swiper-container-category {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 12px;
  touch-action: pan-y;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide.category-item {
  min-height: 152px;
  border-radius: 4px;
  padding: 10px 8px 8px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  outline: none;
}

.swiper-slide.category-item:hover {
  transform: translateY(-1px);
  border-color: #d7d7d7;
  background: #f8f8f8;
  box-shadow: none;
}

.swiper-slide.category-item:focus,
.swiper-slide.category-item:active {
  outline: none;
  border-color: #cfcfcf;
}

.category-item .overlay {
  display: none;
}

.category-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #1f365c;
}

.category-icon img,
.category-icon .smort-category-icon-svg {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.category-info {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 0.68rem;
  line-height: 1.25;
  font-family: var(--fontFamily), sans-serif;
  font-weight: 500;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.category-text {
  margin: 0;
  color: #44566f;
  font-size: 0.73rem;
  line-height: 1.3;
}

.swiper-scrollbar {
  position: static !important;
  width: 100%;
  height: 5px !important;
  margin-top: 12px;
  background: #dedede;
  border-radius: 999px;
}

.swiper-scrollbar-drag {
  background: #737373;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .category-carousel-container {
    width: 100%;
    max-width: var(--content-max-width, 1400px);
    padding-inline: 24px;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .swiper-slide.category-item {
    min-height: 146px;
    border-radius: 4px;
  }

  .category-icon {
    width: 76px;
    height: 76px;
  }

  .category-icon img,
  .category-icon .smort-category-icon-svg {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .category-carousel-container {
    width: 100%;
    max-width: var(--content-max-width, 1400px);
    padding-inline: 16px;
    padding-top: 0;
    padding-bottom: 16px;
  }

  .swiper-slide.category-item {
    min-height: 126px;
    padding: 8px 6px;
  }

  .category-title {
    font-size: 0.62rem;
    min-height: 2.35em;
  }

  .category-text {
    display: none;
  }

  .swiper-scrollbar {
    margin-top: 8px;
    height: 4px !important;
  }
}

@media (max-width: 480px) {
  .category-carousel-container {
    width: 100%;
    max-width: var(--content-max-width, 1400px);
    padding-inline: 16px;
    padding-top: 0;
    padding-bottom: 14px;
  }

  .swiper-slide.category-item {
    min-height: 112px;
    padding: 7px 5px;
    border-radius: 4px;
  }

  .category-icon {
    width: 54px;
    height: 54px;
  }

  .category-icon img,
  .category-icon .smort-category-icon-svg {
    width: 48px;
    height: 48px;
  }

  .category-title {
    font-size: 0.56rem;
    line-height: 1.2;
    min-height: 2.25em;
  }
}
