/* ===== PRODUCT CATEGORY SECTION ===== */
.tp-product-category {
  background-color: #F3F5F7 !important;
  padding: 60px 0 15px;
}

/* ===== SECTION TITLE ===== */
.tp-section-title-wrapper-3 {
  margin-bottom: 45px;
}

.tp-section-title-pre-3 {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05c2a;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.tp-section-title-pre-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #e05c2a;
}

.tp-section-title-3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

/* ===== SWIPER / SLIDER ===== */
.tp-product-categories-slider {
  overflow: hidden;
  width: 100%;
}

.tp-product-categories-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.tp-product-categories-slider .swiper-slide {
  flex-shrink: 0;
  width: 219px;
  margin-right: 20px;
}

/* ===== CATEGORY ITEM ===== */
.tp-product-category-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 16px 24px;
  margin-bottom: 40px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: 1px solid #eaedf0;
}

.tp-product-category-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

/* ===== CATEGORY THUMBNAIL ===== */
.tp-product-category-thumb {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-product-category-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.tp-product-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.tp-product-category-item:hover .tp-product-category-thumb img {
  transform: scale(1.07);
}

/* ===== CATEGORY CONTENT ===== */
.tp-product-category-content {
  padding-top: 4px;
}

.tp-product-category-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 6px;
  line-height: 1.4;
}

.tp-product-category-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tp-product-category-title a:hover {
  color: #e05c2a;
}

.tp-product-category-content p {
  font-size: 13px;
  color: #8a93a2;
  margin: 0;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .tp-section-title-3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .tp-product-category {
    padding: 40px 0 10px;
  }

  .tp-section-title-3 {
    font-size: 22px;
  }

  .tp-section-title-pre-3 {
    font-size: 12px;
  }

  .tp-product-category-item {
    padding: 14px 12px 18px;
  }

  .tp-product-category-title {
    font-size: 13px;
  }
}