.wpl-nav-widget {
    position: relative;
    width: 100%;
}

.wpl-nav-desktop {
    background: #001d2f;
    min-height: 68px;
    display: flex;
    align-items: center;
}

.wpl-nav-desktop-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 14px 22px;
}

.wpl-nav-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 33px;
    line-height: 1.25;
    font-weight: 500;
}

.wpl-nav-link:hover {
    color: #e2bd97;
}

.wpl-nav-mobile-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 74px;
    padding: 10px 14px;
    background: #001d2f;
}

.wpl-nav-mobile-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.wpl-nav-logo-img {
    max-height: 54px;
    width: auto;
    display: block;
}

.wpl-nav-logo-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.wpl-nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
}

.wpl-nav-hamburger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wpl-nav-hamburger i,
.wpl-nav-hamburger svg {
    display: block;
    width: 1em;
    height: 1em;
}

.wpl-nav-mobile-cta {
    text-decoration: none;
    color: #e2bd97;
    border: 1px solid #e2bd97;
    padding: 10px 14px;
    line-height: 1;
    font-size: 16px;
    white-space: nowrap;
}

.wpl-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.wpl-nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.wpl-nav-drawer-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: calc(100vw - 34px);
    background: #001d2f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 12px 16px 24px;
    overflow-y: auto;
    transform: translate3d(-102%, 0, 0);
    transition: transform 0.32s ease;
}

.wpl-nav-drawer.is-open {
    pointer-events: auto;
}

.wpl-nav-drawer.is-open .wpl-nav-drawer-backdrop {
    opacity: 1;
}

.wpl-nav-drawer.is-open .wpl-nav-drawer-panel {
    transform: translate3d(0, 0, 0);
}

.wpl-nav-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.wpl-nav-drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    background: transparent;
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    margin-top: 2px;
}

.wpl-nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    margin-bottom: 16px;
}

.wpl-nav-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.wpl-nav-tab-btn.is-active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.wpl-nav-tab-panel {
    display: none;
}

.wpl-nav-tab-panel.is-active {
    display: block;
}

.wpl-nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wpl-nav-mobile-list .wpl-nav-link {
    font-size: 33px;
    line-height: 1.25;
}

.wpl-nav-tab-panel,
.wpl-nav-tab-panel p,
.wpl-nav-tab-panel li,
.wpl-nav-tab-panel h1,
.wpl-nav-tab-panel h2,
.wpl-nav-tab-panel h3,
.wpl-nav-tab-panel h4,
.wpl-nav-tab-panel h5,
.wpl-nav-tab-panel h6 {
    color: #ffffff;
}

html.wpl-nav-lock-scroll,
body.wpl-nav-lock-scroll {
    overflow: hidden;
}
