.custom-mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    max-width: 500px;
    height: 100vh;
    background: #94B7B3;
    box-shadow: -2px 0 24px rgba(0,0,0,0.10);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 9999;
    overflow-y: auto;
    padding-top: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	padding-top: 70px;
}
.custom-mobile-menu-container.open {
    right: 0;
}
.custom-mobile-menu-logo {
	position: absolute;
	top: 14px;
	left: 24px;
	width: 40px;
	height: 40px;
}
.custom-mobile-menu-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Menu open and close tottale */
.custom-mobile-menu-toggle {
	background: transparent;
    border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	transition: all .4s ease;
}
.custom-mobile-menu-toggle:hover {
	box-shadow: 3px 3px 2px 0 #62724d;
}
.custom-mobile-menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
	background: transparent;
    border: none;
	cursor: pointer;
	padding: 0;
	display: none;
}
.custom-mobile-menu-toggle::before {
	content:"";
	display: inline-block;
	background-image: url(../images/burger-icon.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 36px;
	height: 36px;
}
.custom-mobile-menu-close::before {
	content:"";
	display: inline-block;
	background-image: url(../images/close-icon.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
}
.custom-mobile-menu {
	list-style-type: none !important;
    padding: 80px 0px 0px 0px !important;
    margin: 0;
    background: none;
}
.custom-mobile-menu .sub-menu {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0;
    background: none;
}
.sub-menu.custom-mobile-menu {
	padding: 0px !important;
}
.custom-mobile-menu > li {
	position: relative;
    background: #94B7B3;
}

.sub-menu.custom-mobile-menu > li.menu-item-has-children {
	position: relative;
    background: #94B7B3;
}
.sub-menu.custom-mobile-menu > li.menu-item-has-children::after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        #70968E,
        rgba(112, 150, 142, 0)
    );
}
.sub-menu.custom-mobile-menu > li:last-child::after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        #70968E,
        rgba(112, 150, 142, 0)
    );
}

.sub-menu.custom-mobile-menu > li:last-child > a {
	padding-bottom: 14px;
}
	
.custom-mobile-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    color: #05373C !important;
    text-decoration: none;
    font-size: 22px;
    background: none;
    transition: background 0.2s;
	font-family: "Merriweather";
    font-weight: 700;
}
.sub-menu.custom-mobile-menu li a {
	font-family: "Public Sans";
	font-size: 18px;
    font-weight: 500;
}
.custom-mobile-menu li a:hover {
    background: rgba(5, 55, 60, 0.1);
}
.sub-menu.custom-mobile-menu li.menu-item-has-children > a {
	text-transform: uppercase;
}
.custom-mobile-menu li.menu-item-has-children > a:after {
    content:"";
	display: inline-block;
	background-image: url(../images/arrow-right.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
}

.sub-menu.custom-mobile-menu li.menu-item-has-children > a:after {
    content: "";
    display: inline-block;
	background-image: url(../images/chevron-right.svg);
    transform: rotate(0deg);
    transition: transform 0.2s;
}
.sub-menu.custom-mobile-menu li.open > a:after {
    transform: rotate(90deg);
}

.custom-mobile-menu .sub-menu {
    display: none;
    overflow: hidden;
    background: #94B7B3;
}

.custom-mobile-menu li.open > .sub-menu {
    background: #e8e1d2;
    padding-bottom: 12px;
}

.custom-mobile-menu .sub-menu li a {
    padding: 8px 0px 8px 8px;
    font-size: 18px;
	font-weight: 500;
    color: #05373C;
    background: none;
    border-bottom: 1px solid rgba(112, 150, 142, 0);
	text-transform: none !important;
}
.custom-mobile-menu .sub-menu {
	padding: 0px 28px !important;
}
.custom-mobile-menu .sub-menu li:last-child > a {
    padding-bottom: 14px;
}

/* Overlay for background blur */
.custom-mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,30,30,0.10);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.custom-mobile-menu-container.open ~ .custom-mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}
/* Prevent background scrolling when menu is open */
body.menu-open {
  overflow: hidden;
  height: 100vh; 
}

/* Header/logo area */
.custom-mobile-menu-header {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px 20px 24px;
    background: #94B7B3;
}

.custom-mobile-menu-header-title {
    font-family: "Public Sans";
	font-size: 24px;
    font-weight: 600;
    color: #05373C;
    flex: 1;
    text-align: center;
}

/* Responsive: hide menu on desktop */
@media (min-width: 1281px) {
    .custom-mobile-menu-toggle,
    .custom-mobile-menu-container {
        display: none !important;
    }
}
.custom-mobile-menu-subview {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #94B7B3;
    height: 100%;
    z-index: 10002;
    animation: slideInMenu 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes slideInMenu {
    from { left: 100%; opacity: 0; }
    to { left: 0; opacity: 1; }
}
.custom-mobile-menu-subview.slide-out {
    animation: slideOutMenu 0.35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideOutMenu {
    from { left: 0; opacity: 1; }
    to { left: 100%; opacity: 0; }
}
/* Back button styling */
.custom-mobile-menu-back {
    display: flex;
    justify-content: flex-start;
    padding:0;
    font-size: 18px;
    color: #2C343B;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    width: 24px;
    height: 24px;
}
.custom-mobile-menu-back:before {
    content:"";
	display: inline-block;
	background-image: url(../images/arrow-left.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
}

.custom-mobile-menu li.open {
    background: rgba(5, 55, 60, 0.1);
}
.custom-mobile-menu li.open > .sub-menu {
    background: rgba(5, 55, 60, 0.1);
    padding-bottom: 12px;
}
.custom-mobile-menu li.open > a {
    background: rgba(5, 55, 60, 0.1);
	font-weight: 600;
}

/*Smooth slide In/Out main menu*/
.custom-mobile-menu > li {
    transform: translateX(0);
    opacity: 1;
    transition: all .3s ease;
}

.custom-mobile-menu.hide-main > li {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}