.custom-cat-wrapper {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
}

.custom-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-item {
  border-bottom: 1px solid #eee;
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.sub-cat {
  display: none;
  padding-right: 15px;
}

.arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

.cat-item.active .arrow {
  transform: rotate(-135deg);
}

.hidden-cat {
  display: none;
}

.show-more-btn {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  border: none;
  cursor: pointer;
  background: #f3f3f3;
}

.custom-cat-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
