/*
 * Critical public component fallback.
 * These rules intentionally live in the theme as well as the Core plugin so
 * cache/minify plugins cannot leave subscription and account pages unstyled.
 */
:root {
    --lmfc-panel: #111821;
    --lmfc-panel-soft: #151f2a;
    --lmfc-border: rgba(255, 255, 255, 0.11);
    --lmfc-text: #f5f8fb;
    --lmfc-muted: #98a5b4;
    --lmfc-cyan: #18c9f3;
    --lmfc-green: #2bf09a;
    --lmfc-gradient: linear-gradient(120deg, #18c9f3, #2bf09a);
}

.lmf-membership-content,
.lmf-membership-content *,
.lmf-auth-modal,
.lmf-auth-modal *,
.lmf-player,
.lmf-player * {
    box-sizing: border-box;
}

/* Pricing and short checkout. */
.lmf-pricing-shell {
    color: var(--lmfc-text);
    margin: 0 auto;
    max-width: 1160px;
    padding: 24px 0 64px;
}

.lmf-pricing-hero {
    margin: 0 auto 24px;
    max-width: 700px;
    text-align: center;
}

.lmf-pricing-hero > span {
    color: var(--lmfc-green);
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.lmf-pricing-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin: 0;
}

.lmf-pricing-hero p {
    color: var(--lmfc-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 13px auto 0;
}

.lmf-status-banner {
    align-items: center;
    background: linear-gradient(115deg, rgba(24, 201, 243, 0.09), rgba(43, 240, 154, 0.05));
    border: 1px solid rgba(43, 240, 154, 0.18);
    border-left: 3px solid var(--lmfc-cyan);
    border-radius: 13px;
    display: flex;
    gap: 8px 14px;
    justify-content: center;
    margin: 0 auto 22px;
    max-width: 760px;
    padding: 12px 16px;
    text-align: center;
}

.lmf-status-banner strong {
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.lmf-status-banner span {
    color: #aeb8c5;
    font-size: 11px;
}

.lmf-status-banner a {
    color: var(--lmfc-green);
    font-weight: 800;
    text-decoration: none;
}

.lmf-plan-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lmf-plan-card {
    background: linear-gradient(160deg, #151e29, #0e141c);
    border: 1px solid var(--lmfc-border);
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    min-height: 278px;
    overflow: hidden;
    padding: 23px;
    position: relative;
}

.lmf-plan-card.is-popular {
    border-color: var(--lmfc-green);
    box-shadow: 0 14px 40px rgba(32, 227, 162, 0.12);
}

.lmf-popular-label {
    background: var(--lmfc-gradient);
    border-radius: 0 0 0 10px;
    color: #04130f;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.08em;
    padding: 7px 12px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
}

.lmf-plan-card h2 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 11px;
}

.lmf-plan-price {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.lmf-plan-card ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 20px 0 22px;
    padding: 0;
}

.lmf-plan-card li {
    align-items: center;
    color: #bac3cf;
    display: flex;
    font-size: 11px;
    gap: 8px;
}

.lmf-plan-card li::before {
    align-items: center;
    background: rgba(43, 240, 154, 0.11);
    border-radius: 50%;
    color: var(--lmfc-green);
    content: "✓";
    display: inline-flex;
    flex: 0 0 18px;
    font-size: 9px;
    font-weight: 900;
    height: 18px;
    justify-content: center;
}

.lmf-plan-button,
.lmf-membership-checkout #place_order {
    align-items: center;
    background: var(--lmfc-gradient);
    border: 0;
    border-radius: 10px;
    color: #04130f !important;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    justify-content: center;
    margin-top: auto;
    min-height: 43px;
    padding: 11px 15px;
    text-decoration: none !important;
    width: 100%;
}

.lmf-pricing-footnote {
    color: #7f8a98;
    font-size: 10px;
    margin: 21px auto 0;
    max-width: 650px;
    text-align: center;
}

.lmf-pricing-message,
.lmf-member-status {
    background: var(--lmfc-panel);
    border: 1px solid var(--lmfc-border);
    border-radius: 15px;
    margin: 0 auto;
    max-width: 720px;
    padding: 25px;
    text-align: center;
}

.lmf-membership-checkout .woocommerce {
    background: linear-gradient(160deg, #151e29, #0c1219);
    border: 1px solid rgba(43, 240, 154, 0.22);
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
    color: var(--lmfc-text);
    margin: 0 auto;
    max-width: 560px;
    overflow: hidden;
    padding: 0;
}

.lmf-membership-checkout form.checkout {
    display: block;
    margin: 0;
}

.lmf-checkout-popover-head {
    align-items: flex-start;
    background: linear-gradient(115deg, rgba(24, 201, 243, 0.13), rgba(43, 240, 154, 0.08));
    border-bottom: 1px solid var(--lmfc-border);
    display: flex;
    justify-content: space-between;
    padding: 23px 24px 20px;
}

.lmf-checkout-popover-head span {
    color: var(--lmfc-green);
    display: block;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lmf-checkout-popover-head h1 {
    color: #fff;
    font-size: 22px;
    margin: 5px 0;
}

.lmf-checkout-popover-head p {
    color: var(--lmfc-muted);
    font-size: 11px;
    margin: 0;
}

.lmf-checkout-popover-head > a {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--lmfc-border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 34px;
    font-size: 23px;
    height: 34px;
    justify-content: center;
    text-decoration: none;
}

.lmf-membership-checkout #customer_details {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 22px 24px 8px;
}

.lmf-membership-checkout #order_review_heading,
.lmf-membership-checkout .woocommerce-checkout-review-order-table,
.lmf-membership-checkout .woocommerce-message {
    display: none !important;
}

.lmf-membership-checkout #order_review {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0 24px 24px;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    background: var(--lmfc-panel);
    border: 1px solid var(--lmfc-border);
    border-radius: 16px;
    color: var(--lmfc-text);
    margin: 0;
    padding: 22px;
}

.lmf-membership-checkout .col-1,
.lmf-membership-checkout .col-2 {
    float: none !important;
    width: 100% !important;
}

.lmf-membership-checkout input.input-text,
.lmf-membership-checkout select {
    background: #080d13 !important;
    border: 1px solid #303b48 !important;
    border-radius: 9px !important;
    color: #fff !important;
    min-height: 43px;
    padding: 0 12px !important;
}

.lmf-membership-checkout #payment {
    background: #0a1017;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: #c8d0da;
}

body.lmf-pesapal-modal-open {
    overflow: hidden;
}

.lmf-payment-modal-backdrop {
    backdrop-filter: blur(8px);
    background: rgba(2, 6, 10, 0.84);
    inset: 0;
    position: fixed;
    z-index: 100000;
}

.lmf-membership-payment .lmf-page-hero {
    display: none !important;
}

.lmf-payment-popover-head {
    align-items: flex-start;
    background: linear-gradient(135deg, #173f51, #103a30);
    border: 1px solid rgba(43, 240, 154, 0.24);
    border-bottom: 1px solid var(--lmfc-border);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 20px 22px 18px;
    position: fixed;
    z-index: 100002;
}

.lmf-payment-popover-head span {
    color: var(--lmfc-green);
    display: block;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lmf-payment-popover-head h1 {
    color: #fff;
    font-size: 22px;
    margin: 5px 0;
}

.lmf-payment-popover-head p {
    color: #a7b3c1;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    max-width: 680px;
}

.lmf-payment-popover-head > a {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--lmfc-border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 34px;
    font-size: 23px;
    height: 34px;
    justify-content: center;
    text-decoration: none;
}

.lmf-pesapal-source-ancestor {
    clip: auto !important;
    clip-path: none !important;
    contain: none !important;
    filter: none !important;
    overflow: visible !important;
    perspective: none !important;
    transform: none !important;
}

body.lmf-pesapal-modal-open iframe.lmf-pesapal-frame {
    background: #fff;
    border: 1px solid rgba(43, 240, 154, 0.24) !important;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 32px 110px rgba(0, 0, 0, 0.72);
    box-sizing: border-box;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Standalone account and authentication. */
.lmf-auth-shell,
.lmf-member-shell {
    color: var(--lmfc-text);
    font-size: 14px;
}

.lmf-auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    margin: 0 auto;
    max-width: 1050px;
    min-height: 560px;
    padding: 24px 0 50px;
}

.lmf-auth-card,
.lmf-account-panel,
.lmf-member-stats article {
    background: var(--lmfc-panel);
    border: 1px solid var(--lmfc-border);
    border-radius: 16px;
}

.lmf-auth-card {
    align-self: center;
    padding: 30px;
}

.lmf-auth-form {
    display: grid;
    gap: 12px;
}

.lmf-auth-form input[type="text"],
.lmf-auth-form input[type="email"],
.lmf-auth-form input[type="tel"],
.lmf-auth-form input[type="password"] {
    background: #080d13;
    border: 1px solid #303b48;
    border-radius: 10px;
    color: #fff;
    height: 44px;
    padding: 0 13px;
    width: 100%;
}

.lmf-auth-submit,
.lmf-member-actions a.is-primary {
    background: var(--lmfc-gradient);
    border: 0;
    border-radius: 10px;
    color: #04130f !important;
    font-weight: 900;
}

.lmf-auth-submit {
    min-height: 44px;
    padding: 11px 15px;
    width: 100%;
}

.lmf-member-shell {
    margin: 0 auto;
    max-width: 1120px;
    padding: 22px 0 55px;
}

.lmf-member-hero {
    align-items: center;
    background: linear-gradient(120deg, #122129, #103c34);
    border: 1px solid var(--lmfc-border);
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 23px;
}

.lmf-member-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.lmf-member-stats article,
.lmf-account-panel {
    padding: 18px;
}

.lmf-member-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.lmf-member-actions a {
    background: #171e2a;
    border: 1px solid var(--lmfc-border);
    border-radius: 9px;
    color: #e8ecf2;
    font-size: 10px;
    font-weight: 800;
    padding: 10px 12px;
    text-decoration: none;
}

.lmf-account-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

/* Site-wide login/register/reset modal. */
body.lmf-auth-modal-open {
    overflow: hidden;
}

.lmf-auth-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: fixed;
    visibility: hidden;
    z-index: 999999;
}

.lmf-auth-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.lmf-auth-backdrop {
    backdrop-filter: blur(7px);
    background: rgba(2, 5, 9, 0.8);
    border: 0;
    inset: 0;
    position: absolute;
    width: 100%;
}

.lmf-auth-dialog {
    background: linear-gradient(135deg, #123a52, #14766e 48%, #21d99b);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
    max-height: calc(100vh - 36px);
    max-width: 500px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.lmf-auth-dialog.is-register {
    max-width: 650px;
}

.lmf-auth-dialog-inner {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 24px 30px 22px;
}

.lmf-auth-view[hidden] {
    display: none !important;
}

.lmf-auth-fields {
    display: grid;
    gap: 10px 12px;
    grid-template-columns: 1fr 1fr;
}

.lmf-auth-fields .is-wide {
    grid-column: 1 / -1;
}

/* Video player fallback. */
.lmf-player {
    background: #000;
    border: 1px solid var(--lmfc-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.lmf-video-wrap {
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    position: relative;
}

.lmf-video-wrap video {
    background: #000;
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.lmf-player-tools {
    align-items: center;
    background: #111723;
    display: flex;
    justify-content: flex-end;
    padding: 11px 14px;
}

.lmf-trial-bar {
    backdrop-filter: blur(12px);
    background: rgba(8, 15, 19, 0.84);
    border: 1px solid rgba(43, 240, 154, 0.28);
    border-radius: 999px;
    display: flex;
    font-size: 11px;
    gap: 12px;
    left: 14px;
    padding: 7px 11px;
    position: absolute;
    top: 14px;
    z-index: 7;
}

.lmf-player-tools a,
.lmf-player-button {
    background: var(--lmfc-gradient);
    border-radius: 999px;
    color: #04130f !important;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    padding: 11px 15px;
    text-decoration: none;
}

.lmf-big-play {
    align-items: center;
    background: var(--lmfc-gradient);
    border: 0;
    border-radius: 50%;
    color: #04130f;
    display: flex;
    height: 68px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    z-index: 4;
}

.lmf-player.is-playing .lmf-big-play {
    opacity: 0;
    pointer-events: none;
}

.lmf-player-locked,
.lmf-player-empty {
    align-items: center;
    background: #090d14 center / cover;
    display: flex;
    justify-content: center;
    min-height: min(55vw, 560px);
    position: relative;
    text-align: center;
}

@media (max-width: 860px) {
    .lmf-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lmf-account-grid {
        grid-template-columns: 1fr;
    }

    .lmf-auth-shell {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .lmf-auth-promo {
        display: none;
    }
}

@media (max-width: 560px) {
    .lmf-pricing-shell {
        padding: 12px 0 42px;
    }

    .lmf-pricing-hero {
        text-align: left;
    }

    .lmf-pricing-hero h1 {
        font-size: 28px;
    }

    .lmf-status-banner {
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
    }

    .lmf-plan-grid,
    .lmf-member-stats,
    .lmf-auth-fields {
        grid-template-columns: 1fr;
    }

    .lmf-auth-modal {
        align-items: flex-end;
        padding: 0;
    }

    .lmf-auth-dialog,
    .lmf-auth-dialog.is-register {
        border-bottom: 0;
        border-radius: 22px 22px 0 0;
        max-height: calc(100vh - 8px);
        max-width: none;
    }

    .lmf-auth-dialog-inner {
        max-height: calc(100vh - 58px);
        padding: 20px 18px 18px;
    }

    .lmf-auth-fields .is-wide {
        grid-column: auto;
    }

    .lmf-membership-checkout .woocommerce {
        border-bottom: 0;
        border-left: 0;
        border-radius: 22px 22px 0 0;
        border-right: 0;
        max-width: none;
    }

    .lmf-checkout-popover-head {
        padding: 20px 18px 17px;
    }

    .lmf-membership-checkout #customer_details {
        padding: 18px 18px 6px;
    }

    .lmf-membership-checkout #order_review {
        padding: 0 18px 18px;
    }

    .lmf-payment-popover-head {
        border-left: 0;
        border-radius: 22px 22px 0 0;
        border-right: 0;
        padding: 17px 16px 14px;
    }

    .lmf-payment-popover-head h1 {
        font-size: 19px;
    }

    body.lmf-pesapal-modal-open iframe.lmf-pesapal-frame {
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-radius: 0;
        border-right: 0 !important;
    }
}

/* v4.0.22 — compact MovieBox-style pricing modal + tighter pricing page. */
body.lmf-pricing-open{overflow:hidden}
.lmf-pricing-modal{align-items:center;display:none;inset:0;justify-content:center;padding:18px;position:fixed;z-index:100000}
.lmf-pricing-modal.is-open{display:flex}
.lmf-pricing-modal-backdrop{background:rgba(0,0,0,.78);border:0;inset:0;position:absolute;width:100%}
.lmf-pricing-modal-panel{background:#080b0d;border:1px solid rgba(255,255,255,.12);border-radius:18px;box-shadow:0 28px 90px rgba(0,0,0,.68);color:#fff;max-height:min(86vh,760px);max-width:620px;overflow:auto;padding:20px;position:relative;width:min(620px,100%)}
.lmf-pricing-modal-close{align-items:center;background:#111519;border:1px solid rgba(255,255,255,.14);border-radius:11px;color:#fff;cursor:pointer;display:flex;height:42px;justify-content:center;position:absolute;right:14px;top:14px;width:42px;z-index:4}
.lmf-pricing-modal-close svg{height:20px;width:20px}
.lmf-pricing-modal-intro{padding:0 50px 10px 0}
.lmf-pricing-modal-intro h2{font-size:24px;letter-spacing:-.035em;line-height:1.05;margin:0 0 5px}
.lmf-pricing-modal-intro p{color:#b2bac2;font-size:12px;font-weight:700;margin:0 0 11px}
.lmf-pricing-benefits{display:grid;gap:6px 18px;grid-template-columns:repeat(2,minmax(0,1fr))}
.lmf-pricing-benefits span{color:#ecf1f5;font-size:11px;font-weight:700;line-height:1.35}
.lmf-pricing-modal-content .lmf-pricing-shell{max-width:none;padding:0}
.lmf-pricing-modal-content .lmf-pricing-hero{display:none}
.lmf-pricing-modal-content .lmf-status-banner{border-radius:9px;justify-content:flex-start;margin:0 0 10px;max-width:none;padding:7px 10px;text-align:left}
.lmf-pricing-modal-content .lmf-status-banner strong{font-size:10px}
.lmf-pricing-modal-content .lmf-status-banner span{font-size:9px}
.lmf-pricing-modal-content .lmf-plan-grid{gap:10px;grid-template-columns:repeat(2,minmax(0,1fr))}
.lmf-pricing-modal-content .lmf-plan-card{background:#101010;border-color:rgba(255,255,255,.13);border-radius:13px;min-height:112px;padding:14px 14px 12px}
.lmf-pricing-modal-content .lmf-plan-card.is-popular{border-color:#e33;box-shadow:none}
.lmf-pricing-modal-content .lmf-plan-card h2{font-size:14px;margin:0 0 5px;padding-right:54px}
.lmf-pricing-modal-content .lmf-plan-price{font-size:19px;letter-spacing:-.025em;line-height:1.1}
.lmf-pricing-modal-content .lmf-plan-card ul{display:none}
.lmf-pricing-modal-content .lmf-plan-button{border-radius:8px;font-size:9px;margin-top:11px;min-height:32px;padding:7px 10px}
.lmf-pricing-modal-content .lmf-popular-label{background:#ff2828;border-radius:999px;color:#fff;font-size:8px;padding:5px 8px;right:9px;top:-7px}
.lmf-pricing-modal-content .lmf-pricing-footnote{display:none}
.lmf-pricing-modal-foot{color:#9fa8b1;font-size:9px;font-weight:700;margin-top:11px;text-align:center}

/* Pricing page itself: smaller type, smaller cards and less container bulk. */
.lmf-membership-content .lmf-pricing-shell{max-width:900px;padding:12px 0 34px}
.lmf-membership-content .lmf-pricing-hero{margin-bottom:14px;max-width:620px}
.lmf-membership-content .lmf-pricing-hero h1{font-size:clamp(23px,3vw,34px)}
.lmf-membership-content .lmf-pricing-hero p{font-size:12px;margin-top:8px}
.lmf-membership-content .lmf-status-banner{margin-bottom:13px;padding:9px 12px}
.lmf-membership-content .lmf-plan-grid{gap:10px;grid-template-columns:repeat(3,minmax(0,1fr))}
.lmf-membership-content .lmf-plan-card{border-radius:13px;min-height:190px;padding:16px}
.lmf-membership-content .lmf-plan-card h2{font-size:16px;margin-bottom:7px}
.lmf-membership-content .lmf-plan-price{font-size:21px}
.lmf-membership-content .lmf-plan-card ul{gap:5px;margin:12px 0 14px}
.lmf-membership-content .lmf-plan-card li{font-size:9px}
.lmf-membership-content .lmf-plan-card li::before{flex-basis:15px;height:15px}
.lmf-membership-content .lmf-plan-button{font-size:10px;min-height:36px;padding:8px 10px}

@media(max-width:782px){
  .lmf-pricing-modal{align-items:flex-end;padding:0}
  .lmf-pricing-modal-panel{border-bottom:0;border-left:0;border-radius:18px 18px 0 0;border-right:0;max-height:88vh;max-width:none;padding:16px 12px calc(16px + env(safe-area-inset-bottom));width:100%}
  .lmf-pricing-modal-close{height:36px;right:10px;top:10px;width:36px}
  .lmf-pricing-modal-close svg{height:17px;width:17px}
  .lmf-pricing-modal-intro{padding-right:42px}
  .lmf-pricing-modal-intro h2{font-size:20px}
  .lmf-pricing-modal-intro p{font-size:10px;margin-bottom:9px}
  .lmf-pricing-benefits{gap:5px 10px}
  .lmf-pricing-benefits span{font-size:9px}
  .lmf-pricing-modal-content .lmf-status-banner{padding:6px 8px}
  .lmf-pricing-modal-content .lmf-status-banner span{display:none}
  .lmf-pricing-modal-content .lmf-plan-grid{gap:7px}
  .lmf-pricing-modal-content .lmf-plan-card{border-radius:11px;min-height:96px;padding:11px}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:12px;margin-bottom:4px;padding-right:38px}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:16px}
  .lmf-pricing-modal-content .lmf-plan-button{font-size:8px;margin-top:8px;min-height:28px;padding:6px}
  .lmf-pricing-modal-content .lmf-popular-label{font-size:7px;padding:4px 6px;right:6px}
  .lmf-pricing-modal-foot{font-size:8px;margin-top:8px}
  .lmf-membership-content .lmf-pricing-shell{padding:5px 0 22px}
  .lmf-membership-content .lmf-pricing-hero h1{font-size:24px}
  .lmf-membership-content .lmf-pricing-hero p{font-size:11px}
  .lmf-membership-content .lmf-plan-grid{gap:8px;grid-template-columns:repeat(2,minmax(0,1fr))}
  .lmf-membership-content .lmf-plan-card{min-height:160px;padding:12px}
  .lmf-membership-content .lmf-plan-card h2{font-size:14px}
  .lmf-membership-content .lmf-plan-price{font-size:18px}
  .lmf-membership-content .lmf-plan-card li{font-size:8px}
}


/* v4.0.23 — Tesoflix-style compact pricing: six cards visible without inner scrolling. */
.lmf-pricing-modal-panel{
  max-width:590px;
  max-height:none;
  overflow:visible;
  padding:18px 18px 14px;
}
.lmf-pricing-modal-intro{padding:0 48px 9px 0}
.lmf-pricing-modal-intro h2{font-size:23px;margin-bottom:4px}
.lmf-pricing-modal-intro p{font-size:11px;margin-bottom:8px}
.lmf-pricing-benefits{gap:4px 18px}
.lmf-pricing-benefits span{font-size:10px;line-height:1.25}
/* Trial/status information is already visible around the player/account; omit it from the compact chooser. */
.lmf-pricing-modal-content .lmf-status-banner{display:none!important}
.lmf-pricing-modal-content .lmf-plan-grid{gap:9px 10px}
.lmf-pricing-modal-content .lmf-plan-card{
  border-radius:13px;
  min-height:91px;
  padding:14px 14px 12px;
  position:relative;
  overflow:visible;
}
.lmf-pricing-modal-content .lmf-plan-card::before{
  color:#ffb323;
  content:'★';
  display:block;
  font-size:17px;
  line-height:1;
  margin-bottom:7px;
}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::before{content:'⚡'}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(4)::before,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(5)::before,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::before{content:'♛'}
.lmf-pricing-modal-content .lmf-plan-card h2{font-size:13px;line-height:1.1;margin:0 0 5px;padding:0}
.lmf-pricing-modal-content .lmf-plan-price{font-size:19px;font-weight:900;line-height:1.05}
.lmf-pricing-modal-content .lmf-plan-button{
  inset:0;
  margin:0;
  min-height:0;
  opacity:0;
  padding:0;
  position:absolute;
  z-index:3;
}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{
  border-radius:999px;
  color:#fff;
  font-size:8px;
  font-weight:900;
  line-height:1;
  padding:5px 8px;
  position:absolute;
  right:9px;
  text-transform:uppercase;
  top:-7px;
  z-index:2;
}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after{background:#ff2727;content:'Starter'}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{background:#ffd400;color:#111;content:'Best Value'}
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6){border-color:#d7bd00}
.lmf-pricing-modal-foot{font-size:8px;margin-top:8px}

@media(max-width:782px){
  .lmf-pricing-modal{align-items:center;padding:10px}
  .lmf-pricing-modal-panel{
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    max-height:none;
    padding:14px 11px 11px;
    width:min(96vw,560px);
  }
  .lmf-pricing-modal-close{height:34px;right:9px;top:9px;width:34px}
  .lmf-pricing-modal-intro{padding:0 40px 7px 0}
  .lmf-pricing-modal-intro h2{font-size:18px;margin-bottom:3px}
  .lmf-pricing-modal-intro p{font-size:9px;margin-bottom:7px}
  .lmf-pricing-benefits{gap:3px 8px}
  .lmf-pricing-benefits span{font-size:8px;line-height:1.2}
  .lmf-pricing-modal-content .lmf-plan-grid{gap:7px}
  .lmf-pricing-modal-content .lmf-plan-card{border-radius:10px;min-height:78px;padding:10px 10px 9px}
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:14px;margin-bottom:5px}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:11px;margin-bottom:4px}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:15px}
  .lmf-pricing-modal-content .lmf-popular-label{font-size:6px;padding:4px 6px;right:6px;top:-6px}
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{font-size:6px;padding:4px 6px;right:6px;top:-6px}
  .lmf-pricing-modal-foot{font-size:7px;margin-top:6px}
}

@media(max-width:380px){
  .lmf-pricing-modal{padding:6px}
  .lmf-pricing-modal-panel{padding:12px 8px 9px;width:98vw}
  .lmf-pricing-modal-intro h2{font-size:16px}
  .lmf-pricing-modal-intro p{display:none}
  .lmf-pricing-benefits span{font-size:7px}
  .lmf-pricing-modal-content .lmf-plan-card{min-height:70px;padding:8px}
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:12px;margin-bottom:4px}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:10px}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:14px}
  .lmf-pricing-modal-foot{display:none}
}

/* v4.0.24 — much tighter centered pricing chooser on desktop + mobile. */
.lmf-pricing-modal{align-items:center!important;justify-content:center!important}
.lmf-pricing-modal-panel{
  left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;
  margin:auto!important;max-width:560px!important;width:min(560px,calc(100vw - 28px))!important;
  max-height:calc(100vh - 28px)!important;overflow:hidden!important;padding:15px 16px 12px!important;
}
.lmf-pricing-modal-close{height:36px!important;width:36px!important;right:11px!important;top:11px!important}
.lmf-pricing-modal-intro{padding:0 44px 7px 0!important}
.lmf-pricing-modal-intro h2{font-size:20px!important;margin:0 0 3px!important}
.lmf-pricing-modal-intro p{font-size:10px!important;margin:0 0 7px!important}
.lmf-pricing-benefits{gap:3px 12px!important}
.lmf-pricing-benefits span{font-size:9px!important;line-height:1.2!important}
.lmf-pricing-modal-content .lmf-plan-grid{gap:7px 8px!important}
.lmf-pricing-modal-content .lmf-plan-card{
  border-radius:11px!important;min-height:0!important;height:78px!important;padding:9px 11px 8px!important;
}
.lmf-pricing-modal-content .lmf-plan-card::before{font-size:13px!important;margin-bottom:4px!important}
.lmf-pricing-modal-content .lmf-plan-card h2{font-size:11px!important;margin:0 0 3px!important}
.lmf-pricing-modal-content .lmf-plan-price{font-size:16px!important;line-height:1!important}
.lmf-pricing-modal-content .lmf-popular-label,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{font-size:6px!important;padding:4px 6px!important;right:7px!important;top:-6px!important}
.lmf-pricing-modal-foot{font-size:7px!important;margin-top:6px!important}

@media(max-width:782px){
  .lmf-pricing-modal{align-items:center!important;justify-content:center!important;padding:8px!important}
  .lmf-pricing-modal-panel{
    border-radius:14px!important;margin:auto!important;max-height:calc(100dvh - 16px)!important;
    padding:12px 9px 9px!important;width:min(94vw,480px)!important;
  }
  .lmf-pricing-modal-close{height:30px!important;width:30px!important;right:7px!important;top:7px!important}
  .lmf-pricing-modal-intro{padding:0 34px 6px 0!important}
  .lmf-pricing-modal-intro h2{font-size:16px!important;margin-bottom:2px!important}
  .lmf-pricing-modal-intro p{font-size:8px!important;margin-bottom:5px!important}
  .lmf-pricing-benefits{gap:2px 6px!important}
  .lmf-pricing-benefits span{font-size:7px!important;line-height:1.15!important}
  .lmf-pricing-modal-content .lmf-plan-grid{gap:5px!important}
  .lmf-pricing-modal-content .lmf-plan-card{border-radius:9px!important;height:66px!important;padding:7px 8px 6px!important}
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:11px!important;margin-bottom:3px!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:9px!important;margin-bottom:2px!important}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:13px!important}
  .lmf-pricing-modal-foot{font-size:6px!important;margin-top:4px!important}
}

/* v4.0.26 — premium pricing popup matched to the supplied reference: balanced width, taller cards, readable typography, no inner scroll. */
body.lmf-pricing-open{overflow:hidden!important}
.lmf-pricing-modal{
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  padding:18px!important;
}
.lmf-pricing-modal-panel{
  width:min(900px,calc(100vw - 36px))!important;
  max-width:900px!important;
  max-height:calc(100vh - 36px)!important;
  overflow:hidden!important;
  margin:auto!important;
  padding:34px 34px 28px!important;
  border:2px solid rgba(255,255,255,.82)!important;
  border-radius:15px!important;
  background:#08090b!important;
  box-shadow:0 28px 90px rgba(0,0,0,.72)!important;
}
.lmf-pricing-modal-close{
  width:34px!important;
  height:34px!important;
  right:17px!important;
  top:17px!important;
  border:0!important;
  background:transparent!important;
  border-radius:8px!important;
  color:#b9bec5!important;
}
.lmf-pricing-modal-close svg{width:20px!important;height:20px!important}
.lmf-pricing-modal-intro{
  padding:0 44px 21px!important;
  text-align:center!important;
}
.lmf-pricing-modal-intro h2{
  font-size:31px!important;
  font-weight:800!important;
  letter-spacing:-.045em!important;
  line-height:1.05!important;
  margin:0 0 12px!important;
}
.lmf-pricing-modal-intro p{
  color:#aeb8c7!important;
  font-size:16px!important;
  font-weight:500!important;
  line-height:1.3!important;
  margin:0 0 28px!important;
}
.lmf-pricing-benefits{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px 62px!important;
  max-width:790px!important;
  margin:0 auto!important;
  text-align:left!important;
}
.lmf-pricing-benefits span{
  color:#f2f4f7!important;
  font-size:16px!important;
  font-weight:500!important;
  line-height:1.25!important;
}
.lmf-pricing-modal-content{
  border-top:1px solid rgba(255,255,255,.13)!important;
  padding-top:28px!important;
}
.lmf-pricing-modal-content .lmf-pricing-shell{max-width:none!important;padding:0!important}
.lmf-pricing-modal-content .lmf-pricing-hero,
.lmf-pricing-modal-content .lmf-status-banner,
.lmf-pricing-modal-content .lmf-pricing-footnote{display:none!important}
.lmf-pricing-modal-content .lmf-plan-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:16px!important;
}
.lmf-pricing-modal-content .lmf-plan-card{
  height:150px!important;
  min-height:150px!important;
  padding:20px 14px 16px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:14px!important;
  background:#090b0d!important;
  text-align:center!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  box-shadow:none!important;
}
.lmf-pricing-modal-content .lmf-plan-card:hover{
  transform:none!important;
  border-color:rgba(255,255,255,.24)!important;
}
.lmf-pricing-modal-content .lmf-plan-card::before{
  font-size:30px!important;
  line-height:1!important;
  margin:0 0 14px!important;
}
.lmf-pricing-modal-content .lmf-plan-card h2{
  font-size:16px!important;
  font-weight:500!important;
  line-height:1.1!important;
  margin:0 0 11px!important;
  padding:0!important;
  color:#c5ceda!important;
}
.lmf-pricing-modal-content .lmf-plan-price{
  font-size:25px!important;
  font-weight:800!important;
  line-height:1!important;
  letter-spacing:-.02em!important;
  white-space:nowrap!important;
  color:#fff!important;
}
.lmf-pricing-modal-content .lmf-popular-label,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
.lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{
  font-size:8px!important;
  font-weight:800!important;
  line-height:1!important;
  padding:4px 8px!important;
  top:-8px!important;
  right:10px!important;
  border-radius:999px!important;
}
.lmf-pricing-modal-foot{display:none!important}

@media(max-width:782px){
  .lmf-pricing-modal{padding:8px!important}
  .lmf-pricing-modal-panel{
    width:min(96vw,520px)!important;
    max-width:520px!important;
    max-height:calc(100vh - 16px)!important;
    overflow:hidden!important;
    padding:19px 12px 13px!important;
    border-radius:13px!important;
  }
  .lmf-pricing-modal-close{width:28px!important;height:28px!important;right:8px!important;top:8px!important}
  .lmf-pricing-modal-close svg{width:16px!important;height:16px!important}
  .lmf-pricing-modal-intro{padding:0 31px 11px!important}
  .lmf-pricing-modal-intro h2{font-size:20px!important;margin:0 0 5px!important}
  .lmf-pricing-modal-intro p{font-size:10px!important;margin:0 0 10px!important}
  .lmf-pricing-benefits{gap:4px 10px!important;max-width:none!important}
  .lmf-pricing-benefits span{font-size:8px!important;line-height:1.15!important}
  .lmf-pricing-modal-content{padding-top:10px!important}
  .lmf-pricing-modal-content .lmf-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .lmf-pricing-modal-content .lmf-plan-card{height:86px!important;min-height:86px!important;padding:9px 6px 8px!important;border-radius:10px!important}
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:15px!important;margin-bottom:5px!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:10px!important;margin-bottom:5px!important}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:15px!important}
  .lmf-pricing-modal-content .lmf-popular-label,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{font-size:5px!important;padding:3px 5px!important;right:5px!important;top:-5px!important}
}

@media(max-width:380px), (max-height:650px){
  .lmf-pricing-modal-panel{padding:12px 8px 9px!important}
  .lmf-pricing-modal-intro{padding:0 28px 7px!important}
  .lmf-pricing-modal-intro h2{font-size:17px!important}
  .lmf-pricing-modal-intro p{display:none!important}
  .lmf-pricing-benefits span{font-size:7px!important}
  .lmf-pricing-modal-content{padding-top:7px!important}
  .lmf-pricing-modal-content .lmf-plan-grid{gap:5px!important}
  .lmf-pricing-modal-content .lmf-plan-card{height:68px!important;min-height:68px!important;padding:6px!important}
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:11px!important;margin-bottom:3px!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:8px!important;margin-bottom:3px!important}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:12px!important}
}

/* v4.0.27 — exact desktop pricing reference proportions. */
@media (min-width:783px){
  body.lmf-pricing-open{overflow:hidden!important}
  .lmf-pricing-modal{
    display:none;
    align-items:center!important;
    justify-content:center!important;
    padding:18px!important;
    overflow:hidden!important;
  }
  .lmf-pricing-modal.is-open{display:flex!important}
  .lmf-pricing-modal-panel{
    box-sizing:border-box!important;
    width:min(1014px,calc(100vw - 72px))!important;
    max-width:1014px!important;
    max-height:calc(100vh - 58px)!important;
    overflow:hidden!important;
    padding:42px 38px 38px!important;
    margin:auto!important;
    background:#07090b!important;
    border:2px solid rgba(255,255,255,.92)!important;
    border-radius:15px!important;
    box-shadow:0 26px 90px rgba(0,0,0,.76)!important;
  }
  .lmf-pricing-modal-close{
    width:36px!important;height:36px!important;
    right:32px!important;top:22px!important;
    background:transparent!important;border:0!important;
    color:#bfc2c7!important;padding:7px!important;
  }
  .lmf-pricing-modal-close svg{width:20px!important;height:20px!important}
  .lmf-pricing-modal-intro{
    padding:0 0 27px!important;
    text-align:center!important;
  }
  .lmf-pricing-modal-intro h2{
    margin:0 0 14px!important;
    font-size:36px!important;
    font-weight:800!important;
    line-height:1.04!important;
    letter-spacing:-.045em!important;
    color:#fff!important;
  }
  .lmf-pricing-modal-intro p{
    margin:0 0 47px!important;
    color:#aeb7c6!important;
    font-size:20px!important;
    font-weight:400!important;
    line-height:1.25!important;
  }
  .lmf-pricing-benefits{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    column-gap:112px!important;
    row-gap:18px!important;
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    padding:0 2px!important;
    text-align:left!important;
  }
  .lmf-pricing-benefits span{
    display:flex!important;
    align-items:center!important;
    gap:15px!important;
    color:#f6f7f9!important;
    font-size:20px!important;
    font-weight:400!important;
    line-height:1.2!important;
    white-space:nowrap!important;
  }
  .lmf-pricing-benefits span b{
    color:#ff3b42!important;
    font-size:23px!important;
    font-weight:500!important;
    line-height:1!important;
  }
  .lmf-pricing-modal-content{
    border-top:1px solid rgba(255,255,255,.14)!important;
    padding-top:48px!important;
  }
  .lmf-pricing-modal-content .lmf-pricing-shell{max-width:none!important;padding:0!important}
  .lmf-pricing-modal-content .lmf-pricing-hero,
  .lmf-pricing-modal-content .lmf-status-banner,
  .lmf-pricing-modal-content .lmf-pricing-footnote,
  .lmf-pricing-modal-foot{display:none!important}
  .lmf-pricing-modal-content .lmf-plan-grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px 18px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card{
    box-sizing:border-box!important;
    height:170px!important;
    min-height:170px!important;
    padding:24px 15px 18px!important;
    border:1px solid rgba(255,255,255,.15)!important;
    border-radius:15px!important;
    background:#080a0c!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
    align-items:center!important;
    text-align:center!important;
    overflow:visible!important;
    position:relative!important;
    box-shadow:none!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card:hover{transform:none!important}
  .lmf-pricing-modal-content .lmf-plan-card::before{
    display:block!important;
    color:#ff3b42!important;
    font-size:34px!important;
    font-weight:400!important;
    line-height:1!important;
    margin:0 0 17px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::before,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(2)::before{content:'ϟ'!important}
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(3)::before,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(4)::before{content:'☆'!important}
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(5)::before,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::before{content:'♕'!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{
    margin:0 0 16px!important;
    padding:0!important;
    color:#c2cad6!important;
    font-size:17px!important;
    font-weight:400!important;
    line-height:1!important;
  }
  .lmf-pricing-modal-content .lmf-plan-price{
    color:#fff!important;
    font-size:27px!important;
    font-weight:800!important;
    line-height:1!important;
    letter-spacing:-.025em!important;
    white-space:nowrap!important;
  }
  .lmf-pricing-modal-content .lmf-plan-price .woocommerce-Price-currencySymbol{font-weight:800!important}
  .lmf-pricing-modal-content .lmf-popular-label{
    top:-10px!important;
    right:auto!important;
    left:113px!important;
    padding:4px 9px!important;
    background:#ff3b42!important;
    color:#fff!important;
    border-radius:999px!important;
    font-size:9px!important;
    font-weight:900!important;
    line-height:1!important;
    letter-spacing:0!important;
    text-transform:uppercase!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(1)::after,
  .lmf-pricing-modal-content .lmf-plan-card:nth-child(6)::after{display:none!important}
}

/* v4.0.28 — compact desktop pricing popup so all six plans remain visible without inner scrolling. */
@media (min-width:783px){
  .lmf-pricing-modal{padding:14px!important;overflow:hidden!important}
  .lmf-pricing-modal-panel{
    width:min(900px,calc(100vw - 90px))!important;
    max-width:900px!important;
    max-height:calc(100vh - 32px)!important;
    padding:27px 30px 25px!important;
    overflow:hidden!important;
    border-radius:14px!important;
  }
  .lmf-pricing-modal-close{
    width:32px!important;height:32px!important;
    right:19px!important;top:16px!important;padding:6px!important;
  }
  .lmf-pricing-modal-close svg{width:18px!important;height:18px!important}
  .lmf-pricing-modal-intro{padding:0 0 18px!important}
  .lmf-pricing-modal-intro h2{
    margin:0 0 8px!important;
    font-size:28px!important;
    line-height:1.05!important;
  }
  .lmf-pricing-modal-intro p{
    margin:0 0 27px!important;
    font-size:15px!important;
    line-height:1.2!important;
  }
  .lmf-pricing-benefits{
    column-gap:64px!important;
    row-gap:11px!important;
    padding:0!important;
  }
  .lmf-pricing-benefits span{
    gap:11px!important;
    font-size:15px!important;
    line-height:1.15!important;
  }
  .lmf-pricing-benefits span b{font-size:18px!important}
  .lmf-pricing-modal-content{padding-top:26px!important}
  .lmf-pricing-modal-content .lmf-plan-grid{gap:12px!important}
  .lmf-pricing-modal-content .lmf-plan-card{
    height:118px!important;
    min-height:118px!important;
    padding:14px 10px 12px!important;
    border-radius:13px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card::before{
    font-size:25px!important;
    margin:0 0 9px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card h2{
    margin:0 0 9px!important;
    font-size:14px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-price{
    font-size:22px!important;
    line-height:1!important;
  }
  .lmf-pricing-modal-content .lmf-popular-label{
    top:-8px!important;
    left:50%!important;
    transform:translateX(-50%)!important;
    padding:3px 8px!important;
    font-size:8px!important;
  }
}

/* v4.0.29 — tighter price cards only: smaller containers, same readable pricing popup. */
@media (min-width:783px){
  .lmf-pricing-modal-content .lmf-plan-grid{
    width:min(760px,100%)!important;
    margin-left:auto!important;
    margin-right:auto!important;
    gap:10px 12px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card{
    height:94px!important;
    min-height:94px!important;
    padding:9px 8px 8px!important;
    border-radius:12px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card::before{
    font-size:21px!important;
    margin:0 0 5px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card h2{
    margin:0 0 6px!important;
    font-size:13px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-price{
    font-size:20px!important;
  }
  .lmf-pricing-modal-content .lmf-popular-label{
    top:-7px!important;
    padding:3px 7px!important;
    font-size:7px!important;
  }
}

/* v4.0.30 — compact square pricing: smaller outer modal + tighter, clearer cards. */
@media (min-width:783px){
  .lmf-pricing-modal-panel{
    width:min(820px,calc(100vw - 80px))!important;
    max-width:820px!important;
    padding:24px 26px 22px!important;
    border-radius:14px!important;
  }
  .lmf-pricing-modal-intro{padding-bottom:15px!important}
  .lmf-pricing-modal-intro h2{font-size:26px!important;margin-bottom:7px!important}
  .lmf-pricing-modal-intro p{font-size:14px!important;margin-bottom:22px!important}
  .lmf-pricing-benefits{column-gap:48px!important;row-gap:9px!important}
  .lmf-pricing-benefits span{font-size:14px!important;gap:9px!important}
  .lmf-pricing-benefits span b{font-size:17px!important}
  .lmf-pricing-modal-content{padding-top:20px!important}
  .lmf-pricing-modal-content .lmf-plan-grid{
    width:min(680px,100%)!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:9px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card{
    height:102px!important;
    min-height:102px!important;
    padding:9px 7px!important;
    border-radius:9px!important;
    border:1px solid rgba(255,255,255,.20)!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:20px!important;margin-bottom:5px!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:13px!important;margin-bottom:6px!important}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:19px!important}
}

@media (max-width:782px){
  .lmf-pricing-modal{padding:8px!important;align-items:center!important;overflow:hidden!important}
  .lmf-pricing-modal-panel{
    width:calc(100vw - 16px)!important;
    max-width:430px!important;
    max-height:calc(100vh - 16px)!important;
    padding:16px 12px 14px!important;
    overflow:hidden!important;
    border-radius:12px!important;
  }
  .lmf-pricing-modal-close{top:8px!important;right:8px!important;width:28px!important;height:28px!important}
  .lmf-pricing-modal-intro{padding:0 24px 10px!important}
  .lmf-pricing-modal-intro h2{font-size:20px!important;margin:0 0 8px!important;line-height:1.05!important}
  .lmf-pricing-modal-intro p{display:none!important}
  .lmf-pricing-benefits{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    column-gap:10px!important;row-gap:5px!important;padding:0!important;
  }
  .lmf-pricing-benefits span{font-size:8px!important;gap:4px!important;white-space:normal!important;line-height:1.12!important}
  .lmf-pricing-benefits span b{font-size:11px!important}
  .lmf-pricing-modal-content{padding-top:11px!important}
  .lmf-pricing-modal-content .lmf-plan-grid{
    width:100%!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:7px!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card{
    height:91px!important;min-height:91px!important;
    padding:7px 5px!important;border-radius:8px!important;
    border:1px solid rgba(255,255,255,.20)!important;
  }
  .lmf-pricing-modal-content .lmf-plan-card::before{font-size:17px!important;margin:0 0 4px!important}
  .lmf-pricing-modal-content .lmf-plan-card h2{font-size:11px!important;margin:0 0 5px!important}
  .lmf-pricing-modal-content .lmf-plan-price{font-size:16px!important;line-height:1!important}
  .lmf-pricing-modal-content .lmf-popular-label{top:-6px!important;left:50%!important;right:auto!important;transform:translateX(-50%)!important;font-size:6px!important;padding:2px 6px!important}
}

/* v4.0.32 — auth email icon fallback spacing. */
.lmf-auth-modal .lmf-input-icon-wrap{display:block!important;position:relative!important}
.lmf-auth-modal .lmf-input-icon-wrap input[type="text"],
.lmf-auth-modal .lmf-input-icon-wrap input[type="email"],
.lmf-auth-modal .lmf-input-icon-wrap input[type="tel"]{
  box-sizing:border-box!important;
  padding-left:52px!important;
  padding-right:15px!important;
  text-indent:0!important;
}
.lmf-auth-modal .lmf-email-icon{
  left:16px!important;
  margin:0!important;
  pointer-events:none!important;
  position:absolute!important;
  top:50%!important;
  transform:translateY(-50%) scale(.88)!important;
  z-index:3!important;
}
@media(max-width:680px){
  .lmf-auth-modal .lmf-input-icon-wrap input[type="text"],
  .lmf-auth-modal .lmf-input-icon-wrap input[type="email"],
  .lmf-auth-modal .lmf-input-icon-wrap input[type="tel"]{padding-left:50px!important}
  .lmf-auth-modal .lmf-email-icon{left:15px!important}
}


/* v4.0.33 — compact checkout fallback matching auth modal sizing. */
body.lmf-membership-checkout .lmf-membership-content { padding: 24px 16px !important; }
body.lmf-membership-checkout .woocommerce { max-width: 500px !important; border-radius: 18px !important; }
body.lmf-membership-checkout .lmf-checkout-popover-head { padding: 18px 20px 16px !important; }
body.lmf-membership-checkout .lmf-checkout-popover-head h1 { font-size: 20px !important; margin: 4px 0 !important; }
body.lmf-membership-checkout .lmf-checkout-popover-head p { font-size: 10px !important; }
body.lmf-membership-checkout #customer_details { padding: 18px 20px 4px !important; }
body.lmf-membership-checkout #order_review { padding: 0 20px 20px !important; }
body.lmf-membership-checkout form .form-row { margin-bottom: 11px !important; }
body.lmf-membership-checkout input.input-text,
body.lmf-membership-checkout select { min-height: 40px !important; font-size: 13px !important; }
body.lmf-membership-checkout #payment ul.payment_methods { padding: 13px !important; }
body.lmf-membership-checkout #payment .place-order { padding: 13px !important; }
body.lmf-membership-checkout .woocommerce-privacy-policy-text { display: none !important; }
body.lmf-membership-checkout #place_order {
    width: 100% !important;
    min-height: 44px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: var(--lmfc-cyan) !important;
    color: #03131a !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: none !important;
}
@media (max-width: 640px) {
    body.lmf-membership-checkout .lmf-membership-content { padding: 12px 8px 0 !important; }
    body.lmf-membership-checkout .woocommerce { max-width: 96vw !important; border-radius: 17px !important; }
    body.lmf-membership-checkout .lmf-checkout-popover-head { padding: 15px 15px 13px !important; }
    body.lmf-membership-checkout .lmf-checkout-popover-head h1 { font-size: 18px !important; }
    body.lmf-membership-checkout #customer_details { padding: 15px 15px 3px !important; }
    body.lmf-membership-checkout #order_review { padding: 0 15px 15px !important; }
}
\n\n/* v4.0.37 — Nextend Google remains visually contained in the custom auth popup. */\nbody.lmf-auth-page .lmf-google-button--nextend .nsl-container,\nbody.lmf-auth-page .lmf-google-button--nextend .nsl-container-buttons{max-width:none!important;width:100%!important;margin:0!important;padding:0!important}\nbody.lmf-auth-page .lmf-google-button--nextend .nsl-button{width:100%!important;margin:0!important}\n