       /* ===== СТИЛИ ВСПЛЫВАЮЩЕЙ ПОЛОСКИ (FOOTER NOTIFICATION) ===== */
        /* Модальное окно в виде полоски в футере */
        .modal.cookie-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
            border-top: 1px solid rgba(0, 40, 60, 0.08);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            z-index: 1000;
            backdrop-filter: blur(0px);
            font-family: inherit;
        }

        /* Активное состояние — полоска поднята */
        .modal.cookie-modal.active {
            transform: translateY(0);
        }

        /* Внутренний контейнер для центрирования и отступов */
        .cookie-modal__container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Левая часть с текстом */
        .cookie-modal__body {
            flex: 2;
            min-width: 200px;
        }

        .cookie-modal__body h2 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: #0b2b3b;
            letter-spacing: -0.2px;
        }

        .cookie-modal__body p {
            font-size: 0.9rem;
            color: #334e68;
            margin: 0;
            line-height: 1.4;
        }

        .cookie-modal__body a {
            color: #1a6e8f;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed #9bb7d0;
            transition: color 0.2s;
        }

        .cookie-modal__body a:hover {
            color: #0b4f6c;
            border-bottom-style: solid;
        }

        /* Блок с кнопкой и крестиком */
        .cookie-modal__actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        /* Кнопка "Согласен" в стиле сайта */
        .button.button_dark {
            background: #0b2b3b;
            color: white;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            letter-spacing: 0.3px;
            text-align: center;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            white-space: nowrap;
        }

        .button.button_dark:hover {
            background: #144e6b;
            transform: scale(0.97);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Кнопка закрытия (крестик) */
        .cookie-modal__closer {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f0f3f8;
            transition: background 0.2s;
        }

        .cookie-modal__closer:hover {
            background: #e6edf4;
        }

        /* Иконка крестика (чистый CSS + SVG) */
        .icon-cross {
            display: inline-block;
            width: 16px;
            height: 16px;
            position: relative;
        }
        .icon-cross::before,
        .icon-cross::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 2px;
            background-color: #4a627a;
            top: 7px;
            left: 1px;
            border-radius: 2px;
        }
        .icon-cross::before {
            transform: rotate(45deg);
        }
        .icon-cross::after {
            transform: rotate(-45deg);
        }

        /* Мобильная адаптация: стеком */
        @media (max-width: 700px) {
            .cookie-modal__container {
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
            }
            .cookie-modal__actions {
                justify-content: flex-end;
                margin-top: 0.5rem;
            }
            .cookie-modal__body h2 {
                font-size: 1rem;
            }
            .cookie-modal__body p {
                font-size: 0.85rem;
            }
            .button.button_dark {
                padding: 0.5rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        /* Для очень маленьких экранов */
        @media (max-width: 480px) {
            .cookie-modal__actions {
                justify-content: space-between;
            }
            .cookie-modal__body {
                text-align: left;
            }
        }

        /* Анимация плавного появления для содержимого */
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .cookie-modal.active .cookie-modal__container {
            animation: fadeSlideUp 0.35s ease-out forwards;
        }
    