:root {
  /* Цвета */
  --whiter: #FFF;
  --black: #333;
  --black-60: rgba(51, 51, 51, 0.60);
  --black-30: rgba(51, 51, 51, 0.30);
  --black-10: rgba(51, 51, 51, 0.10);
  --BEAU-BLUE: #C2D2E1;
  --SUNRISE: #FFC845;
  --gray-bg: #F4F4F4;
  
  /* Типографика */
  --font-family: 'Manrope', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1;
  --line-height-normal: 1.2;
  --line-height-relaxed: 1.3;
  
  /* Отступы и размеры */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 48px;
  
  /* Транзиции */
  --transition-fast: 0.25s ease-in-out;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
  
  /* Тени */
  --shadow-dropdown: 0 1px 12.3px 0 rgba(0, 0, 0, 0.00), 0 1px 30.8px 2px rgba(0, 0, 0, 0.06);
  
  /* Брейкпоинты */
  --vp-1920: 1920px;
  --vp-1440: 1440px;
  --vp-1280: 1280px;
  --vp-1024: 1024px;
  --vp-768: 768px;
  --vp-375: 375px;
}

/* Миксины через CSS-переменные */
:root {
  --mixin-hover-focus: {
    transition: color var(--transition-normal);
  };
  
  --mixin-transition-all: {
    transition: all var(--transition-normal);
  };
  
  --mixin-flex-center: {
    display: flex;
    align-items: center;
    justify-content: center;
  };
  
  --mixin-flex-between: {
    display: flex;
    align-items: center;
    justify-content: space-between;
  };
}

/* Медиа-запросы */
@media (max-width: 1919px) {
  :root {
    --container-padding: 96px;
  }
}

@media (max-width: 1439px) {
  :root {
    --container-padding: 70px;
  }
}

@media (max-width: 1279px) {
  :root {
    --container-padding: 0;
  }
}

/* Основные стили */
.new-header {
  font-family: var(--font-family);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--whiter);
  border-bottom: 1px solid var(--black-10);
}

.header-mobile {
  font-family: var(--font-family);
}

.new-header:has(.header-alert__wrapper) .new-header__search--active {
  top: 85px;
}

.new-header .btn {
  cursor: pointer;
  overflow: hidden;
  width: fit-content;
  border: 0;
  border-radius: 4px;
  padding: 12px 24px 10px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  letter-spacing: -0.3px;
  color: var(--black) !important;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast), text-indent 0s;
  overflow-wrap: anywhere;
  word-break: break-word;
  user-select: none;
}

.new-header .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-header__container {
  max-width: var(--vp-1920);
  margin: 0 auto;
  padding-inline: 200px;
}

@media (max-width: 1919px) {
  .new-header__container {
    padding-inline: var(--container-padding, 96px);
  }
}

@media (max-width: 1439px) {
  .new-header__container {
    padding-inline: var(--container-padding, 70px);
  }
}

@media (max-width: 1279px) {
  .new-header__container {
    display: none;
  }
}

.new-header__top {
  background: var(--SUNRISE);
}

@media (max-width: 1279px) {
  .new-header__top {
    display: none;
  }
}

.new-header__top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-header__top-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.new-header__top-menu-item {
  position: relative;
  padding: var(--spacing-sm) 0;
}

.new-header__top-menu-item:not(:has(.new-header__top-menu-submenu)) .new-header__top-menu-link svg {
  display: none;
}

.new-header__top-menu-item:hover .new-header__top-menu-submenu,
.new-header__top-menu-item:focus .new-header__top-menu-submenu {
  opacity: 1;
  pointer-events: auto;
}

.new-header__top-menu-item:hover .new-header__top-menu-link svg,
.new-header__top-menu-item:focus .new-header__top-menu-link svg {
  transform: rotate(180deg);
}

.new-header__top-menu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333332;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  letter-spacing: -0.28px;
  transition: color var(--transition-normal);
}

.new-header__top-menu-link svg {
  transition: transform var(--transition-normal);
}

.new-header__top-menu-link:hover,
.new-header__top-menu-link:focus {
  color: var(--black-60);
}

