/* ========================================
            Header {MOBILE}
                [START]
========================================= */

.page__header {
    height: auto;
}

.l-header__inner {
    display: flex;
    flex-direction: column;
    row-gap: var(--space-xl);
    width: 85%;
    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;
}

.header__logo {
    width: var(--header-logo-width);
    min-width: var(--header-logo-min-width);
}

.header__nav--desktop {
    display: none;
}

.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    z-index: 999999;
    overflow-y: scroll;
    background-color: var(--color-background);
}

.header__nav.header__nav--active {
    height: 100vh;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
    transition: all .5s ease;
}

.header__nav.header__nav--not-active {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: all .5s ease;
}

.header__nav .menu {
    display: flex;
    flex-direction: column;
    row-gap: var(--space-md);
    justify-content: center;
    width: fit-content;
    min-height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.header__nav .menu-item {
    text-align: center;
}

.header__nav a {
    position: relative;
    display: block;
    width: 100%;
    padding: var(--space-xs);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--color-on-background);
}

.header__nav li.current-menu-item a {
    color: var(--color-primary) !important;
}

.header__nav .menu-item.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    /* right: -2rem; */
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    /* margin-left: var(--space-md); */
    cursor: pointer;
    background-image: url(../../img/icons/material_symbols/icon-arrow_drop_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.header__nav .sub-menu {
    display: none;
    padding: 0;
}

.header__nav .sub-menu a {
    font-size: 1.5rem;
}

.l-header__inner .shortcode_google-reviews {
    justify-content: center;
}

/* ========================================
                Header {MOBILE}
                [END]
========================================= */