.header {
    position: absolute;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    width: 100%;
    padding-top: 44px;
    padding-bottom: 44px;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .header {
        padding-top: 34px;
        padding-bottom: 34px;
    }
}

.logo img {
    width: 100%;
    max-width: 147px;
    transition: width 0.3s ease, height 0.3s ease;
}

@media (max-width: 991.98px) {
    .logo img {
        max-width: 84px;
    }
}

.logo-emp img {
    width: 100%;
    max-width: 147px;
    transition: width 0.3s ease, height 0.3s ease;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .logo-emp img {
        max-width: 84px;
    }
}

.header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .header__nav {
        display: none;
    }
}

.header__menu {
    display: flex;
    list-style: none;
    margin: 0 24px 0 0;
    padding: 0;
}

.header__menu li {
    margin-left: 20px;
}

.header__menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header__lang {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__lang li {
    margin-left: 20px;
}

.header__lang a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header__lang a.active {
    text-decoration: underline;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
    .hamburger {
        display: block;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000A8;
    backdrop-filter: blur(14px);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.is-active {
    transform: translateX(0);
}

.mobile-nav__close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav__menu {
    list-style: none;
    padding: 0;
    margin: 0 0 214px 0;
    text-align: center;
}

.mobile-nav__menu li {
    margin-bottom: 20px;
}

.mobile-nav__menu a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.mobile-nav__lang {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.mobile-nav__lang li {
    margin: 0 15px;
}

.mobile-nav__lang a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.mobile-nav__lang a.active {
    text-decoration: underline;
}