.new-header__top-menu-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  padding: 10px 20px;
  border-radius: 0 0 4px 4px;
  background: var(--whiter);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  z-index: 10;
}

.new-header__top-menu-submenu-item {
  border-bottom: 1px solid var(--black-10);
}

.new-header__top-menu-submenu-item:last-child {
  border-bottom: none;
}

.new-header__top-menu-submenu-link {
  display: block;
  padding: 13px 0;
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: -0.28px;
  border-bottom: 1px solid var(--black-10);
  white-space: nowrap;
  transition: color var(--transition-normal);
}

.new-header__top-menu-submenu-link:last-child {
  border-bottom: none;
}

.new-header__top-menu-submenu-link:hover,
.new-header__top-menu-submenu-link:focus {
  color: var(--black-60);
}

.new-header__top-contacts {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.new-header__top-contacts-item {
  position: relative;
  padding: var(--spacing-sm) 0;
  color: var(--black-60);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
}

.new-header__top-contacts-item:not(:has(.new-header__top-contacts-submenu)) .new-header__top-contacts-link svg {
  display: none;
}

.new-header__top-contacts-item:hover .new-header__top-contacts-submenu,
.new-header__top-contacts-item:focus .new-header__top-contacts-submenu {
  opacity: 1;
  pointer-events: auto;
}

.new-header__top-contacts-item:hover .new-header__top-contacts-link svg,
.new-header__top-contacts-item:focus .new-header__top-contacts-link svg {
  transform: rotate(180deg);
}

.new-header__top-contacts-link {
  color: var(--black-60);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  transition: color var(--transition-normal);
}

.new-header__top-contacts-link svg {
  transition: transform var(--transition-normal);
}

.new-header__top-contacts-link:hover,
.new-header__top-contacts-link:focus {
  color: var(--black);
}

.new-header__top-contacts-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  padding: 10px 20px;
  border-radius: 0 0 4px 4px;
  background: var(--whiter);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  z-index: 10;
}

.new-header__top-contacts-submenu-item {
  border-bottom: 1px solid var(--black-10);
}

.new-header__top-contacts-submenu-item:last-child {
  border-bottom: none;
}

.new-header__top-contacts-submenu-link {
  display: block;
  padding: 13px 0;
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: -0.28px;
  border-bottom: 1px solid var(--black-10);
  white-space: nowrap;
  transition: color var(--transition-normal);
}

.new-header__top-contacts-submenu-link:last-child {
  border-bottom: none;
}

.new-header__top-contacts-submenu-link:hover,
.new-header__top-contacts-submenu-link:focus {
  color: var(--black-60);
}

.new-header__main {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: 10px 0;
}

