.catalog-sections-spoiler-wrapper {
  position: relative;
  margin-bottom: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.catalog-sections-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.catalog-sections-tags.js-sections-tags-collapsed {
  max-height: 78px;
}
.section-tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  line-height: 1.2;
  color: #333;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.section-tag-btn:hover {
  border-color: #999;
  background: #f8f9fa;
  color: #000;
}
.section-tag-btn.active {
  border-color: #2d2d2d;
  background: #2d2d2d;
  color: #fff;
}
.section-tag-count {
  opacity: 0.6;
  font-size: 11px;
}
.section-tag-btn.active .section-tag-count {
  color: #fff;
  opacity: 0.8;
}
.sections-toggle-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: #0078d7;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0 0 0;
  margin-top: 8px;
  border-top: 1px dashed #f0f0f0;
  cursor: pointer;
  outline: none;
  color: #2d2d2d;
}
.sections-toggle-btn:hover {
  text-decoration: underline;
}