/* Mobile Menu - Slide Drawer */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d9ca71;
    margin: 5px 0;
    transition: 0.3s;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #003c35;
    z-index: 99999;
    overflow-y: auto;
    transition: right 0.3s ease;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-drawer.active {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(217,202,113,0.2);
}
.mobile-menu-header .logo-text {
    color: #d9ca71;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #d9ca71;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}
.mobile-menu-search {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(217,202,113,0.2);
}
.mobile-menu-search form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.mobile-menu-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}
.mobile-menu-search input::placeholder {
    color: rgba(255,255,255,0.5);
}
.mobile-menu-search button {
    border: none;
    background: #d9ca71;
    color: #003c35;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list > li {
    border-bottom: 1px dashed rgba(217,202,113,0.2);
}
.mobile-menu-list > li > a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-menu-list > li > a:hover {
    color: #d9ca71;
}
.mobile-menu-list .has-children {
    position: relative;
}
.mobile-menu-list .has-children > a {
    padding-right: 50px;
}
.menu-expand {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #d9ca71;
    font-size: 18px;
    border-left: 1px dashed rgba(217,202,113,0.2);
}
.has-children.open > .menu-expand .expand-icon:before {
    content: '\2212';
}
.expand-icon:before {
    content: '\002B';
}
.sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0,0,0,0.15);
}
.sub-menu li {
    border-top: 1px dashed rgba(217,202,113,0.1);
}
.sub-menu li a {
    display: block;
    padding: 12px 20px 12px 35px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    text-decoration: none;
}
.sub-menu li a:hover {
    color: #d9ca71;
}
.sub-menu .sub-menu li a {
    padding-left: 50px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.mobile-menu-auth {
    padding: 15px 20px;
    border-top: 1px solid rgba(217,202,113,0.2);
}
.mobile-menu-auth a {
    display: inline-block;
    padding: 8px 20px;
    color: #d9ca71;
    border: 1px solid #d9ca71;
    text-decoration: none;
    font-size: 13px;
    margin-right: 8px;
    text-transform: uppercase;
}
.mobile-menu-auth a:hover {
    background: #d9ca71;
    color: #003c35;
}

@media only screen and (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    .header-inner {
        display: none !important;
    }
    .mobile-nav {
        display: none !important;
    }
    .slicknav_menu {
        display: none !important;
    }
    .search-top {
        display: none !important;
    }
    .logo img {
        width: 180px !important;
    }
}
@media only screen and (min-width: 992px) {
    .mobile-menu-overlay,
    .mobile-menu-drawer,
    .mobile-menu-toggle {
        display: none !important;
    }
}
