﻿:root {
            --lx-primary: var(--lex-green, #1e824c);
            --lx-primary-hover: #145b35;
            --lx-primary-soft: #edf8f1;
            --lx-bg: var(--lex-bg, #f8fafc);
            --lx-panel: var(--lex-card, #ffffff);
            --lx-border: var(--lex-border, #e2e8f0);
            --lx-border-strong: #cbd5e1;
            --lx-text-dark: var(--lex-text, #1f2937);
            --lx-text-light: var(--lex-muted, #64748b);
            --lx-warning-red: #d32f2f;
            --lx-shadow: var(--lex-shadow, 0 12px 30px rgba(15, 23, 42, 0.08));
            --lx-radius: var(--lex-radius, 14px);
        }

        .lx-wrapper,
        .lx-wrapper * {
            box-sizing: border-box;
        }

        .lx-wrapper {
            display: grid;
            grid-template-columns: minmax(250px, 300px) 1fr;
            gap: 28px;
            align-items: start;
            position: relative;
            margin-top: 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .lx-sidebar {
            background: var(--lx-panel);
            border: 1px solid var(--lx-border);
            border-radius: var(--lx-radius, 14px);
            padding: 18px;
            box-shadow: var(--lx-shadow);
            position: -webkit-sticky;
            position: sticky;
            top: 96px;
            align-self: start;
            max-height: calc(100vh - 116px);
            overflow-y: auto;
            z-index: 10;
        }

        .lx-sidebar::-webkit-scrollbar { width: 5px; }
        .lx-sidebar::-webkit-scrollbar-track { background: transparent; }
        .lx-sidebar::-webkit-scrollbar-thumb { background: #d9e2ec; border-radius: 999px; }

        .lx-sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--lx-border);
            margin-bottom: 16px;
        }

        .lx-sidebar-title {
            display: block;
            color: var(--lx-text-dark);
            font-size: 18px;
            line-height: 1.2;
            font-weight: 850;
        }

        .lx-sidebar-subtitle {
            display: block;
            color: var(--lx-text-light);
            font-size: 12px;
            line-height: 1.45;
            margin-top: 5px;
            font-weight: 500;
        }

        .lx-sidebar-close {
            display: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--lx-border);
            border-radius: 999px;
            background: #fff;
            color: var(--lx-text-dark);
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            flex-shrink: 0;
        }

        .lx-filter-group {
            margin-bottom: 16px;
        }

        .lx-filter-group label {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            color: var(--lx-text-dark);
            font-size: 14px;
            font-weight: 750;
            margin-bottom: 8px;
        }

        .lx-filter-group label small {
            color: var(--lx-text-light);
            font-size: 11px;
            font-weight: 650;
            white-space: nowrap;
        }

        .lx-input-wrap {
            position: relative;
        }

        .lx-input-prefix {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--lx-text-light);
            font-size: 14px;
            font-weight: 750;
            pointer-events: none;
        }

        .lx-input-wrap input[type="number"] {
            padding-left: 32px !important;
        }

        .lx-filter-group input[type="number"],
        .lx-filter-group select {
            width: 100%;
            min-height: 46px;
            padding: 11px 12px;
            border: 1px solid var(--lx-border-strong);
            border-radius: 12px;
            background-color: #fff;
            color: var(--lx-text-dark);
            font-size: 15px;
            outline: none;
            transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        }

        .lx-filter-group input[type="number"]:focus,
        .lx-filter-group select:focus {
            border-color: var(--lx-primary);
            box-shadow: 0 0 0 4px rgba(30, 130, 76, 0.12);
        }

        .lx-filter-help {
            display: block;
            margin-top: 7px;
            color: var(--lx-text-light);
            font-size: 12px;
            line-height: 1.4;
        }

        .lx-range-group {
            padding: 12px;
            border: 1px solid var(--lx-border);
            border-radius: 16px;
            background: #fbfdff;
        }

        .lx-range-value-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            min-height: 28px;
            margin-bottom: 8px;
        }

        .lx-range-value-row strong {
            color: var(--lx-text-dark);
            font-size: 18px;
            line-height: 1.1;
            font-weight: 850;
        }

        .lx-mini-reset {
            appearance: none;
            border: 1px solid var(--lx-border);
            border-radius: 999px;
            background: #fff;
            color: var(--lx-text-light);
            padding: 5px 9px;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
        }

        .lx-mini-reset:hover {
            border-color: var(--lx-primary);
            color: var(--lx-primary);
        }

        .lx-range-group input[type="range"] {
            appearance: none;
            width: 100%;
            height: 34px;
            margin: 0;
            background: transparent;
            cursor: pointer;
        }

        .lx-range-group input[type="range"]::-webkit-slider-runnable-track {
            height: 8px;
            border-radius: 999px;
            background: #dbe5ee;
        }

        .lx-range-group.lx-range-active input[type="range"]::-webkit-slider-runnable-track {
            background: linear-gradient(90deg, var(--lx-primary), #b8e3c8);
        }

        .lx-range-group input[type="range"]::-webkit-slider-thumb {
            appearance: none;
            width: 24px;
            height: 24px;
            margin-top: -8px;
            border: 3px solid #fff;
            border-radius: 999px;
            background: var(--lx-primary);
            box-shadow: 0 3px 10px rgba(15, 23, 42, 0.22);
        }

        .lx-range-group input[type="range"]::-moz-range-track {
            height: 8px;
            border-radius: 999px;
            background: #dbe5ee;
        }

        .lx-range-group.lx-range-active input[type="range"]::-moz-range-track {
            background: var(--lx-primary);
        }

        .lx-range-group input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border: 3px solid #fff;
            border-radius: 999px;
            background: var(--lx-primary);
            box-shadow: 0 3px 10px rgba(15, 23, 42, 0.22);
        }

        .lx-range-limits {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            color: var(--lx-text-light);
            font-size: 11px;
            font-weight: 700;
            line-height: 1.2;
        }

        .lx-quick-amounts {
            display: flex;
            flex-wrap: nowrap;
            gap: 7px;
            margin-top: 10px;
            overflow-x: auto;
            padding-bottom: 2px;
            scrollbar-width: none;
        }

        .lx-quick-amounts::-webkit-scrollbar {
            display: none;
        }

        .lx-age-chip {
            appearance: none;
            flex: 0 0 auto;
            border: 1px solid var(--lx-border);
            border-radius: 999px;
            background: #fff;
            color: var(--lx-text-dark);
            padding: 8px 10px;
            font-size: 12px;
            font-weight: 800;
            line-height: 1;
            cursor: pointer;
            transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
        }

        .lx-age-chip:hover,
        .lx-age-chip.lx-chip-active {
            border-color: var(--lx-primary);
            color: var(--lx-primary);
            background: var(--lx-primary-soft);
        }

        .lx-age-chip:active {
            transform: scale(0.97);
        }

        .lx-filter-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin-top: 18px;
        }

        .lx-clear-btn,
        .lx-drawer-apply-btn {
            width: 100%;
            min-height: 46px;
            border-radius: 12px;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
        }

        .lx-clear-btn {
            background: #fff;
            color: var(--lx-text-dark);
            border: 1px solid var(--lx-border-strong);
        }

        .lx-clear-btn:hover {
            border-color: var(--lx-primary);
            color: var(--lx-primary);
            background: var(--lx-primary-soft);
        }

        .lx-drawer-apply-btn {
            display: none;
            border: none;
            background: var(--lx-primary);
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .lx-drawer-apply-btn:hover {
            background: var(--lx-primary-hover);
        }

        .lx-clear-btn:active,
        .lx-drawer-apply-btn:active {
            transform: scale(0.98);
        }

        .lx-main-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-width: 0;
        }

        .lx-feed-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            min-height: 44px;
            padding: 4px 0 2px;
        }

        .lx-match-count {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--lx-text-dark);
            font-size: 16px;
            font-weight: 750;
            min-width: 0;
        }

        .lx-sort-top {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .lx-sort-top label {
            color: var(--lx-text-light);
            font-size: 13px;
            font-weight: 800;
            white-space: nowrap;
        }

        .lx-sort-top select {
            min-height: 38px;
            max-width: 210px;
            padding: 8px 34px 8px 11px;
            border: 1px solid var(--lx-border-strong);
            border-radius: 999px;
            background: #fff;
            color: var(--lx-text-dark);
            font-size: 13px;
            font-weight: 750;
            outline: none;
        }

        .lx-sort-top select:focus {
            border-color: var(--lx-primary);
            box-shadow: 0 0 0 3px rgba(30, 130, 76, 0.12);
        }

        .lx-match-count::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: var(--lx-primary);
            box-shadow: 0 0 0 4px rgba(30, 130, 76, 0.12);
        }

        .lx-legal-warning {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 15px 16px;
            background: #fff;
            border: 1px solid var(--lx-border);
            border-radius: 14px;
            box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
        }

        .lx-warning-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            fill: var(--lx-warning-red);
        }

        .lx-warning-text {
            color: var(--lx-text-dark);
            font-size: 12px;
            line-height: 1.5;
            text-align: left;
        }

        .lx-warning-text strong {
            display: block;
            margin-bottom: 5px;
            color: #111827;
            font-size: 13px;
        }

        .lx-warning-text a {
            color: var(--lx-warning-red);
            text-decoration: underline;
            font-weight: 700;
        }

        .lx-warning-desktop {
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-top: 20px;
            padding: 14px;
        }

        .lx-warning-desktop .lx-warning-text {
            text-align: center;
        }

        .lx-warning-mobile {
            margin-top: 2px;
            margin-bottom: 20px;
        }

        .lx-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .lx-card {
            background: #fff;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .lx-card:hover {
            border-color: var(--lx-primary);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .lx-card.lx-card-disabled {
            opacity: 0.42;
            filter: grayscale(1);
            background: #f3f4f6;
            border-color: #e5e7eb;
            box-shadow: none;
        }

        .lx-card.lx-card-disabled:hover {
            border-color: #e5e7eb;
            box-shadow: none;
            transform: none;
        }

        .lx-card.lx-card-disabled .lx-btn {
            background: #a0aec0;
            cursor: not-allowed;
            pointer-events: none;
        }

        .lx-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 4px 15px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .lx-logo {
            height: 50px;
            object-fit: contain;
            margin: 15px auto 20px auto;
        }

        .lx-card-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 10px;
            margin-bottom: 25px;
            text-align: left;
            font-size: 15px;
        }

        .lx-card-details div {
            display: flex;
            flex-direction: column;
        }

        .lx-card-details strong {
            color: var(--lx-text-light);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lx-card-details span {
            color: var(--lx-text-dark);
            font-size: 16px;
            font-weight: 800;
            margin-top: 2px;
        }

        .lx-btn {
            display: block;
            background: var(--lx-primary);
            color: #fff !important;
            padding: 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 850;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.18s ease, transform 0.12s ease;
            margin-bottom: 15px;
            border: none;
            cursor: pointer;
        }

        .lx-btn:hover {
            background: var(--lx-primary-hover);
        }

        .lx-btn:active {
            transform: scale(0.98);
        }

        .lx-example-box {
            color: var(--lx-text-light);
            background: #f8fafc;
            border: 1px solid #edf2f7;
            border-radius: 8px;
            padding: 8px 10px;
            max-height: 60px;
            overflow-y: auto;
            font-size: 10px;
            line-height: 1.4;
            text-align: left;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 #f1f5f9;
        }

        .lx-example-box::-webkit-scrollbar { width: 4px; }
        .lx-example-box::-webkit-scrollbar-track { background: #f1f5f9; }
        .lx-example-box::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

        .lx-mobile-filter-bar,
        .lx-drawer-backdrop {
            display: none;
        }

        .lx-wrapper, .entry-content, .site-content, #main, #content,
        .elementor-section, .elementor-container, .elementor-widget-wrap,
        .elementor-widget-shortcode, .wp-block-group {
            overflow: visible !important;
        }

        .lx-sticky-cta {
            position: fixed;
            right: 0;
            bottom: -150px;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
            transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999998;
            padding: 15px 20px;
            display: flex;
            justify-content: center;
            border-top: 2px solid var(--lx-primary);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .lx-sticky-cta.lx-cta-show { bottom: 0; }
        .lx-cta-inner { display: flex; align-items: center; justify-content: space-between; max-width: 900px; width: 100%; gap: 20px; }
        .lx-cta-logo { height: 45px; object-fit: contain; background: #fff; padding: 5px; border-radius: 6px; }
        .lx-cta-text { flex-grow: 1; display: flex; flex-direction: column; }
        .lx-cta-title { color: var(--lx-text-dark); font-weight: 850; font-size: 16px; }
        .lx-cta-desc { color: var(--lx-text-light); font-size: 13px; margin-top: 3px; }
        .lx-cta-action { margin-bottom: 0; padding: 14px 30px; white-space: nowrap; }

        @media (min-width: 901px) {
            .lx-warning-mobile { display: none; }
        }

        @media (max-width: 900px) {
            .lx-wrapper {
                display: block;
                margin-top: 16px;
            }

            .lx-main-content {
                gap: 16px;
            }

            .lx-feed-toolbar {
                display: grid;
                grid-template-columns: 1fr auto;
                gap: 10px;
                align-items: center;
                padding: 0 2px;
                margin-bottom: 2px;
            }

            .lx-sort-top label {
                display: none;
            }

            .lx-sort-top select {
                max-width: 162px;
                min-height: 36px;
                font-size: 12px;
                padding: 7px 28px 7px 10px;
            }

            .lx-match-count {
                font-size: 14px;
            }

            .lx-sidebar {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: auto;
                width: min(92vw, 420px);
                max-height: none;
                height: 100dvh;
                z-index: 1000000;
                border-radius: 22px 0 0 22px;
                border-top: 0;
                border-right: 0;
                border-bottom: 0;
                padding: 18px 16px 120px;
                overflow-y: auto;
                box-shadow: -24px 0 55px rgba(15, 23, 42, 0.22);
                transform: translateX(106%);
                visibility: hidden;
                transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s ease;
            }

            .lx-sidebar.lx-open {
                transform: translateX(0);
                visibility: visible;
            }

            .lx-sidebar-header {
                position: sticky;
                top: -18px;
                background: rgba(255,255,255,0.96);
                backdrop-filter: blur(12px);
                z-index: 2;
                margin: -18px -16px 16px;
                padding: 16px 16px 14px;
                border-radius: 22px 0 0 0;
            }

            .lx-sidebar-close {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .lx-filter-group {
                margin-bottom: 18px;
            }

            .lx-filter-group input[type="number"],
            .lx-filter-group select {
                min-height: 52px;
                font-size: 16px;
                border-radius: 14px;
            }

            .lx-range-group {
                padding: 12px;
            }

            .lx-range-value-row strong {
                font-size: 17px;
            }

            .lx-age-chip {
                min-height: 36px;
                font-size: 12px;
                padding: 8px 10px;
            }

            .lx-filter-actions {
                position: sticky;
                right: 0;
                bottom: 0;
                left: 0;
                display: grid;
                grid-template-columns: 0.8fr 1.2fr;
                gap: 10px;
                margin: 22px -16px -120px;
                padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
                background: rgba(255,255,255,0.96);
                backdrop-filter: blur(12px);
                border-top: 1px solid var(--lx-border);
            }

            .lx-drawer-apply-btn {
                display: block;
            }

            .lx-warning-desktop {
                display: none;
            }

            .lx-warning-mobile {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .lx-warning-mobile .lx-warning-text {
                text-align: center;
            }

            .lx-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .lx-card {
                padding: 24px 18px 20px;
                border-radius: 16px;
            }

            .lx-mobile-filter-bar {
                position: fixed;
                right: 10px;
                bottom: calc(14px + env(safe-area-inset-bottom));
                left: 10px;
                z-index: 99999;
                display: flex;
                align-items: center;
                gap: 10px;
                width: auto;
                max-width: 560px;
                margin: 0 auto;
                padding: 8px;
                border: 1px solid rgba(255,255,255,0.72);
                border-radius: var(--lx-radius, 14px);
                background: rgba(31, 41, 55, 0.94);
                box-shadow: 0 14px 40px rgba(15, 23, 42, 0.26);
                backdrop-filter: blur(14px);
            }

            .lx-mobile-filter-btn {
                appearance: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 9px;
                min-height: 48px;
                flex: 1 1 auto;
                border: 0;
                border-radius: 13px;
                background: var(--lx-primary);
                color: #fff;
                font-size: 14px;
                font-weight: 850;
                cursor: pointer;
                text-transform: uppercase;
                letter-spacing: 0.35px;
            }

            .lx-mobile-filter-btn svg {
                flex: 0 0 auto;
            }

            .lx-mobile-filter-summary {
                flex: 0 0 auto;
                max-width: 112px;
                color: rgba(255,255,255,0.82);
                font-size: 11px;
                font-weight: 650;
                line-height: 1.25;
                text-align: right;
            }

            .lx-drawer-backdrop {
                position: fixed;
                inset: 0;
                display: block;
                background: rgba(15, 23, 42, 0.46);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.24s ease;
                z-index: 999999;
            }

            .lx-drawer-backdrop.lx-open {
                opacity: 1;
                pointer-events: auto;
            }

            body.lx-drawer-locked {
                overflow: hidden;
                touch-action: none;
            }

            .lx-cta-inner {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 10px;
            }

            .lx-cta-text {
                display: none;
            }

            .lx-cta-action {
                width: 100%;
                padding: 12px;
            }

            .lx-cta-logo {
                height: 35px;
            }
        }

.lx-disclosure {
    font-size: 13px;
    color: var(--lx-text-light, #64748b);
    line-height: 1.55;
    padding: 14px 16px;
    background: #f1f5f9;
    border-radius: var(--lx-radius, 14px);
    border: 1px solid var(--lx-border, #e2e8f0);
    margin-bottom: 4px;
}

.lx-fallback {
    padding: 24px;
    text-align: center;
    color: var(--lx-text-light, #64748b);
    background: #f8fafc;
    border: 1px dashed var(--lx-border, #e2e8f0);
    border-radius: 12px;
}

.lx-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 15px auto 20px;
    font-size: 18px;
    font-weight: 800;
    color: var(--lx-text-dark, #1f2937);
}

.lx-cta-logo-text.lx-logo-text {
    min-height: auto;
    margin: 0;
    font-size: 16px;
}

.lx-updated-date {
    font-size: 13px;
    color: var(--lx-text-light, #64748b);
    margin-top: 24px;
}

.lx-calculator {
    border: 1px solid var(--lx-border, #e2e8f0);
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
}

.lx-calculator-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.lx-calculator-fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
}

.lx-calculator-fields input {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
}

.lx-calculator-note {
    font-size: 13px;
    color: var(--lx-text-light, #64748b);
}

.lx-faq details {
    border: 1px solid var(--lx-border, #e2e8f0);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fff;
}

.lx-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.lx-offers-wrap {
    margin: 20px 0 80px;
}

