/* Simple Mobile Menu CSS */
/* Reset and style the FRESH hamburger button */
.new-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    /* Ensure above sticky header elements */
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.new-hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #002347;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.new-hamburger-btn span:nth-child(2) {
    width: 80%;
    /* Stylish uneven middle bar */
    margin-left: auto;
    /* Align right */
}

/* Hover effect */
.new-hamburger-btn:hover span {
    background-color: #E91E63;
    width: 100%;
    /* Full width on hover */
}

/* Hide old styles if they persist */
.burger-icon,
.burger-icon-white {
    display: none !important;
}

/* Force layout to push hamburger to the right ONLY ON MOBILE */
@media (max-width: 991px) {
    .nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Ensure the header right section (containing the button) stays on the right */
    .header-right {
        margin-left: auto !important;
    }
}

#simple-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#simple-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

#simple-mobile-menu {
    position: fixed;
    top: 0;
    right: -80%;
    /* Start hidden off-screen */
    width: 80%;
    /* Takes 80% width, meeting "halfway" expectation roughly */
    max-width: 350px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

#simple-mobile-menu.active {
    right: 0;
}

/* Header inside menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 40px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

/* Menu items */
.mobile-menu-items {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list>li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-menu-list>li>a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Active State */
.mobile-menu-list>li.active>a {
    color: #E91E63;
    /* Pink accent */
    font-weight: 600;
}

/* Dropdown/Submenu */
.mobile-sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    background: #f9f9f9;
    padding-left: 15px;
    margin-bottom: 10px;
}

.mobile-menu-list>li.has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-list>li.has-children>a::after {
    content: '+';
    font-size: 18px;
    color: #999;
}

.mobile-menu-list>li.show-submenu>.mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

/* Contact Info at bottom */
.mobile-menu-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mobile-contact-item svg {
    margin-right: 10px;
    color: #E91E63;
}