.catalog__list.position-relative > .row {
  margin: 0 -6px !important;
}

.product-category .char_items {
  display: none !important;
}
/* Стили для 2-го блока (Теги) */
.custom-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 44px; /* Высота одной строки */
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.custom-tags-container.is-expanded {
  max-height: 800px;
}
.custom-tag-item {
  display: inline-flex;
  padding: 8px 18px;
  background: #f5f5f5;
  color: #333;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #eee;
  transition: all 0.2s;
}
.custom-tag-item:hover {
  background: #ebebeb;
  border-color: #5cc29a;
}
.custom-tag-item.is-active {
  font-weight: 700 !important; /* Жирный текст для активной ссылки */
  border-color: #5cc29a;
  background: #fff;
  color: #000;
}
.custom-tags-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #5cc29a;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  padding: 0;
}
.custom-tags-more-btn svg {
  transition: transform 0.3s;
}
.custom-tags-more-btn.active svg {
  transform: rotate(180deg);
}

.catalog_manufacturers {
  overflow: auto;
}

.catalog_manufacturers_wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 5px;
}

.catalog_manufacturers-item {
  flex-shrink: 0;
  border: 1px solid #0000001a;
  border-radius: 5px;
  overflow: hidden;
  padding: 5px;
  gap: 5px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100px;
}

.catalog_manufacturers-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.catalog_manufacturers-item:hover {
  box-shadow:
    14px 0 10px -10px #0000001a,
    -14px 0 10px -10px #0000001a;
  transform: scale(1.05);
}
