/* Базовые сбросы для плашки — чтобы не зависеть от глобальных стилей сайта */
        .cookie-consent-banner * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Основной контейнер плашки (фиксированное позиционирование снизу) */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            font-size: 15px;
            line-height: 1.45;
            background: transparent;
            pointer-events: none; /* чтобы фон не перекрывал клики, но сама плашка будет pointer-events: auto */
            font-family: 'Circe', 'Montserrat', sans-serif;
            color: #3B4252
        }

        /* Блок с содержанием плашки — стилизованная карточка */
        .cookie-consent-banner__inner {
            background: #ffffff;
            max-width: 1280px;
            margin: 0 auto 20px auto;
            border-radius: 24px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 28px;
            pointer-events: auto;
            backdrop-filter: blur(0px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.2s ease;
        }

        /* Текстовая область */
        .cookie-consent-banner__text {
            flex: 2 1 300px;
            color: #1e2a3a;
        }

        .cookie-consent-banner__title {
            font-weight: 700;
            margin-bottom: 6px;
            color: #3B4252;
            letter-spacing: -0.2px;
        }

        .cookie-consent-banner__description {
            color: #777B87;
            opacity: 0.9;
        }

        /* Блок кнопок */
        .cookie-consent-banner__actions {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Кнопка "Принять" */
        .cookie-btn-accept {
            background: #45A6FF;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            font-family: inherit;
        }

        .cookie-btn-accept:hover {
            background-color: #2C99FD;
            opacity: 1;
            text-decoration: none;
        }

        .cookie-btn-accept:active {
            transform: scale(0.98);
        }

        /* Кнопка-крестик (закрыть без сохранения) */
        .cookie-btn-close {
            background: transparent;
            border: none;
            font-size: 22px;
            font-weight: 400;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #64748b;
            transition: 0.2s;
            font-family: monospace;
            line-height: 1;
        }

        .cookie-btn-close:hover {
            background: #f1f5f9;
            color: #0f172a;
            transform: rotate(90deg);
        }

        /* Адаптивность для мобильных */
        @media (max-width: 680px) {
            .cookie-consent-banner__inner {
                margin: 0 12px 16px 12px;
                padding: 16px 20px;
                align-items: stretch;
                border-radius: 20px;
            }
            
            .cookie-consent-banner__actions {
                justify-content: flex-end;
                margin-top: 4px;
            }
            
            .cookie-btn-accept {
                padding: 8px 20px;
                font-size: 0.85rem;
            }
            
            .cookie-consent-banner__title {
                font-size: 1rem;
            }
            
            .cookie-consent-banner__description {
                font-size: 0.85rem;
            }
        }

        /* Плавное появление */
        .cookie-consent-banner {
            animation: fadeInUp 0.3s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }