        :root {
            --gg-cookie-primary: #298C37;
            --gg-cookie-header-bg: #f7b500;
            --gg-cookie-dark: #111111;
            --gg-cookie-muted: #666666;
            --gg-cookie-border: rgba(0, 0, 0, .12);
            --gg-cookie-bg: #ffffff;
        }

        body.gg-age-cookie-banner-open {
            overflow: hidden;
        }

        .gg-age-cookie-overlay {
            position: fixed;
            inset: 0;
            z-index: 999999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 18px;
            background: rgba(0, 0, 0, .62);
            backdrop-filter: blur(4px);
        }

        .gg-age-cookie-overlay.is-visible {
            display: flex;
        }

        .gg-age-cookie-modal {
            width: min(760px, 100%);
            max-height: calc(100vh - 36px);
            display: flex;
            flex-direction: column;
            background: var(--gg-cookie-bg);
            border-radius: 22px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
            overflow: hidden;
            animation: ggCookieIn .22s ease-out both;
        }

        @keyframes ggCookieIn {
            from {
                opacity: 0;
                transform: translateY(12px) scale(.985);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .gg-age-cookie-header {
            position: relative;
            display: grid;
            grid-template-columns: 74px minmax(0, 1fr) 34px;
            align-items: center;
            gap: 14px;
            padding: 20px 22px;
            background: var(--gg-cookie-header-bg);
            color: var(--gg-cookie-dark);
        }

        .gg-age-cookie-logo {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(0, 0, 0, .08);
            overflow: hidden;
        }

        .gg-age-cookie-logo img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            display: block;
        }

        .gg-age-cookie-title {
            margin: 0;
            color: var(--gg-cookie-dark);
            font-size: 18px;
            line-height: 1.15;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .02em;
        }

        .gg-age-cookie-close {
            width: 34px;
            height: 34px;
            border: 0;
            border-radius: 999px;
            background: rgba(0, 0, 0, .08);
            color: var(--gg-cookie-dark);
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
        }

        .gg-age-cookie-close:hover {
            background: rgba(0, 0, 0, .16);
        }

        .gg-age-cookie-body {
            padding: 22px;
            overflow: auto;
        }

        .gg-age-cookie-message h2 {
            margin: 0 0 10px;
            font-size: 22px;
            line-height: 1.15;
            font-weight: 950;
            color: var(--gg-cookie-primary);
            text-transform: uppercase;
        }

        .gg-age-cookie-message p {
            margin: 0 0 14px;
            font-size: 14px;
            line-height: 1.55;
            color: #222;
        }

        .gg-age-cookie-message strong {
            font-weight: 900;
        }

        .gg-age-cookie-categories {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .gg-age-cookie-category {
            border: 1px solid var(--gg-cookie-border);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
        }

        .gg-age-cookie-category summary {
            list-style: none;
            cursor: pointer;
        }

        .gg-age-cookie-category summary::-webkit-details-marker {
            display: none;
        }

        .gg-age-cookie-category-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto auto;
            align-items: center;
            gap: 12px;
            padding: 13px 14px;
        }

        .gg-age-cookie-category-title {
            font-size: 14px;
            font-weight: 900;
            color: var(--gg-cookie-dark);
        }

        .gg-age-cookie-always {
            font-size: 12px;
            font-weight: 800;
            color: var(--gg-cookie-muted);
        }

        .gg-age-cookie-chevron {
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--gg-cookie-muted);
            transform: rotate(90deg);
        }

        .gg-age-cookie-category[open] .gg-age-cookie-chevron {
            transform: rotate(-90deg);
        }

        .gg-age-cookie-description {
            padding: 0 14px 14px;
            font-size: 13px;
            line-height: 1.45;
            color: var(--gg-cookie-muted);
        }

        .gg-age-cookie-switch {
            position: relative;
            width: 46px;
            height: 26px;
            display: inline-block;
        }

        .gg-age-cookie-switch input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .gg-age-cookie-slider {
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: #d8d8d8;
            transition: .18s ease;
        }

        .gg-age-cookie-slider::before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            left: 3px;
            top: 3px;
            border-radius: 999px;
            background: #fff;
            box-shadow: 0 1px 4px rgba(0,0,0,.25);
            transition: .18s ease;
        }

        .gg-age-cookie-switch input:checked + .gg-age-cookie-slider {
            background: var(--gg-cookie-primary);
        }

        .gg-age-cookie-switch input:checked + .gg-age-cookie-slider::before {
            transform: translateX(20px);
        }

        .gg-age-cookie-switch input:disabled + .gg-age-cookie-slider {
            background: var(--gg-cookie-dark);
            opacity: .9;
        }

        .gg-age-cookie-links {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--gg-cookie-border);
        }

        .gg-age-cookie-links ul {
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
        }

        .gg-age-cookie-links a,
        .gg-age-cookie-link-button {
            border: 0;
            padding: 0;
            background: transparent;
            color: var(--gg-cookie-primary);
            font-size: 13px;
            line-height: 1.3;
            font-weight: 800;
            text-decoration: underline;
            cursor: pointer;
        }

        .gg-age-cookie-footer {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 10px;
            padding: 18px 22px;
            border-top: 1px solid var(--gg-cookie-border);
            background: #fafafa;
        }

        .gg-age-cookie-btn {
            min-height: 42px;
            padding: 11px 16px;
            border: 1px solid transparent;
            border-radius: 999px;
            font-size: 13px;
            line-height: 1;
            font-weight: 950;
            cursor: pointer;
            text-transform: uppercase;
            transition: .18s ease;
        }

        .gg-age-cookie-btn--accept {
            background: var(--gg-cookie-primary);
            color: #fff;
            border-color: var(--gg-cookie-primary);
        }

        .gg-age-cookie-btn--accept:hover {
            filter: brightness(.95);
        }

        .gg-age-cookie-btn--deny,
        .gg-age-cookie-btn--prefs,
        .gg-age-cookie-btn--save {
            background: #fff;
            color: var(--gg-cookie-dark);
            border-color: var(--gg-cookie-border);
        }

        .gg-age-cookie-btn--save {
            display: none;
        }

        .gg-age-cookie-modal.is-preferences .gg-age-cookie-btn--save {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .gg-age-cookie-modal.is-preferences .gg-age-cookie-btn--prefs {
            display: none;
        }

        .gg-age-cookie-reopen {
            position: fixed;
            left: 16px;
            bottom: 16px;
            z-index: 999998;
            display: none;
            min-height: 36px;
            padding: 9px 12px;
            border: 1px solid var(--gg-cookie-border);
            border-radius: 999px;
            background: #fff;
            color: #111;
            font-size: 12px;
            font-weight: 900;
            box-shadow: 0 6px 20px rgba(0,0,0,.16);
            cursor: pointer;
        }

        .gg-age-cookie-reopen.is-visible {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        @media (max-width: 767px) {
            .gg-age-cookie-overlay {
                align-items: flex-end;
                padding: 10px;
            }

            .gg-age-cookie-modal {
                max-height: calc(100vh - 20px);
                border-radius: 18px;
            }

            .gg-age-cookie-header {
                grid-template-columns: 58px minmax(0, 1fr) 32px;
                gap: 10px;
                padding: 16px;
            }

            .gg-age-cookie-logo {
                width: 48px;
                height: 48px;
            }

            .gg-age-cookie-logo img {
                width: 40px;
                height: 40px;
            }

            .gg-age-cookie-title {
                font-size: 15px;
            }

            .gg-age-cookie-body {
                padding: 16px;
            }

            .gg-age-cookie-message h2 {
                font-size: 18px;
            }

            .gg-age-cookie-message p {
                font-size: 13px;
            }

            .gg-age-cookie-footer {
                grid-template-columns: 1fr;
                padding: 14px 16px;
            }

            .gg-age-cookie-btn {
                width: 100%;
            }

            .gg-age-cookie-links ul {
                display: grid;
                gap: 8px;
            }

            .gg-age-cookie-reopen {
                left: 10px;
                bottom: 10px;
            }
        }

        .gg-age-cookie-read-more-btn {
            border: 0;
            padding: 0;
            background: transparent;
            color: var(--gg-cookie-primary);
            font-size: 13px;
            font-weight: 800;
            text-decoration: underline;
            cursor: pointer;
            margin-top: 2px;
            display: inline-block;
        }

        .gg-age-cookie-read-more-btn:hover {
            opacity: .75;
        }

        .gg-age-cookie-extra {
            display: none;
        }

        .gg-age-cookie-extra.is-open {
            display: block;
        }
