/* Подключение шрифтов */
@font-face {
    font-family: "Gaisyr";
    src: url('../fonts/ABCGaisyrCyrillic-Light.otf') format('opentype'),
    url('../fonts/ABCGaisyrCyrillic-Light.otf') format('woff2'),
    url('../fonts/ABCGaisyrCyrillic-Light.otf') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gaisyr";
    src: url('../fonts/ABCGaisyrCyrillic-Book.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Подключение шрифтов */
@font-face {
    font-family: "Manrope";
    src: url('../fonts/Manrope-Regular.ttf') format('ttf'),
    url('../fonts/Manrope-Regular.ttf') format('woff'),
    url('../fonts/Manrope-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url('../fonts/Manrope-SemiBold.ttf') format('ttf'),
    url('../fonts/Manrope-SemiBold.ttf') format('woff'),
    url('../fonts/Manrope-SemiBold.ttf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url('../fonts/Manrope-Medium.ttf') format('ttf'),
    url('../fonts/Manrope-Medium.ttf') format('woff'),
    url('../fonts/Manrope-Regular.ttf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --placeholder-height: 32px;
    --header-height: 60px;
    --masterhead-height: calc(var(--header-height) + var(--placeholder-height))
}


/* Reset и базовые стили */
html {
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Gaisyr', sans-serif;
    overflow-x: hidden;
}

h1 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.site {
    display: flex;
    flex-direction: column;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #D6D6D6;
}

button {
    font-weight: 400;
}


.info-banner-wrapper {
    background: #000;
    height: var(--placeholder-height);
    overflow: hidden;
}

.info-banner {
    height: var(--placeholder-height);
    display: flex;
    align-items: center;
}

.banner-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    --banner-duration: var(--banner-speed);
    font-family: 'Manrope', sans-serif !important;
}

/* текст */
.banner-text-item {
    color: #fff;
    font-size: 14px;
    line-height: 39px;
    text-transform: uppercase;
}

.banner-separator {
    color: #fff;
    margin: 0 10px;
}

@keyframes marquee {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 450px) {
    .banner-track {
        animation-duration: var(--banner-speed-mobile);
    }

    --placeholder-height: 22px;
}


.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    margin: 0 auto;
    height: var(--header-height) !important;
    z-index: 999;
    flex-wrap: nowrap;
    width: 100%;
}

.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header__logo_img {
    width: auto;
    height: 42px !important;
}

/* Бургер меню */
.burger-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.9;
    flex-shrink: 0;
    height: 100%;
}

.burger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 !important;
}

.burger-icon {
    width: 20px;
    height: 20px;
}

.burger-text {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif !important;
}

/* БУРГЕР КНОПКА С INLINE SVG */
.hamburger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 20px; /* Размер кнопки */
    height: 20px;
    background: transparent;
    padding: 8px;
    border: none;
    transition: opacity 0.3s ease;
}

.hamburger:hover {
    opacity: 0.7;
}

.menu-icon, .close-icon {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Изначальное состояние: меню видно, крестик скрыт */
.menu-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-icon {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.5);
}

/* Когда кнопка активна (меню открыто): меню скрыто, крестик виден */
.hamburger.active .menu-icon {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.5);
}

.hamburger.active .close-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


/* Навигационное меню */
.nav {
    position: fixed;
    top: var(--masterhead-height);
    left: 0;
    background: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    height: 350px;
    overflow-y: auto;
    z-index: 998;
}

.nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border-top: 1px solid #F5F5F5;
}

.nav__list.is-subcategory .nav__link {
    text-transform: none;
    font-weight: 400;
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 400px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 24px;
}

.nav__list.active {
    opacity: 1;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    height: 27px;
}

.nav__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("../images/icons/Arrow Right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.nav__item:hover::after {
    transform: translateY(-50%) translateX(3px);
}

.nav.active .nav__item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.2s, transform 0.6s ease 0.2s;
}