.new-header__catalog {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.new-header__catalog.is-active .new-header__catalog-burger span {
  background: var(--SUNRISE);
}

.new-header__catalog.is-active .new-header__catalog-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.new-header__catalog.is-active .new-header__catalog-burger span:nth-child(2) {
  transform: rotate(-45deg);
}

.new-header__catalog.is-active .new-header__catalog-burger span:nth-child(3) {
  opacity: 0;
}

.new-header__catalog.is-active .new-header__catalog-menu {
  opacity: 1;
  pointer-events: auto;
}

.new-header__catalog-burger {
  padding: 13px 9px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.new-header__catalog-burger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: background var(--transition-normal), transform var(--transition-normal), opacity var(--transition-normal);
}

.new-header__catalog-burger:hover span,
.new-header__catalog-burger:focus span {
  background: var(--SUNRISE);
}

.new-header__catalog-burger:focus-visible {
  box-shadow: unset !important;
}

.new-header__catalog-link {
  color: #333332;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  letter-spacing: -0.32px;
}

.new-header__search {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}

.new-header__search::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  background: var(--whiter);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.new-header__search--active {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset;
  display: grid;
  grid-template-columns: auto 90px 40px;
  gap: 10px;
  z-index: 1;
}

.new-header__search--active::before {
  opacity: 1;
}

.new-header__search--active .new-header__search-form {
  grid-template-columns: auto 90px 40px;
}

.new-header__search--active .new-header__search-wrapper {
  width: 640px;
}

.new-header__search--active .new-header__search-btn,
.new-header__search--active .new-header__search-close {
  display: flex !important;
}

.new-header__search--active .new-header__search-content {
  display: block;
}

.new-header__search-wrapper {
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid var(--black-30);
  background: var(--whiter);
  transition: border-color var(--transition-normal), width var(--transition-normal);
  z-index: 1;
}

.new-header__search-wrapper:hover,
.new-header__search-wrapper:focus {
  border-color: var(--SUNRISE);
}

.new-header__search-wrapper:hover .new-header__search-icon,
.new-header__search-wrapper:focus .new-header__search-icon {
  color: var(--SUNRISE);
}

.new-header__search-icon {
  flex-shrink: 0;
  color: #D8D8D8;
  transition: color var(--transition-normal);
}

.new-header__search-input {
  flex-grow: 1;
  outline: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 20px;
  letter-spacing: -0.28px;
}

.new-header__search-input::placeholder {
  color: var(--black-60);
}

.new-header__search-btn {
  position: relative;
  display: none !important;
  z-index: 1;
  white-space: nowrap;
}

.new-header__search-close {
  position: relative;
  display: none;
  z-index: 1;
}

.new-header__search-content {
  display: none;
  position: relative;
  max-height: 380px;
  overflow-y: auto;
  grid-column: span 3;
  margin-top: 5px;
}

.new-header__search-empty {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
}

.new-header__search-top-title {
  margin-bottom: 18px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
}

.new-header__search-top-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.new-header__search-top-link {
  color: #333332;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  transition: color var(--transition-normal), text-decoration var(--transition-normal);
}

.new-header__search-top-link:hover,
.new-header__search-top-link:focus {
  color: var(--black-60);
  text-decoration: underline;
}

.new-header__search-results {
  display: flex;
  flex-direction: column;
}

.new-header__search-results-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 4px;
  color: #333332;
  transition: background var(--transition-normal);
}

.new-header__search-results-link:hover,
.new-header__search-results-link:focus {
  background: var(--gray-bg);
}

.new-header__search-results-link img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.new-header__search-results-item-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
}

.new-header__search-results-item-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-left: auto;
}

.new-header__search-results-item-price-base {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
}

.new-header__search-results-item-price-discount {
  color: var(--black-60);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  letter-spacing: -0.24px;
}

a.new-header__zamm-link {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: 9px 10px;
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  border-radius: 4px;
  border: 1px solid var(--black-30);
  background: var(--whiter);
  white-space: nowrap;
}

a.new-header__zamm-link svg {
  flex-shrink: 0;
}

button.new-header__start-btn {
  min-height: 40px;
  color: var(--whiter) !important;
  font-size: 0.8125rem;
  font-weight: var(--font-weight-medium);
  border-radius: 4px;
  letter-spacing: -0.02em;
  background: var(--black);
  white-space: nowrap;
}

button.new-header__start-btn svg {
  flex-shrink: 0;
}

button.new-header__start-btn span::after {
  filter: invert(1);
  flex-shrink: 0;
}

.new-header__lk-link {
  color: #D8D8D8;
  transition: color var(--transition-normal);
}

.new-header__lk-link:hover,
.new-header__lk-link:focus {
  color: #858585;
}

.new-header__cart-link {
  color: #D8D8D8;
  transition: color var(--transition-normal);
}

.new-header__cart-link:hover,
.new-header__cart-link:focus {
  color: #858585;
}

.new-header__cart-link .cart-link__count {
  top: 0;
  right: -4px;
}

.new-header__footer {
  padding: 10px 0 20px;
}

.new-header__footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.new-header__footer-menu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333332;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
  letter-spacing: -0.32px;
  transition: color var(--transition-normal), text-decoration var(--transition-normal);
}

.new-header__footer-menu-link:hover,
.new-header__footer-menu-link:focus {
  text-decoration: underline;
}

.new-header__footer-menu-link:active {
  color: var(--black-60);
  text-decoration: underline;
}

