
        .lgpd-widget {
            position: fixed;
            left: 24px;
            bottom: 24px;
            z-index: 1200;
        }

        .lgpd-bubble {
            width: 58px;
            height: 58px;
            border: 0;
            border-radius: 999px;
            display: grid;
            place-items: center;
            color: white;
            background: linear-gradient(135deg, var(--public-deep, #0a4155), var(--public-teal, #1f97a7));
            box-shadow: 0 18px 32px rgba(12, 43, 58, 0.22);
            cursor: pointer;
        }

        .lgpd-popunder {
            width: min(440px, calc(100vw - 40px));
            margin-bottom: 14px;
            padding: 24px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.96);
            border: 2px solid rgba(16, 34, 49, 0.12);
            box-shadow: 0 24px 56px rgba(12, 43, 58, 0.24);
        }

        .lgpd-popunder h4 {
            margin: 0 0 10px;
            font-size: 18px;
            color: #7b3ff2;
            font-weight: 800;
        }

        .lgpd-popunder p {
            margin: 0;
            color: #415463;
            line-height: 1.7;
        }

        .lgpd-box {
            margin-top: 16px;
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid rgba(16, 34, 49, 0.18);
            background: rgba(245, 247, 250, 0.96);
            font-size: 15px;
            font-style: italic;
        }

        .lgpd-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
        }

        .lgpd-links a,
        .lgpd-toggle-link {
            color: #7b3ff2;
            font-weight: 700;
            text-decoration: underline;
            background: none;
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .lgpd-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
        }

        .lgpd-ghost {
            margin-right: auto;
            color: #415463;
            font-weight: 700;
        }

        .lgpd-pill {
            min-width: 128px;
            min-height: 54px;
            padding: 0 24px;
            border: 0;
            border-radius: 999px;
            font-weight: 800;
            color: white;
            background: linear-gradient(135deg, #7b3ff2, #9b47ff);
            box-shadow: 0 18px 30px rgba(123, 63, 242, 0.24);
            cursor: pointer;
        }

        .lgpd-bubble svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .lgpd-pill-secondary {
            background: linear-gradient(135deg, #6437c7, #8a44ef);
        }

        .lgpd-customize {
            display: none;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(16, 34, 49, 0.08);
        }

        .lgpd-customize.is-open {
            display: block;
        }

        .lgpd-customize .form-check {
            margin-top: 12px;
        }

        @media (max-width: 768px) {
            .lgpd-widget {
                left: 12px;
                bottom: 12px;
            }

            .lgpd-popunder {
                border-radius: 20px;
            }
        }
    