        /* Хедер */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Мобильное меню */
        #mobile-menu {
            transition: max-height 0.3s ease-in-out;
        }
        .mobile-menu-hidden {
            max-height: 0;
            overflow: hidden;
        }
        .mobile-menu-visible {
            max-height: 500px;
        }

        /* Кнопка гамбургер-меню */
        #mobile-menu-btn {
            display: none;
        }
        @media (max-width: 768px) {
            #mobile-menu-btn {
                display: block;
                font-size: 1.5rem;
                cursor: pointer;
                color: {{ config.header_text_color|default:'white' }};
                margin-left: auto; /* Размещаем кнопку в правом краю */
            }
            .desktop-nav {
                display: none;
            }
        }