/* === Загальна обгортка шапки === */
h1 {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 59px;
    margin-bottom: 30px;
}

/* Мобільна версія */
@media (max-width: 767.98px) {
    h1 {
        font-family: "Arsenal", Helvetica;
        color: #363636;
        font-size: 24px;
        line-height: inherit;

        font-weight: 400;
        margin-bottom: 10px;
    }
}

.site-header {
    background-color: #f9f7f3;
    font-family: "Arsenal", Helvetica, sans-serif;
    color: #363636;
}
.arrow-down-icon svg {
    width: 10px;
    height: 10px;
    vertical-align: middle;
}

/* === Верхній рядок (Topbar) === */
.header-top {
    font-size: 14px;
    padding: 8px 0;
    background-color: #eeeae5;
    border-bottom: 6px solid #8d4b20;
}

.header-top-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.header-top-menu li a {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: none;
}

.header-top-menu li a:hover {
    text-decoration: underline;
}

.header-top-right {
    font-size: 14px;
}

.header-phone {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.header-lang {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    cursor: pointer;
}

.header-currency {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    cursor: pointer;
}

.arrow-down {
    font-size: 10px;
    margin-left: 4px;
}

/* === Центральний рядок з логотипом і іконками === */
.header-middle {
    padding: 20px 0;
}

.header-logo img {
    height: 42px;
    max-width: 100%;
}

/* === Іконки праворуч та ліворуч === */
.header-icons,
.header-icon {
    display: flex;
    align-items: center;
}

.header-icons {
    gap: 20px;
}

.header-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}
/*
.header-icon svg {
    width: 24px;
    fill: none;
}
*/

.header-icon-label {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 18px;
    line-height: normal;
}

/* === Головне меню (нижній рядок) === */
.header-bottom {
    padding-bottom: 10px;
}

.nav.nav-main {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav.nav-main > li > a {
    font-family: "Arsenal", Helvetica;
    font-weight: 400;
    color: #363636;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: none;
}

.nav.nav-main > li:hover > a {
    text-decoration: underline;
}

/* === Підменю (другий рівень) === */
.nav.nav-main .has-submenu {
    position: relative;
}

.nav.nav-main .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    min-width: 160px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.nav.nav-main .has-submenu:hover .submenu {
    display: block;
}

.nav.nav-main .submenu li a {
    display: block;
    padding: 8px 20px;
    color: #363636;
    font-size: 14px;
    text-decoration: none;
}

.nav.nav-main .submenu li a:hover {
    background-color: #f0f0f0;
}