.nav.closing .nav__item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__link {
    display: block;
    padding: 0;
    color: #1F1F1F;
    text-decoration: none;
    transition: color 0.3s;
    padding-right: 30px;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 27px;
    width: 100%;
}

.nav__link:hover {
    opacity: 0.7;
}

/* Оверлеи */
.overlay_burger_menu,
.overlay-search {
    position: fixed;
    top: var(--masterhead-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--masterhead-height));
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 995;
}

.overlay_burger_menu.active,
.overlay-search.active {
    opacity: 1;
    visibility: visible;
}

.nav-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 24px;
    border-bottom: 1px solid #D6D6D6;
    /* position: relative; */
}

.nav-header.active {
    display: flex;
}

.nav-back {
    left: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
}

.nav-back:hover {
    opacity: 0.7;
}

.nav-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.nav-title:hover {
    opacity: 0.7;
}


/* Навигационные иконки */
.header_navigation {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.header_navigation_icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    align-items: center;
    height: 100%;
}

.header_navigation__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.header_navigation__link,
.header_navigation__search_button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F1F1F;
    text-decoration: none;
    transition: opacity 0.3s ease;
    height: 100%;
    padding: 0;
    margin: 0;
}

.header_navigation__link:visited {
    color: #1F1F1F;
}

.header_navigation__link:hover {
    opacity: 0.7;
}

.header_navigation__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.header_navigation img.header_navigation__icon {
    max-width: none !important;
}

.header_navigation__search_button {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Для SVG иконок */
.header_navigation__link svg,
.header_navigation__search_button svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #1F1F1F;
}

.header_navigation__link:hover svg,
.header_navigation__search_button:hover svg {
    fill: #0E7318;
}

/* Контейнер для корзины с бейджем */
.header_navigation__link-container {
    position: relative;
    display: inline-flex;
}

/* Исправляем кнопку языка */
.language-switcher-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Форма поиска */
.header_search_form {
  position: fixed;
  top: var(--masterhead-height);
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  border-top: 1px solid #F5F5F5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.header_search_form.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_search_form_inner {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  padding: 20px;
  margin: 0;
  height: 100%;
}

.header_search_input {
  flex: 1 1 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 18px;
  height: 42px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background: transparent;
  outline: none;
  box-shadow: none;
  color: #1F1F1F;
}

.header_search_input::placeholder {
  color: #7A7A7A;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  opacity: 1;
}

/* .header_search_label {
  display: flex;
  align-items: center;
  margin-right: 15px;
} */

.header_search_close_icon {
    width: 20px;
    height: 20px;
}

.header_search_close_btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.header_search_close_btn:hover,
.header_navigation__icon:hover {
    opacity: 0.7;
}


/* Переключение языка */
.language-switcher-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-switcher-dropdown {
    display: none;
    position: absolute;
    top: calc(var(--masterhead-height) - var(--header-height) + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 200px;
    padding: 20px;
    height: 105px;
    background: white;
    font-size: 18px;
    font-family: Manrope, serif;
    font-weight: 400;
    word-wrap: break-word;
    border: 1px solid #D6D6D6;
}

.language-switcher-dropdown.show {
    display: block;
}

.language-switcher {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    gap: 15px;
}

.lang-btn {
    width: 100%;
    border: none;
    height: 25px;
    padding: 0 !important;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    text-align: left;
    background: #FFFFFF !important;
    margin: 0 !important;
    opacity: 0.7;
}

.lang-btn.active {
    background: none;
    color: #000000 !important;
    pointer-events: none;
    cursor: default;

}

.lang-btn.active span {
    border-bottom: 1px solid #1F1F1F;

    display: inline-block;
    box-sizing: content-box;
}

.lang-btn span {
    display: inline-block;
}

/* Бейдж корзины */
.cart-count-badge {
    position: absolute;
    top: -2px;
    right: -7px;
    color: #FFFFFF;
    background: #000000;
    font-size: 9px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    line-height: 1;
}

/* Анимации скрытия/показа */
.header_navigation_icons,
.burger-container {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.header_navigation_icons.hidden,
.burger-container.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

/* Стили для мобильных пунктов меню */
.nav__separator {
    width: 100%;
    height: 1px;
    background: #C2C2C2;
    margin: 32px 0;
    list-style: none;
}

.nav__item.mobile-nav-item .nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}

.nav__item.mobile-nav-item .nav__link span {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1F1F1F;
}

.nav__item.mobile-nav-item .nav-arrow {
    width: 20px;
    height: 20px;
}

/* Мобильный выпадающий список языка */
.mobile-language-dropdown {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #F5F5F5;
}

.mobile-language-dropdown.show {
    display: block;
}

.mobile-language-dropdown .language-switcher {
    display: flex;
    flex-direction: column;
    background: transparent;
    gap: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    gap: 15px;
}

.mobile-language-dropdown .lang-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    color: #1F1F1F;
    opacity: 0.7;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid #F5F5F5;
}

