.mob-bottom-nav,
.mob-fullscreen-menu {
    display: none;
}

@media screen and (min-width: 320px) and (max-width: 415px) {
    .mob-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #1842e1;
        z-index: 99999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        padding-bottom: env(safe-area-inset-bottom);
        box-sizing: border-box;
    }
    .mob-nav-item {
        flex: 1;
        text-align: center;
        text-decoration: none;
        color: #ffffff !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-family: sans-serif;
        cursor: pointer;
    }
    .mob-nav-icon {
        font-size: 18px;
        margin-bottom: 4px;
        color: #ffffff;
    }
    .mob-nav-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    .mob-fullscreen-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -105%; /* Спрятано слева */
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #ffffff;
        z-index: 99997;
        transition: left 0.3s ease-in-out;
        box-sizing: border-box;
    }

    .mob-fullscreen-menu.is-open {
        left: 0;
    }
    .mob-menu-close-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 45px;
        background-color: #1842e1;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        z-index: 99998;
    }
    .mob-menu-close-bar i {
        margin-right: 8px;
    }
    .mob-menu-container {
        height: 100%;
        overflow-y: auto;
        padding: 60px 15px 30px 15px;
        box-sizing: border-box;
    }
    .mob-menu-section {
        margin-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }
    
    .mob-menu-section:last-child {
        border-bottom: none;
    }

    .mob-section-title {
        font-family: sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #1842e1;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mob-section-title.single-link {
        text-decoration: none;
        display: block;
        margin-bottom: 0;
    }
    .mob-links-grid {
        display: flex;
        flex-direction: column;
    }

    .mob-links-grid a {
        font-family: sans-serif;
        display: block;
        padding: 9px 0;
        color: #333333 !important;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px dashed #f5f5f5;
    }
    
    .mob-links-grid a:last-child {
        border-bottom: none;
    }
    
    .mob-links-grid a.mob-link-bold,
    .mob-link-bold {
        font-family: sans-serif;
        font-weight: 600;
        color: #000000 !important;
        margin-top: 8px;
        font-size: 14px;
        border-bottom: none;
    }
    .mob-sub-links {
        padding-left: 12px;
        border-left: 2px solid #1842e1;
        margin: 4px 0 8px 0;
    }
    
    .mob-sub-links a {
        font-size: 13px;
        color: #555555 !important;
        padding: 7px 0;
    }
    .mob-sub-links-scrollable {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 5px 0 10px 0;
        margin-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    .mob-sub-links-scrollable a {
        display: inline-block;
        background-color: #f0f4ff;
        color: #1842e1 !important;
        padding: 6px 14px !important;
        margin-right: 8px;
        border-radius: 20px;
        font-size: 13px;
        text-decoration: none;
        border-bottom: none !important;
    }
    body.mob-menu-active {
        overflow: hidden !important;
    }
    body {
        padding-bottom: 60px !important;
    }
    #wpfront-scroll-top-container{
    	bottom: 70px !important;
    }
}