        .lt-consent-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            background: rgba(24, 24, 24, 0.35);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            padding: 0;
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }
        .lt-consent-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .lt-consent-card {
            position: relative;
            width: 100%;
            max-width: 420px;
            background: #ffffff;
            border-radius: 20px 20px 0 0;
            padding: 18px 16px 14px;
            box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.14);
            transform: translateY(110%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            margin: 0;
            color: #181818;
        }
        .lt-consent-overlay.is-open .lt-consent-card { transform: translateY(0); }
        .lt-consent-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        .lt-consent-icon {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            background: #eceef1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .lt-consent-icon svg { width: 16px; height: 16px; color: #181818; }
        .lt-consent-title {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.25;
            margin: 0;
        }
        .lt-consent-text {
            font-size: 12.5px;
            line-height: 1.5;
            color: #5a5a5a;
            margin: 0 0 12px;
        }
        .lt-consent-text a {
            color: #181818;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .lt-consent-settings {
            margin: 0 0 10px;
            border-radius: 12px;
            background: #f5f6f8;
            padding: 0 12px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.25s ease;
        }
        .lt-consent-settings.is-open {
            max-height: 220px;
            opacity: 1;
            padding: 4px 12px 8px;
        }
        .lt-consent-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            border-bottom: 1px solid rgba(24, 24, 24, 0.06);
            font-size: 13px;
            font-weight: 500;
        }
        .lt-consent-row:last-child { border-bottom: 0; }
        .lt-consent-row-text { flex: 1; min-width: 0; }
        .lt-consent-row-desc {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: #6b6b6b;
            margin-top: 1px;
        }
        .lt-consent-switch {
            position: relative;
            width: 34px;
            height: 20px;
            flex-shrink: 0;
        }
        .lt-consent-switch input {
            opacity: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            cursor: pointer;
            position: absolute;
            inset: 0;
        }
        .lt-consent-switch-track {
            position: absolute;
            inset: 0;
            background: #d1d5db;
            border-radius: 999px;
            transition: background 0.2s ease;
        }
        .lt-consent-switch-track::after {
            content: "";
            position: absolute;
            top: 2px;
            left: 2px;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .lt-consent-switch input:checked + .lt-consent-switch-track { background: #181818; }
        .lt-consent-switch input:checked + .lt-consent-switch-track::after { transform: translateX(14px); }
        .lt-consent-switch input:disabled { cursor: not-allowed; }
        .lt-consent-switch input:disabled + .lt-consent-switch-track { background: #181818; opacity: 0.55; }
        .lt-consent-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
        }
        .lt-consent-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 14px;
            border: none;
            border-radius: 10px;
            font: inherit;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.18s ease, opacity 0.18s ease, color 0.18s ease;
        }
        .lt-consent-btn-primary,
        .lt-consent-btn-secondary {
            background: #fff;
            color: #181818;
            border: 1.5px solid #181818;
        }
        .lt-consent-btn-primary:hover,
        .lt-consent-btn-secondary:hover {
            background: #181818;
            color: #fff;
        }
        .lt-consent-btn-primary:active,
        .lt-consent-btn-secondary:active { opacity: 0.85; }
        .lt-consent-btn-ghost {
            grid-column: 1 / -1;
            background: transparent;
            color: #6b6b6b;
            height: 28px;
            font-size: 12px;
            font-weight: 500;
        }
        .lt-consent-btn-ghost:hover { color: #181818; }
        .lt-consent-btn-full {
            grid-column: 1 / -1;
            background: #181818;
            color: #fff;
            border: 1.5px solid #181818;
        }
        .lt-consent-btn-full:hover { background: #2a2a2a; }
        .lt-consent-links {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            gap: 14px;
            font-size: 11px;
            color: #6b6b6b;
        }
        .lt-consent-links a {
            color: #6b6b6b;
            text-decoration: none;
        }
        .lt-consent-links a:hover { color: #181818; text-decoration: underline; }
        .lt-consent-links a:hover,
        .lt-consent-links a:focus,
        .lt-consent-links a:active {
            color: #6b6b6b;
            text-decoration: none;
            outline: none;
        }
        @media (min-width: 700px) {
            .lt-consent-overlay { align-items: center; padding: 16px; }
            .lt-consent-card { border-radius: 18px; transform: translateY(30px) scale(0.97); }
            .lt-consent-overlay.is-open .lt-consent-card { transform: translateY(0) scale(1); }
        }

        .lt-consent-overlay,
        .lt-consent-card,
        .lt-consent-settings,
        .lt-consent-switch-track,
        .lt-consent-switch-track::after,
        .lt-consent-btn {
            transition: none !important;
        }

        @media (min-width: 700px) {
            .lt-consent-card,
            .lt-consent-overlay.is-open .lt-consent-card {
                transform: none;
            }
        }