.new-header__catalog-menu {
  min-height: 420px;
  position: absolute;
  top: calc(100% - 40px);
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: var(--whiter);
  z-index: 5;
  border-bottom: 1px solid var(--black-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.new-header__catalog-menu-categories {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: var(--spacing-md);
}

.new-header__catalog-menu-category.new-header__catalog-menu-category--with-border-top {
  margin-top: 10px;
}

.new-header__catalog-menu-category.new-header__catalog-menu-category--with-border-top .new-header__catalog-menu-category-link {
  border-top: 1px solid var(--black-10);
}

.new-header__catalog-menu-category.new-header__catalog-menu-category--without-border-right .new-header__catalog-menu-category-link::before {
  display: none;
}

.new-header__catalog-menu-category:hover .new-header__catalog-menu-category-content {
  opacity: 1;
  pointer-events: auto;
}

.new-header__catalog-menu-category-link {
  position: relative;
  max-width: 328px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: #333332;
  border-radius: 4px;
  transition: background var(--transition-normal);
}

.new-header__catalog-menu-category-link:hover,
.new-header__catalog-menu-category-link:focus {
  background: var(--gray-bg);
}

.new-header__catalog-menu-category-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: -16px;
  height: 100%;
  width: 1px;
  background: var(--black-10);
}

.new-header__catalog-menu-category-link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12' fill='none'%3E%3Cpath d='M1 11L7 5.99931L1.00157 1' stroke='%23333332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-left: auto;
  flex-shrink: 0;
}

.new-header__catalog-menu-category-content {
  position: absolute;
  top: 0;
  left: calc(328px + 16px);
  width: calc(100% - 328px - 16px);
  display: flex;
  gap: var(--spacing-lg);
  padding: 0 16px 0 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.new-header__catalog-menu-category-list {
  display: grid;
  gap: var(--spacing-lg);
}

.new-header__catalog-menu-category-list:has(.new-header__catalog-menu-category-item:nth-child(6)) {
  grid-template-columns: repeat(2, 1fr);
}

.new-header__catalog-menu-category-list:has(.new-header__catalog-menu-category-item:nth-child(6)) + .new-header__catalog-menu-category-banner .new-header__catalog-menu-category-banner-bg-large {
  display: none;
}

.new-header__catalog-menu-category-list:has(.new-header__catalog-menu-category-item:nth-child(6)) + .new-header__catalog-menu-category-banner .new-header__catalog-menu-category-banner-bg-small {
  display: block;
}

.new-header__catalog-menu-category-list:has(.new-header__catalog-menu-category-item:nth-child(11)) {
  grid-template-columns: repeat(3, 1fr);
}

.new-header__catalog-menu-category-list:has(.new-header__catalog-menu-category-item:nth-child(11)) + .new-header__catalog-menu-category-banner {
  display: none;
}

.new-header__catalog-menu-category-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
  color: var(--black);
  font-size: 13.5px;
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  letter-spacing: -0.27px;
  border-radius: 4px;
  transition: background var(--transition-normal);
}

.new-header__catalog-menu-category-item-link img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.new-header__catalog-menu-category-item-link span {
  max-width: 180px;
}

.new-header__catalog-menu-category-item-link:hover,
.new-header__catalog-menu-category-item-link:focus {
  background: var(--gray-bg);
}

