.page__header {
    --header-bg-color: var(--color-surface);
    --header-logo-width: 260px;
    --header-logo-min-width: 174px;

    /* Navigation */
    --header-navigation-bg-color: #fff;

    /* Single navigation item */
    --header-navigation-parent-text-color: var(--color-on-surface);
    --header-navigation-parent-hover-text-color: #5e6572;
    --header-navigation-child-text-color: var(--header-navigation-parent-text-color);
    --header-navigation-child-hover-text-color: var(--header-navigation-parent-hover-text-color);
    --header-navigation-font-size: 1rem;
    --header-navigation-font-weight: normal;
    --header-navigation-current-page-text-color: var(--color-primary);
    --header-navigation-hover-underline-color: var(--color-primary);

    /* Submenu */
    --header-navigation-submenu-bg-color: #fff;
    position: relative;
    z-index: 9;
    box-shadow: 0 0 12px 0 rgb(0, 0, 0, 16%);
}

.l-header__navigation--desktop {
    display: none;
}

.l-header__inner {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: var(--soft-border);
}

.header-inner__top {
    display: flex;
    justify-content: space-between;
    column-gap: var(--space-md);
}

.l-header__logo {
    width: fit-content;
    transition: filter .6s;
}

.l-header__logo:hover {
    filter: brightness(90%);
}


    /* ========================================
                    Header->
                    Navigation
                    [START]
    ========================================= */

    .header__nav {
        position: fixed;
        top: -100%;
        left: 0;
        z-index: var(--under-top-z-index);
        width: 100vw;
        height: 100vh;
        padding-top: var(--space-4xl);
        padding-bottom: var(--space-4xl);
        overflow-y: scroll;
        background-color: #fff;
    }

    .header__nav.header__nav--active {
        top: 0;
        transition: all .5s ease;
    }

    .header__nav.header__nav--not-active {
        top: -100%;
        transition: all .5s ease;
    }

    /* Global */
    .header__navigation,
    .header__navigation .sub-menu {
        padding: 0 !important;
    }

    /* Global */
    .header__navigation .menu-item {
        list-style: none !important;
    }

    /* Global */
    .header__navigation .menu-item a {
        text-decoration: none !important;
    }

    .header__nav .header__navigation {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 16px;
        width: fit-content;
        min-height: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .header__nav .header__navigation .menu-item {
        width: 100%;
    }

    .header__nav .header__navigation .menu-item a {
        position: relative;
        display: block;
        width: 100%;
        padding: var(--space-xs);
        font-size: 1.75rem;
        font-weight: normal;
        text-align: center;
        color: #000;
    }

    .header__nav .header__navigation .menu-item.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -2rem;
        width: 2rem;
        height: 2rem;
        background-image: url('../../img/icons/material_symbols/icon-arrow_drop_down.svg');
        background-repeat: no-repeat;
        background-size: contain;
    }

    .header__nav .header__navigation .current-menu-item > a {
        color: var(--color-primary) !important;
    }

    .header__nav .header__navigation .sub-menu {
        display: none;
    }

    .header__nav .header__navigation .sub-menu .menu-item a {
        font-size: 1.5rem;
    }

    /* ========================================
                    Header->
                    Navigation
                    [END]
    ========================================= */


/* ========================================
                Header->
            Social buttons
                [START]
========================================= */

.header__social-buttons {
    display: flex;
    align-items: center;
    margin-top: var(--space-xl);
    justify-content: center;
}

.social-buttons__inner {
    display: flex;
    gap: var(--space-xs);
}

.header__social-buttons .social-button,
.header__social-buttons .social-button svg {
    height: 40px;
    width: 40px;
}

.header__social-buttons .social-button__icon,
.header__social-buttons .social-button__icon::before {
    margin: auto; /* Reset margin */
}

.header__social-buttons .social-button__icon--facebook {
    font-size: 19px;
}

.header__social-buttons .social-button__icon--email {
    font-size: 16px;
}

.header__social-buttons .social-button__icon--phone {
    font-size: 14px;
}

/* ========================================
                Header->
            Social buttons
                [END]
========================================= */