.header__nav{
	width: 100%;
	display: flex;
	gap: 0;
	row-gap: 0;
}
.header__nav nav{
	display: flex;
	width: 100%;
}
.header__nav nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	width: 100%;
}
.header__nav nav ul li{
	display:flex;
}
.header__nav nav ul li a{
	color: #FFF;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	opacity: 0.7;
	text-decoration: none;
	padding: 10px 0;
}

.header__nav nav ul li a:hover{
	color:#C7B299;
}

.header__burger{
	display: grid;
	width: 22px;
	height: 22px;
	cursor: pointer;
}
.header__burger:hover{
	opacity:0.7;
}
.header__burger button{
	padding: 0;
	background: transparent;
	border: none;
}


/* Header 2 */
.header_2_main_menu,
.header_2_nav{
	background: #232F3E;
}
.header_2_nav nav{
	display: flex;
	width: 100%;
}


/* Mobile menu */
.menu__mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.menu__mobile--active {
    left: 0;
}

.menu__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
	padding:0;
}
body:has(#wpadminbar) .menu__mobile-close{
	top:40px;
}

.menu__mobile-close svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.menu__mobile-nav {
    padding: 60px 0 20px 0;
    position: relative;
}
body:has(#wpadminbar) .menu__mobile-nav{
	padding-top:80px;
}

.menu__mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__mobile-nav li {
    border-bottom: 1px solid #e5e5e5;
}

.menu__mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease;
}

.menu__mobile-nav a:hover {
    background: #f5f5f5;
}

.menu__mobile-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: auto;
    cursor: pointer;
}

.menu__mobile-chevron svg {
    width: 8px;
    height: 14px;
    color: #999;
}

/* Submenu styles */
.menu-item-has-children>.sub-menu{
	display:none;
}
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    overflow-y: auto;
	padding-top:60px;
}
body:has(#wpadminbar) .submenu{
	padding-top:80px;
}

.submenu--active {
    left: 0;
}

.submenu__back {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: #f5f5f5;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submenu__back:hover {
    background: #ebebeb;
}

.submenu__back svg {
    width: 8px;
    height: 14px;
    color: #333;
}

.submenu__top-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

body:has(#wpadminbar) .submenu__top-back {
    top: 40px;
}

.submenu__top-back svg {
    width: 8px;
    height: 14px;
    color: #333;
}

.submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu li {
    border-bottom: 1px solid #e5e5e5;
}

.submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease;
}

.submenu a:hover {
    background: #f5f5f5;
}