.new-header__catalog-menu-category-banner {
  height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  padding: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.new-header__catalog-menu-category-banner-title {
  position: relative;
  z-index: 1;
  font-size: 25.829px;
  font-weight: var(--font-weight-extrabold);
  line-height: 90%;
  letter-spacing: -0.517px;
}

.new-header__catalog-menu-category-banner-subtitle {
  position: relative;
  z-index: 1;
  max-width: 310px;
  font-size: 9.471px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  letter-spacing: -0.189px;
}

.new-header__catalog-menu-category-banner-primary {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 5px 13px;
  font-size: 13.282px;
  font-weight: 600;
  line-height: var(--line-height-normal);
  letter-spacing: -0.266px;
  border-radius: 22.137px;
  background: var(--SUNRISE);
}

.new-header__catalog-menu-category-banner-primary span {
  font-weight: var(--font-weight-extrabold);
}

.new-header__catalog-menu-category-banner-text {
  position: relative;
  z-index: 1;
  max-width: 310px;
  font-size: 8.61px;
  font-weight: var(--font-weight-medium);
  line-height: 114%;
  letter-spacing: -0.172px;
}

.new-header__catalog-menu-category-banner-text a {
  font-weight: var(--font-weight-extrabold);
}

.new-header__catalog-menu-category-banner-bg-small,
.new-header__catalog-menu-category-banner-bg-large {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-header__catalog-menu-category-banner-bg-large {
  display: block;
}

.new-header__search-clear,
.new-header__search-speech {
  display: none;
}

.new-header__search-form {
  display: grid;
  gap: 10px;
  grid-column: span 3;
}

.smartsearch-title__req_history {
  display: none !important;
}

/* Дополнительные стили */
.jdiv.__jivoMobileButton {
  @media (max-width: 767px) {
    left: unset !important;
    right: 10px !important;
    top: unset !important;
    bottom: 65px !important;
    transform: scale(0.5) !important;
    transform-origin: bottom right !important;
  }
}

.promotion {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 6px 0;
  background: var(--SUNRISE);
}

@media (max-width: 1279px) {
  .promotion {
    bottom: 64px;
  }
}

.promotion.is-active {
  display: block;
}

.promotion__slide {
  width: auto;
  font-size: 9px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: -0.18px;
  padding: 0 var(--spacing-md);
}

.promotion .swiper-wrapper {
  transition-timing-function: linear !important;
}

.promotion .swiper-slide {
  flex-shrink: 0;
}

.promotion__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--SUNRISE);
  padding-right: var(--spacing-md);
  z-index: 1;
}

a.header__btns-email svg {
  height: var(--spacing-md);
}

a.header__btns-i.js-search svg {
  height: 18px;
}

.header__btns-i.js-header-menu-toggle svg:nth-child(1) {
  height: 14px;
}

.header__btns-i.js-header-menu-toggle svg:nth-child(2) {
  height: 18px;
}

.js-mobile-menu svg, 
.mobile-menu__catalog-item svg {
  height: 17px;
  width: 11px;
}

.mobile-menu-contacts {
  gap: 10px;
}

.mobile-menu-buttons a.new-header__zamm-link {
  min-height: 42px;
  margin: 0;
  width: 100%;
  font-weight: var(--font-weight-medium);
}

.header__call-menu {
  position: absolute;
  top: 49px;
  left: -12px;
  width: calc(100dvw - 40px);
  max-width: 500px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  background: var(--whiter);
  border-radius: 0 0 4px 4px;
  box-shadow: var(--shadow-dropdown);
}

.header__call-menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

.header__call-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header__call-menu-title {
  color: #212121;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.header__call-menu-list {
  display: flex;
  flex-direction: column;
}

.header__call-menu-item:not(:last-child) {
  border-bottom: 1px solid var(--black-10);
}

.header__call-menu-item-link {
  display: block;
  color: var(--black);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  letter-spacing: -0.28px;
  padding: 13px 0;
}

.header__btns-email, 
.header__btns-phone {
  color: #D8D8D8;
}

.header__btns-email:hover svg,
.header__btns-phone:hover svg {
  color: #858585;
  fill: #858585;
  stroke: #858585;
}

/* TODO этому стилю тут не место потом подумать куда перенести */

.product-main__buttons .product-main__purchase-spinner.spinner-input {
  display: flex;
}

.product-main__purchase-spinner.spinner-input .spinner-input__wrap {
  width: 100%;
}

.header-alert {
  position: relative;
  z-index: 1001;
}

.header-alert__wrapper {
  position: relative;
  padding-right: 44px;
}

.header-alert__btn-close {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
}

.header-alert__btn-close .js-close-header-alert {
  width: 16px;
  height: 16px;
}

.header-alert__btn-close .js-close-header-alert svg {
  fill: var(--white);
  width: 100%;
  height: 100%;
}

.header-alert .alert-info {
  margin-top: 0 !important;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}
