 /* === Cookie Banner === */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            z-index: 99999;
            width: calc(100% - 40px);
            max-width: 900px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15),
                        0 4px 16px rgba(0, 0, 0, 0.08);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 24px;
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                        opacity 0.4s ease;
            border: 1px solid rgba(27, 94, 62, 0.1);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                         'Helvetica Neue', Arial, sans-serif;
        }

        .cookie-banner.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .cookie-banner.hiding {
            transform: translateX(-50%) translateY(150%);
            opacity: 0;
        }

        /* Иконка */
        .cookie-banner__icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #1b5e3e 0%, #2e7d54 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(27, 94, 62, 0.3);
        }

        .cookie-banner__icon svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
        }

        /* Текст */
        .cookie-banner__content {
            flex: 1;
        }

        .cookie-banner__title {
            font-size: 15px;
            font-weight: 700;
            color: #1b5e3e;
            margin: 0 0 6px 0;
            letter-spacing: 0.01em;
        }

        .cookie-banner__text {
            font-size: 13.5px;
            line-height: 1.55;
            color: #4a5568;
            margin: 0;
        }

        .cookie-banner__link {
            color: #1b5e3e;
            text-decoration: underline;
            text-decoration-color: rgba(27, 94, 62, 0.4);
            text-underline-offset: 2px;
            transition: text-decoration-color 0.2s ease, color 0.2s ease;
            font-weight: 500;
        }

        .cookie-banner__link:hover {
            color: #2e7d54;
            text-decoration-color: #2e7d54;
        }

        /* Кнопки */
        .cookie-banner__actions {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cookie-banner__btn {
            padding: 11px 24px;
            border-radius: 10px;
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            letter-spacing: 0.01em;
            font-family: inherit;
        }

        .cookie-banner__btn--accept {
            background: linear-gradient(135deg, #1b5e3e 0%, #2e7d54 100%);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(27, 94, 62, 0.35);
        }

        .cookie-banner__btn--accept:hover {
            box-shadow: 0 6px 20px rgba(27, 94, 62, 0.45);
            transform: translateY(-1px);
        }

        .cookie-banner__btn--accept:active {
            transform: translateY(0);
        }

        .cookie-banner__btn--decline {
            background: transparent;
            color: #718096;
            border: 1.5px solid #e2e8f0;
        }

        .cookie-banner__btn--decline:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
            color: #4a5568;
        }

        /* === Адаптивность === */
        @media (max-width: 768px) {
            .cookie-banner {
                flex-direction: column;
                padding: 22px 20px;
                bottom: 12px;
                width: calc(100% - 24px);
                gap: 16px;
                align-items: stretch;
                text-align: center;
            }

            .cookie-banner__icon {
                margin: 0 auto;
                width: 46px;
                height: 46px;
            }

            .cookie-banner__icon svg {
                width: 24px;
                height: 24px;
            }

            .cookie-banner__title {
                font-size: 14px;
            }

            .cookie-banner__text {
                font-size: 13px;
            }

            .cookie-banner__actions {
                flex-direction: row;
                gap: 10px;
            }

            .cookie-banner__btn {
                flex: 1;
                padding: 12px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 400px) {
            .cookie-banner {
                border-radius: 12px;
                padding: 18px 16px;
                bottom: 8px;
                width: calc(100% - 16px);
            }

            .cookie-banner__actions {
                flex-direction: column;
            }
        }