/* === NK Category Bar Styling === */
.nk-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  background: #fff;
  font-family: inherit;
}

.nk-category-item {
  padding: 6px 14px;
  background: #f7f7f7;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nk-category-item:hover {
  background: #0073aa;
  color: #fff;
}

.nk-show-more {
  background: transparent;
  border: none;
  color: #0073aa;
  cursor: pointer;
  font-size: 14px;
}

.nk-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nk-category-bar {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .nk-category-item {
    display: inline-block;
  }
}
