/* Мобильные стили */
@media screen and (max-width: 1200px) {
    body {
        padding-top: 50px;
    }
    
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
        width: 100%;
        padding: 10px 0;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #eee;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .mobile-header-top {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }
    
    .mobile-header-top .logo {
        flex: 1;
    }
    
    .mobile-header-top .logo img {
        max-height: 30px;
    }
    
    .mobile-header-top .logo-text {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 38px;
        cursor: pointer;
        z-index: 1001;
        margin-left: 15px;
    }
    
    .mobile-menu-toggle .menu-open-icon,
    .mobile-menu-toggle .menu-close-icon {
        width: 100%;
        height: 100%;
    }
    
    .mobile-menu-toggle.active .menu-open-icon {
        display: none;
    }
    
    .mobile-menu-toggle.active .menu-close-icon {
        display: block !important;
    }
    
    .mobile-menu-toggle span {
        display: none;
    }
    
    .mobile-nav {
        display: none;
        background: white;
    }
    
    .mobile-nav.active {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }
    
    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .mobile-menu-links li {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-links li a {
        font-size: 16px;
        color: #333;
        text-decoration: none;
    }
    
    .mobile-phone {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px 0;
    }
    
    .desktop-nav, .desktop-status, .content-wrapper {
        display: none !important;
    }
    
    .mobile-content {
        display: block !important;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 10px;
    }
    
    .mobile-status {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .mobile-call {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-highlight {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-video {
        margin-bottom: 20px;
    }
    
    .mobile-message {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-bottom-status {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
} 