 /* ========== ОБНОВЛЕННЫЕ СТИЛИ С НОВЫМИ ЦВЕТАМИ ========== */
        
        /* Основные переменные */
        :root {
            --primary-green: #09BD6F;
            --primary-dark: #012748;
            --primary-yellow: #faf205;
            --primary-green-hover: #07a05d;
        }
        
        /* Кастомный брейкпоинт для 1010px */
        @media (max-width: 999px) {
            .hide-below-1010 {
                display: none !important;
            }
            .show-below-1010 {
                display: block !important;
            }
        }
        @media (min-width: 1000px) {
            .hide-above-1010 {
                display: none !important;
            }
            .show-above-1010 {
                display: block !important;
            }
        }
        
        /* PWA Installation Banner Styles - ОБНОВЛЕННЫЕ */
        .pwa-install-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #012748 0%, #1a3a5c 100%);
            border-bottom: 3px solid #09BD6F;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 10001;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .pwa-install-banner.show {
            transform: translateY(0);
        }
        
        .pwa-install-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .pwa-install-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }
        
        .pwa-install-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #09BD6F 0%, #07a05d 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .pwa-install-text h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #faf205;
        }
        
        .pwa-install-text p {
            margin: 4px 0 0;
            font-size: 13px;
            color: rgba(255,255,255,0.8);
        }
        
        .pwa-install-button {
            background: linear-gradient(135deg, #09BD6F 0%, #07a05d 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .pwa-install-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(9, 189, 111, 0.4);
        }
        
        .pwa-install-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .pwa-install-close:hover {
            background: rgba(220, 53, 69, 0.8);
            transform: rotate(90deg);
        }
        
        /* Offline Indicator */
        .offline-indicator {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 14px;
            z-index: 10002;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .offline-indicator.show {
            transform: translateY(0);
        }
        
        /* Кнопка "Разместить" */
        .btn-primary-custom {
            background: linear-gradient(135deg, #09BD6F 0%, #07a05d 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(9, 189, 111, 0.3);
            color: white;
        }
        
        /* Стили для логотипа */
        .navbar-brand img {
            width: auto;
            height: 70px;
            max-width: 300px;
            object-fit: contain;
        }
        
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
                max-width: 180px;
            }
        }
        
        /* Стили для навигации */
        .nav-link {
            font-size: 0.95rem;
            transition: all 0.2s ease;
            color: #012748 !important;
        }
        
        .nav-link:hover {
            color: #09BD6F !important;
            transform: translateX(3px);
        }
        
        /* ========== СТИЛИ ДЛЯ ВЫЕЗЖАЮЩЕЙ ПАНЕЛИ ========== */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100%;
            background: white;
            z-index: 1051;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .mobile-sidebar.open {
            left: 0;
        }
        
        .mobile-sidebar-header {
            padding: 20px;
            background: linear-gradient(135deg, #012748 0%, #1a3a5c 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .mobile-sidebar-header .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .mobile-sidebar-header .logo-area i {
            font-size: 28px;
            color: #09BD6F;
        }
        
        .mobile-sidebar-header .logo-area span {
            font-weight: 700;
            font-size: 18px;
        }
        
        .mobile-sidebar-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-sidebar-close:hover {
            background: rgba(220, 53, 69, 0.8);
            transform: rotate(90deg);
        }
        
        .mobile-sidebar-nav {
            flex: 1;
            padding: 10px 0;
        }
        
        .mobile-sidebar-nav .nav-item {
            list-style: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mobile-sidebar-nav .nav-link {
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #012748 !important;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-sidebar-nav .nav-link i {
            width: 24px;
            color: #09BD6F;
            font-size: 18px;
        }
        
        .mobile-sidebar-nav .nav-link:hover {
            background: rgba(9, 189, 111, 0.08);
            padding-left: 25px;
            color: #09BD6F !important;
        }
        
        /* Стили для секции страниц в мобильном меню */
        .mobile-sidebar-section {
            margin-top: 15px;
            padding: 10px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .mobile-sidebar-section-title {
            padding: 8px 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #09BD6F;
            font-weight: 700;
            background: rgba(9, 189, 111, 0.05);
        }
        
        .mobile-sidebar-footer {
            padding: 15px 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mobile-sidebar-footer .btn-primary-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
        }
        
        body.menu-open {
            overflow: hidden;
        }
        
        /* Стили для десктопной навигации - сдвигаем элементы вправо */
        .desktop-nav {
            display: block;
        }
        
        .desktop-nav .navbar {
            position: relative;
        }
        
        .desktop-nav .navbar-nav {
            margin-left: auto !important;
        }
        
        .desktop-nav .navbar-nav.ms-auto {
            margin-left: auto !important;
        }
        
        /* Стили для информационных страниц в десктопном меню */
        .desktop-info-pages {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .desktop-info-pages a {
            color: #012748;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .desktop-info-pages a:hover {
            color: #09BD6F;
        }
        
        .desktop-info-pages .separator {
            color: #ddd;
        }
        
        @media (min-width: 992px) and (max-width: 1200px) {
            .desktop-info-pages a {
                font-size: 0.75rem;
            }
            .desktop-info-pages {
                gap: 10px;
            }
        }
        
        @media (max-width: 991.98px) {
            .desktop-nav {
                display: none;
            }
            .desktop-info-pages {
                display: none;
            }
        }
        
        /* Адаптивность для мобильных */
        @media (max-width: 768px) {
            .pwa-install-banner-content {
                padding: 10px 15px;
                flex-direction: column;
                align-items: stretch;
            }
            
            .pwa-install-info {
                gap: 10px;
                padding-right: 30px;
            }
            
            .pwa-install-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .pwa-install-text h4 {
                font-size: 14px;
            }
            
            .pwa-install-text p {
                font-size: 11px;
            }
            
            .pwa-install-button {
                justify-content: center;
                padding: 8px 20px;
                font-size: 13px;
            }
            
            .pwa-install-close {
                position: absolute;
                top: 10px;
                right: 10px;
            }
        }
        
        /* Стили для алертов */
        #alerts-container {
            position: sticky;
            top: 0;
            z-index: 100000;
        }
        
        .site-alert {
            animation: slideDown 0.4s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Стили для выпадающего меню */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 0.5rem 0;
            margin-top: 8px;
        }
        
        .dropdown-item {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(9, 189, 111, 0.05);
            color: #09BD6F;
            padding-left: 1.25rem;
        }
        
        /* Кнопка навигации (бургер) */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            color: #012748;
            background: transparent;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler i {
            font-size: 1.5rem;
            color: #012748;
        }
        
        /* Верхняя строка */
        .border-bottom-custom {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            background: white;
        }
        
        /* Стили для десктопной навигации - кнопка категории и личный кабинет справа */
        @media (min-width: 992px) {
            .navbar-nav.ms-auto {
                margin-left: auto !important;
                display: flex;
                align-items: center;
            }
            
            .navbar-nav.me-auto {
                margin-right: auto;
            }
            
            .desktop-nav .container {
                position: relative;
            }
        }
    
    .navbar-nav .nav-link {
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .navbar-nav .nav-link:hover:not(.btn-primary-custom) {
        background: rgba(9, 189, 111, 0.05);
        transform: translateY(-2px);
    }

    .dropdown-menu {
        animation: fadeInDown 0.2s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        transition: all 0.2s ease;
        font-size: 0.9rem;
        border-radius: 8px;
        margin: 2px 6px;
    }

    .dropdown-item:hover {
        background: rgba(9, 189, 111, 0.08);
        transform: translateX(4px);
        color: #09BD6F;
    }

    .dropdown-item i {
        transition: all 0.2s ease;
    }

    .dropdown-item:hover i {
        transform: scale(1.1);
    }

    .dropdown-divider {
        margin: 6px 0;
        background: rgba(0, 0, 0, 0.05);
    }

    .avatar-icon {
        transition: all 0.3s ease;
    }

    .nav-link.dropdown-toggle:hover .avatar-icon {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(9, 189, 111, 0.3);
    }

    @media (min-width: 992px) {
        .navbar-nav.ms-auto {
            margin-left: auto !important;
        }
    }

    .nav-item.active .nav-link {
        color: #09BD6F !important;
        background: rgba(9, 189, 111, 0.1);
    }

    .message-badge {
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% {
            transform: translateY(-50%) scale(1);
        }
        50% {
            transform: translateY(-50%) scale(1.1);
        }
        100% {
            transform: translateY(-50%) scale(1);
        }
    }
     /* Стили футор */
    
    /* Анимации */
    .transition-all {
        transition: all 0.3s ease;
    }
    
    /* Стили для ссылок футера */
    footer a {
        transition: all 0.2s ease;
    }
    
    footer a:hover {
        color: #09BD6F !important;
        padding-left: 5px;
    }
    
    /* Стили для социальных иконок */
    .social-icon {
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.2) !important;
    }
    
    /* Мобильная панель навигации */
    .navbar.fixed-bottom {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link {
        transition: all 0.2s ease;
        border-radius: 12px;
        padding: 4px 8px !important;
    }
    
    .mobile-nav-link:hover {
        background: rgba(9, 189, 111, 0.1);
        transform: translateY(-2px);
    }
    
    .mobile-nav-link.active i {
        color: #09BD6F !important;
    }
    
    .mobile-nav-link.active small {
        color: #09BD6F !important;
    }
    
    /* Центральная кнопка */
    .navbar.fixed-bottom .btn-primary-custom {
        background: linear-gradient(135deg, #09BD6F 0%, #07a05d 100%);
        border: 3px solid white;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(9, 189, 111, 0.3);
    }
    
    .navbar.fixed-bottom .btn-primary-custom:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(9, 189, 111, 0.4);
    }
    
    .navbar.fixed-bottom .btn-primary-custom:active {
        transform: scale(0.98);
    }
    
    /* Анимация для бейджа уведомлений */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .navbar.fixed-bottom .badge {
        animation: pulse 2s infinite;
    }
    
    /* Адаптивность */
    @media (max-width: 360px) {
        .navbar.fixed-bottom .col {
            padding-left: 0.25rem !important;
            padding-right: 0.25rem !important;
        }
        
        .navbar.fixed-bottom .btn-primary-custom {
            width: 50px !important;
            height: 50px !important;
        }
        
        .navbar.fixed-bottom i {
            font-size: 1rem !important;
        }
        
        .navbar.fixed-bottom small {
            font-size: 0.6rem !important;
        }
    }
    
    @media (min-width: 992px) {
        .navbar.fixed-bottom {
            display: none !important;
        }
    }
    
    /* Для очень высоких экранов */
    @media (min-height: 800px) and (max-width: 992px) {
        .navbar.fixed-bottom {
            height: 70px !important;
        }
        .navbar.fixed-bottom .btn-primary-custom {
            width: 58px !important;
            height: 58px !important;
        }
    }