.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 120px;
    background: #ffffff;
    transition: all 0.3s ease;
    z-index: 10;
}

.header:hover,
.header.fixed,
.header.show {
    top: 0 !important;
}
.header.fixed,
.header.show {
    box-shadow: 0 0 5px #dddddd;
}

.header-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 0 30px;
    z-index: 1;
}

.header-top_left {
    display: flex;
    justify-content: flex-start;
    width: 340px;
}

.header-contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 40px;
    gap: 10px;
}
.header-contacts_item {
    display: flex;
    flex-direction: column;
    order: 2;
    gap: 4px;
}
.header-contacts_item.active {
    position: relative;
    top: 0;
    order: 1;
}

.header-contacts_dropdown {
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    padding: 22px 22px;
    display: none;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 20%);
    border-radius: 3px;
    gap: 22px;
}
.header-contacts:hover .header-contacts_dropdown {
    display: flex;
}
.header-contacts_item-address {
    display: flex;
    align-items: center;
    gap: 7px;
}
.header-contacts_item-address svg {
    margin-right: -17px;
}
.header-contacts_item-phone {
    color: var(--secondary-919191);
}

.header-logo {
    max-width: 126px;
}
.header-logo img {
    display: block;
}

.header-top_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 340px;
    cursor: pointer;
    gap: 20px;
}

.header-search_btn {
    display: flex;
    align-items: center;
    margin-right: 20px;
    gap: 10px;
}

.header-currency,
.header-language {
    position: relative;
    display: flex;
}
.header-currency > .header-currency_item,
.header-language > .header-language_item {
    padding: 10px 0;
    color: var(--color-main-0) !important;
}
.header-currency_item,
.header-language_item {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 4px;
}
.header-currency_item:hover,
.header-language_item:hover {
    color: var(--main-e-868-a-0);
}

.header-currency_dropdown,
.header-language_dropdown {
    position: absolute;
    display: none;
    top: calc(100%);
    left: 0;
    padding: 10px;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 20%);
    border-radius: 3px;
    gap: 10px;
}
.header-currency:hover .header-currency_dropdown,
.header-language:hover .header-language_dropdown {
    display: flex;
}

.header-account_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-account_icon svg {
    display: block;
}

.header-cart_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 2px;
}
.header-cart_icon svg {
    display: block;
}
.header-cart_count {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
}

/* Menu */
.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.header-menu_item {

}
.header-menu_item-title {
    display: block;
    position: relative;
    margin: 0 14px 10px 14px;
    padding-bottom: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
}
.header-menu_item:hover .header-menu_item-title {
    color: var(--main-d-03-f-7-f);
    transition: all 0.3s ease;
}
.header-menu_item-title:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--main-d-03-f-7-f);
    transition: all 0.3s ease;
}

.header-menu_submenu {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px 16px 44px 16px;
    background: var(--color-white);
    transition: all 0.3s ease;
}
.header-menu_item:hover .header-menu_submenu {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 10px #3936361a;
}

.header-menu_content {
    display: flex;
    width: 100%;
    max-width: 1280px;
    align-items: flex-start;
    gap: 40px 100px;
}
.header-menu_columns {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px 100px;
}
.header-menu_img {
    flex-shrink: 0;
}
.header-menu_img img {
    display: block;
}

.header-menu_col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-menu_col-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.header-menu_col-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.header-menu_col-subitem {
    padding-left: 16px;
}

.header-menu_col a:hover {
    color: var(--main-d-03-f-7-f);
    transition: all 0.3s ease;
}

.header-menu_col-title_min {
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
}

/* Modile */
.header-mobile {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    padding: 0 16px 0 12px;
    background: #ffffff;
    z-index: 1;
}
.header-mobile:hover,
.header-mobile.fixed {
    top: 0 !important;
}
.header-mobile.fixed {
    box-shadow: 0 0 5px #dddddd;
}

.header-mobile_left {
    width: 80px;
}
.header-mobile_menu-btn {
    padding: 4px;
}
.header-mobile_menu-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}

.header-mobile_logo img {
    display: block;
    height: 36px;
}

.header-mobile_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80px;
    gap: 12px;
}
.header-mobile_icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    max-width: 425px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    background: #ffffff;
    overflow-x: auto;
    z-index: 11;
}
.mobile-menu.show {
    left: 0;
}

.mobile-menu_heading {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    margin-bottom: -16px;
    background: #ffffff;
    z-index: 1;
}
.mobile-menu_close {
    padding: 2px;
    cursor: pointer;
}

.mobile-menu_content {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    padding: 0 16px 40px 16px;
}

.mobile-menu_item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--secondary-e-7-e-7-e-7, #E7E7E7);
}
.mobile-menu_item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}
.mobile-menu_item-title svg {
    display: block;
    margin-right: 8px;
}
.mobile-menu_item.active .mobile-menu_item-title svg {
    transform: rotate(180deg);
}

.mobile-menu_item-content {
    display: flex;
    padding: 20px 0 16px 0;
    flex-direction: column;
    border-top: 1px solid var(--secondary-e-7-e-7-e-7, #E7E7E7);
    gap: 12px;
}
.mobile-menu_item-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}
.mobile-menu_item-subcategories {
    display: flex;
    flex-direction: column;
    padding: 4px 0 16px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--secondary-e-7-e-7-e-7);
    gap: 12px;
}
.mobile-menu_item-subcategories .mobile-menu_item-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-transform: none;
}

.mobile-menu_bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}
.mobile-menu_login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 10px;
}
.mobile-menu_login svg {
    display: block;
    width: 20px;
    height: 20px;
}
.mobile-menu_login span {

}

.mobile-menu_languages {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 28px;
}
.mobile-menu_language {

}
.mobile-menu_language {

}

.mobile-menu_currencies {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 28px;
}
.mobile-menu_currency {

}
.mobile-menu_currency {

}

.mobile-menu_locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
    gap:  24px;
}
.mobile-menu_location {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4px;
}
.mobile-menu_location a {
    color: var(--secondary-919191, #919191);
}

/* Search */
.header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 32px;
    background: #ffffff;
    box-shadow: 0 5px 5px #dddddd;
    display: none;
    z-index: 3;
}
.header-search.show {
    display: block;
}
.header-search_content {
    max-width: 650px;
    margin: 0 auto;
}
.header-search_form {
    position: relative;
}

.header-search_input {
    display: flex;
}
.header-search_input svg {
    margin-top: 14px;
    margin-right: -24px;
    z-index: 1;
}
.header-search_input input {
    width: 100%;
    padding: 17px 70px 17px 34px;
    border: 0;
    border-bottom: 1px solid var(--secondary-e-7-e-7-e-7);
    outline: none !important;
    background: #ffffff;
}
.header-search_clear {
    margin-left: -60px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}
.header-search_clear:before,
.header-search_clear:after {
    bottom: 14px;
}
.header-search_close {
    position: absolute;
    top: -10px;
    right: -20px;
}

.header-search_results {
    display: flex;
    flex-direction: column;
    padding: 16px;
    color: #8B8B8B;
    gap: 10px;
}
.header-search_result:hover {
    color: var(--main-0-c-0-c-0-c);
}

.header-search_close {
    position: absolute;
    display: block;
    top: 10px;
    right: -70px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .header-search {
        top: 0;
        height: 100vh;
        padding: 0 16px 15px 16px;
    }
    .header-search_input input {
        padding: 17px 120px 17px 34px;
    }
    .header-search_clear {
        margin-left: -100px;
        margin-right: 40px;
    }
    .header-search_close {
        top: 14px;
        right: 5px;
    }
}