/* ===== TOP CATEGORY TABS – FORCE VERSION ===== */

.top-category-tabs {
  display: flex !important;
  justify-content: center !important;
  gap: 28px !important;
  padding: 14px 16px 6px !important;
  background: #fff !important;
  border-bottom: 1px solid #e6e6e6 !important;
  position: relative !important;
}

/* tab text */
.top-category-tabs .tab-link {
  position: relative !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #222 !important;
  padding: 6px 12px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  z-index: 1 !important;
}

/* BLUE PILL */
.top-category-tabs .tab-link::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.35s ease !important;
  z-index: -1 !important;
}

/* ACTIVE TAB */
.top-category-tabs .tab-link.active {
  color: #3f66ff !important;
  font-weight: 600 !important;
}

.top-category-tabs .tab-link.active::before {
  transform: scaleX(1) !important;
}

/* HOVER (text only) */
@media (hover: hover) {
  .top-category-tabs .tab-link:hover {
    color: #3f66ff !important;
  }
}