.mobile-language-dropdown .lang-btn:last-child {
    border-bottom: none;
}

.mobile-language-dropdown .lang-btn.active {
    opacity: 1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* ==================== АДАПТИВ ==================== */

/* 1000px */
@media (max-width: 1000px) {
    .header__container {
        padding: 10px 20px;
    }

    .burger-container {
        gap: 15px;

    }

    .header_navigation_icons {
        gap: 15px;
    }
    
    .header__logo_img {
        height: 42px !important;
    }
    
    /* Стрелки в навигации */
    .nav__item::after {
        width: 20px;
        height: 20px;
    }


    .header_search_form {
        height: 80px;
    }

    .header_search_form_inner {
        padding: 20px;
    }

    .header_search_input {
        height: 42px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header__container {
        padding: 10px 20px;
    }

    
    .header__logo_img {
        height: 32px !important;
    }
    
    .burger-container {
        gap: 15px;
    }
    
    .nav__item::after {
        width: 20px;
        height: 20px;
    }

    .nav {
        width: 100%;
        height: calc(100vh - var(--masterhead-height));
        min-height: auto;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
    }
    
    .nav__list {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        display: flex;
        width: auto;
        max-width: none;
    }
    .header_search_form {
        height: 80px;
    }
    
    .header_search_form_inner {
        padding: 20px;
    }
    
    .header_search_input {
        height: 42px;
        font-size: 18px;
    }
}


@media (max-width: 480px) {
    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        height: var(--header-height);
        flex-wrap: nowrap;
        position: relative;
    }

    .header_search_form {
        height: 52px !important; /* Высота из Figma */
        top: var(--masterhead-height);
    }
    
    .header_search_form_inner {
        padding: 20px;
        height: 100%;
    }
    
    .header_search_input {
        height: 42px;
        font-size: 18px;
    }
    
    .header_search_input::placeholder {
        font-size: 18px;
    }
    
    .header_search_close_icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Левый блок - бургер */
    .burger-container {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 0 0 auto;
        z-index: 1001;
        height: 100%;
    }
    
    /* Центральный блок - логотип */
    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin: 0;
    }
    
    .header__logo_img {
        height: 32px !important;
        width: auto;
    }
    
    /* Правый блок - иконки */
    .header_navigation {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        height: 100%;
        z-index: 1001;
    }
    
    .header_navigation_icons {
        gap: 15px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    /* Иконки 20px */
    .header_navigation__icon {
        width: 20px;
        height: 20px;
    }
    
    .header_navigation__link svg,
    .header_navigation__search_button svg {
        width: 20px;
        height: 20px;
    }
    
    .hamburger {
        width: 20px;
        height: 20px;
    }
    
    .burger-icon {
        width: 20px;
        height: 20px;
    }
    
    .burger-text {
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Скрываем иконки языка и аккаунта */
    .header_navigation__item:nth-child(2),
    .header_navigation__item:nth-child(4) {
        display: none;
    }
    
    /* Навигационное меню */
    .nav {
        top: var(--masterhead-height);
        left: 0;
        width: 100%;
        padding: 20px;
        height: calc(100vh - var(--masterhead-height));
        min-height: auto;
    }
    
    .nav__list {
        width: 100%;
        gap: 32px;
    }
    
    /* Исправляем центрирование стрелок */
    .nav__item {
        height: 27px;
        align-items: center;
    }
    
    .nav__item::after {
        width: 20px;
        height: 20px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav__link {
        font-size: 20px;
        line-height: 27px;
        padding-right: 30px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    /* Форма поиска */
    .header_search_form_inner {
        padding: 0 20px;
    }

    .header_search_input {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .mobile-language-dropdown .language-switcher {
        font-size: 18px;
    }
    .mobile-language-dropdown .lang-btn {
        font-size: 18px;
    }
    .nav__item.mobile-nav-item .nav__link span {
        font-weight: 500;
        font-size: 18px;
    }
    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        height: 72px;
        flex-wrap: nowrap;
        position: relative;
    }

    .nav-back svg {
        width: 16px;
        height: 16px;
    }

    .header_search_form {
        height: 40px !important; /* Высота из Figma */
        top: var(--masterhead-height);
    }
    
    .header_search_form_inner {
        padding: 20px;
        height: 100%;
    }
    
    .header_search_input {
        height: 42px;
        font-size: 16px !important; /* Размер текста из Figma */
    }
    
    .header_search_input::placeholder {
        font-size: 16px !important; /* Размер плейсхолдера из Figma */
    }
    
    .header_search_close_icon {
        width: 16px !important;
        height: 16px !important;
    }

    .header_search_close_btn {
        right: 20px;
    }
    
    /* Левый блок - бургер */
    .burger-container {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 0 0 auto;
        z-index: 1001;
        height: 100%;
    }
    
    /* Центральный блок - логотип */
    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin: 0;
    }
    
    .header__logo_img {
        height: 24px !important;
        width: auto;
    }
    
    /* Правый блок - иконки */
    .header_navigation {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        height: 100%;
        z-index: 1001;
    }
    
    .header_navigation_icons {
        gap: 15px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    /* Иконки 16px */
    .header_navigation__icon {
        width: 16px;
        height: 16px;
    }
    
    .header_navigation__link svg,
    .header_navigation__search_button svg {
        width: 16px;
        height: 16px;
    }
    
    .hamburger {
        width: 16px;
        height: 16px;
    }
    
    .burger-icon {
        width: 16px;
        height: 16px;
    }
    
    .burger-text {
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Скрываем иконки языка и аккаунта */
    .header_navigation__item:nth-child(2),
    .header_navigation__item:nth-child(4) {
        display: none;
    }
    
    /* Навигационное меню */
    .nav {
        top: var(--masterhead-height);
        left: 0;
        width: 100%;
        padding: 20px;
        height: calc(100vh - var(--masterhead-height));
        min-height: auto;
    }
    
    .nav__list {
        width: 100%;
        gap: 32px;
    }
    
    /* Исправляем центрирование стрелок */
    .nav__item {
        height: 27px;
        align-items: center;
    }
    
    .nav__item::after {
        width: 16px;
        height: 16px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-size: 16px 16px;
    }
    
    .nav__link {
        font-size: 18px;
        line-height: 27px;
        padding-right: 25px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    /* Форма поиска */
    .header_search_form_inner {
        padding: 0 20px;
    }
    
    .header_search_input {
        font-size: 14px;
    }
}

/* Дополнительные исправления для вертикального выравнивания всех элементов */
.burger-container > *,
.header_navigation > *,
.header_navigation_icons > * {
    display: flex;
    align-items: center;
}

/* Исправляем высоту бургер-кнопки */
.hamburger,
.burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Исправляем высоту иконок */
.header_navigation__link,
.header_navigation__search_button {
    height: 100%;
    display: flex;
    align-items: center;
}