/* Custom Swiper Styles */
.custom-swiper-wrapper {
  display: flex;
}

.custom-swiper-slide {
  flex: 1;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--f-2-f-2-f-2, #f2f2f2);
  background: var(--white-color, #fff);
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  padding: 20px;
}

.custom-swiper-slide .category-card_icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  min-width: 60px;
  background-color: var(--smoke-color);
  border-radius: 999px;
  text-align: center;
  transition: 0.4s ease-in-out;
  margin: auto;
  margin-bottom: 20px;
}

.custom-swiper-slide .category-card_icon img {
  transition: 0.4s ease-in-out;
}

.custom-swiper-slide .category-card_title {
  font-size: 20px;
  font-weight: 500;
  margin-top: -0.23em;
  margin-bottom: 2px;
}

.custom-swiper-slide .category-card_title a {
  color: inherit;
}

.custom-swiper-slide .category-card_title a:hover {
  color: var(--theme-color);
}

.custom-swiper-slide .category-card_text {
  margin-bottom: 17px;
}

.custom-swiper-slide .th-btn {
  padding: 10.5px 20px;
  width: 100%;
}

.custom-swiper-slide:hover .category-card_icon {
  background-color: var(--theme-color);
}

.custom-swiper-slide:hover .category-card_icon img {
  filter: brightness(0) invert(1);
}

/* Navigation Buttons */
.custom-swiper-button-next,
.custom-swiper-button-prev {
  background-color: var(--smoke-color);
  color: var(--theme-color);
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 10px;
}

.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .custom-swiper-slide {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .custom-swiper-slide .category-card_content {
    text-align: center;
  }

  .custom-swiper-slide .category-card_title {
    margin-bottom: 10px;
  }

  .custom-swiper-slide .category-card_text {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
