/* =========================================================
   FLYOUT MENU – BASE CONTAINER
========================================================= */

.flyout-menu-container {
    position: relative;
}


/* =========================================================
   TOGGLE BUTTON (BURGER)
========================================================= */

.flyout-toggle {
    z-index: 10001;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.flyout-toggle svg,
.flyout-toggle img {
    width: 100%;
    height: auto;
}


/* =========================================================
   FLYOUT PANEL
========================================================= */

.flyout-menu {
    position: fixed;
    inset: 0;
    background-color: var(--e-global-color-primary);
    z-index: 10000;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    display: flex;
    flex-direction: column;

    overflow-y: auto;
}

.flyout-menu.active {
    transform: translateX(0);
}


/* =========================================================
   CLOSE BUTTON (TOP RIGHT)
========================================================= */

.flyout-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.flyout-close img {
    width: 18px;
    height: 18px;
}
button.flyout-close {
    padding: 0px !important;
    background-color: #fff !important;
    width: 48px;
    height: 48px;
}

/* =========================================================
   TOP ROW (LOGO + CLOSE)
========================================================= */

.flyout-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
}

.flyout-logo img {
    width: auto;
}

/* =========================================================
   MAIN NAV LIST
========================================================= */

.mob-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mob-nav > li:last-child {
    border-bottom: 1px solid rgba(255,255,255,1);
}

.mob-nav > li > a {
    display: block;
    padding:20px;
    color: #fff !important;

    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
}
.mob-nav ul {
    list-style: none;
    padding: 0px;
    border-bottom: 1px solid #fff;
}
.mob-nav li {
    border-top: 1px solid #fff;
    text-transform: uppercase;
}

/* =========================================================
   SUB-MENUS
========================================================= */

.mob-nav .menu-item-has-children > a::after {
    content: " ▾";
    font-size: 18px;
    margin-left: 6px;
}

.mob-nav .sub-menu {
    list-style: none;
    display: none;
    padding-left: 20px;
    padding-bottom: 12px;
}

.mob-nav .menu-item-has-children.active > .sub-menu {
    display: flex;
    flex-direction: column;
}

.mob-nav .sub-menu li a {
    font-size: 16px;
    letter-spacing: 0.06em;
}

.mob-nav li a {
    color: #fff;
}

/* =========================================================
   SOCIAL ICONS (PINNED TO BOTTOM)
========================================================= */

.flyout-socials {
    margin-top: auto;
    display: flex;
    gap: 18px;
    padding-top: 40px;
}

.flyout-socials a {
    color: #fff;
    font-size: 20px;
}


/* =========================================================
   BODY LOCK (OPTIONAL – ENABLED BY JS)
========================================================= */

body.flyout-open {
    overflow: hidden;
}




button.flyout-toggle {
    padding: 0px !important;
    background-color: #fff !important;
}

svg.papyrus_icon.burger path {
    fill: var(--e-global-color-primary) !important;
}


svg.papyrus_icon.burger {
    width: 18px;
}
@media only screen and (max-width:1024px) and (min-width:768px){
.flyout-logo img {
    width: 135px;
height:50px;

}
}
