/* Header switch: Для дома / Для бизнеса */
.shen-header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
  padding-top: 10px;
  padding-bottom: 6px;
}

.shen-header-brand .header-middle-bar__container-logo,
.shen-header-brand .header-floating__logo {
  padding: 0;
  max-width: 148px;
  width: 148px;
}

.shen-header-brand .header-middle-bar__logo,
.shen-header-brand .header-floating__logo img {
  max-height: 48px;
  width: auto;
}

@media screen and (min-width: 1400px) {
  .shen-header-brand .header-middle-bar__container-logo {
    max-width: 210px;
    width: 210px;
  }

  .shen-header-brand .header-middle-bar__logo {
    max-height: 58px;
  }
}

.shen-audience-switch {
  --shen-audience-color: var(--primary-color, #8f261d);
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  padding: 2px;
  background: #f6eeec;
  border-radius: 999px;
  font-family: var(--font-family, Arial, sans-serif);
}

.shen-header-brand .shen-audience-switch {
  margin: 0 0 8px;
  width: 100%;
  min-width: 196px;
}

.shen-audience-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--shen-audience-color);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.shen-audience-switch__item:hover {
  color: var(--shen-audience-color);
  text-decoration: none;
}

.shen-audience-switch__item:hover:not(.is-active) {
  background: rgba(143, 38, 29, 0.08);
}

.shen-audience-switch__item.is-active {
  background: var(--shen-audience-color);
  color: #fff;
}

.shen-audience-switch__item:focus-visible {
  outline: 2px solid var(--shen-audience-color);
  outline-offset: 2px;
}

.header-floating .shen-header-brand {
  gap: 5px;
  padding-top: 4px;
  padding-bottom: 2px;
}

.header-floating .shen-header-brand .header-floating__logo {
  width: 140px;
  max-width: 140px;
}

.header-floating .shen-header-brand .shen-audience-switch {
  margin-bottom: 6px;
}

@media (max-width: 1280px) {
  .shen-header-brand .shen-audience-switch {
    min-width: 180px;
  }

  .shen-audience-switch__item {
    padding: 6px 10px;
    font-size: 10px;
  }
}

@media (max-width: 1023px) {
  .shen-audience-switch {
    display: none;
  }
}

:root {
  --inputs-buttons-border-radius: 10px;
}

.button,
.button.button_rect,
.button.button_fill,
.header-middle-bar-shop-catalog-button,
.header-floating__dropdown-btn,
.catalog-dropdown-button.button {
  border-radius: 10px;
}

.input-search__input {
  border-radius: 10px 0 0 10px;
}

.input-search__button.button {
  border-radius: 0 10px 10px 0;
}

.product-compact,
.product-extend,
.banners__item,
.product-add-to-cart,
.product-cart-form__dp-container .dp-product {
  border-radius: 10px;
}

