.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.section-title-wrapper h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  color: #000;
}
.section-title-wrapper span {
  font-size: 17px;
  color: #929292;
  font-weight: 400;
}
.cat-swiper-btn {
  width: 60px;
  height: 60px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cat-swiper-btn img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}
.cat-swiper-btn:hover {
  background-color: #ff8c40;
}
.cat-swiper-btn:hover img {
  filter: brightness(0) invert(1);
}
.categorySwiper {
  padding: 20px 10px 40px 10px !important;
  margin: 0px -10px -40px -10px !important;
}
.cat-card {
  width: 100%;
  height: 310px;
  border: 1px solid #e4e4e4;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 25px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.cat-card:hover {
  border: 2px solid #ff8c40;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.cat-image-box {
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 10px;
}
.cat-image-box img {
  max-width: 190px;
  max-height: 190px;
  object-fit: contain;
}
.cat-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: auto;
  margin-bottom: -5px;
  transition: color 0.3s;
}
.cat-card:hover .cat-title {
  color: #ff8c40;
}
