

/* Start:/local/assets/css/brands.css?17872334586764*/
.brand-catalog__intro {
  display: flex;
  max-width: 980px;
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 32px;
}

.brand-catalog__description {
  flex: 1 1 auto;
  min-width: 0;
}

.brand-catalog__description > :last-child {
  margin-bottom: 0;
}

.brand-catalog__image {
  display: flex;
  width: 240px;
  min-width: 240px;
  min-height: 160px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  background: var(--black_bg_black, #fff);
}

.brand-catalog__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 180px;
}

.brand-catalog__categories {
  margin-bottom: 48px;
}

.brand-catalog__subbrands {
  margin-bottom: 48px;
}

.brand-catalog__subbrand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.brand-catalog__subbrand {
  display: flex;
  min-height: 104px;
  padding: 16px;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: var(--black_bg_black, #fff);
}

.brand-catalog__subbrand-logo {
  display: flex;
  width: 64px;
  min-width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--light_bg_black, #f5f5f5);
  overflow: hidden;
}

.brand-catalog__subbrand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.brand-catalog__subbrand-placeholder {
  color: var(--white_text_black, #333);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-catalog__subbrand-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-catalog__subbrand-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.brand-catalog__subbrand-count {
  margin-top: 5px;
  color: #999;
  font-size: 13px;
}

.brand-catalog__category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.brand-catalog__category {
  display: flex;
  min-height: 108px;
  padding: 14px;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: var(--black_bg_black, #fff);
}

.brand-catalog__category-image {
  display: flex;
  width: 72px;
  min-width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-catalog__category-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-catalog__category:hover .brand-catalog__category-image img {
  transform: scale(1.05);
}

.brand-catalog__category-placeholder {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-base-color, #ffd600);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-catalog__category-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-catalog__category-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.brand-catalog__category-count {
  margin-top: 5px;
  color: #999;
  font-size: 13px;
}

.brand-catalog__products-head {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-catalog__products-head h2 {
  margin: 0;
}

.brand-catalog__sort {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brand-catalog__sort-link {
  padding: 8px 12px;
  color: var(--white_text_black, #333);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
}

.brand-catalog__sort-link--active {
  border-color: var(--theme-base-color, #ffd600);
  background: var(--theme-base-color, #ffd600);
  color: var(--theme-base-color-contrast, #111);
}

.brand-index__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-index__item {
  display: flex;
  min-height: 224px;
  padding: 12px;
  flex-direction: column;
  text-decoration: none;
  background: var(--black_bg_black, #fff);
  overflow: hidden;
}

.brand-index__logo {
  display: flex;
  min-height: 132px;
  padding: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.brand-index__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-index__item:hover .brand-index__logo img {
  transform: scale(1.04);
}

.brand-index__placeholder {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--theme-base-color, #ffd600);
  border-radius: 50%;
  color: var(--white_text_black, #333);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-index__info {
  display: flex;
  padding: 18px 10px 10px;
  flex-direction: column;
}

.brand-index__name {
  font-size: 20px;
  font-weight: 600;
}

.brand-index__count {
  margin-top: 7px;
  color: #999;
  font-size: 14px;
}

.brand-menu-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.brand-menu-links__item {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white_text_black, #333);
  font-size: 13px;
  text-decoration: none;
}

.brand-menu-links__item:hover {
  background: var(--light_bg_black, #f5f5f5);
}

@media (max-width: 991px) {
  .brand-catalog__category-grid,
  .brand-catalog__subbrand-grid,
  .brand-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-menu-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .brand-catalog__intro {
    flex-direction: column;
    gap: 20px;
  }

  .brand-catalog__image {
    width: 100%;
    min-width: 0;
  }

  .brand-catalog__products-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-catalog__sort {
    justify-content: flex-start;
  }

  .brand-catalog__category-grid,
  .brand-catalog__subbrand-grid,
  .brand-index__grid,
  .brand-menu-links {
    grid-template-columns: 1fr;
  }

  .brand-index__item {
    min-height: 112px;
    padding: 10px;
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }

  .brand-index__logo {
    width: 108px;
    min-width: 108px;
    min-height: 88px;
    padding: 12px;
  }

  .brand-index__logo img {
    max-height: 64px;
  }

  .brand-index__placeholder {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .brand-index__info {
    min-width: 0;
    padding: 0 8px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-catalog__category-image img,
  .brand-index__logo img {
    transition: none;
  }
}

/* End */
/* /local/assets/css/brands.css?17872334586764 */
