/* Membership Field for Elementor Forms v1.2.3 */
.mfef-plans-container { width:100%; box-sizing:border-box; }
.mfef-plans-grid { display:grid; gap:16px; width:100%; box-sizing:border-box; }

/* Both hidden field types must stay completely invisible */
.mfef-membership-input,
.mfef-price-native {
    display:none!important; visibility:hidden!important;
    position:absolute!important; width:0!important; height:0!important;
    padding:0!important; margin:0!important; border:0!important;
    opacity:0!important; pointer-events:none!important;
}

.mfef-plan-card {
    position:relative; background-color:#1e2236; border:2px solid transparent;
    border-radius:14px; padding:20px 22px 24px; cursor:pointer; box-sizing:border-box;
    transition:border-color .2s ease, box-shadow .2s ease;
    outline:none; user-select:none;
}
.mfef-plan-card:hover          { border-color:rgba(201,162,39,.5); }
.mfef-plan-card.mfef-selected  { border-color:#c9a227; box-shadow:0 0 0 1px rgba(201,162,39,.2); }
.mfef-plan-card.mfef-featured  { border-color:rgba(201,162,39,.55); }
.mfef-plan-card:focus-visible  { outline:3px solid #c9a227; outline-offset:2px; }

.mfef-select-indicator {
    position:absolute; top:16px; right:16px; width:22px; height:22px; border-radius:50%;
    border:2px solid #4a5270; background:transparent;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s, border-color .2s;
}
.mfef-check-icon { display:none; color:#fff; font-size:12px; font-weight:700; line-height:1; }
.mfef-plan-card.mfef-selected .mfef-select-indicator { background:#c9a227; border-color:#c9a227; }
.mfef-plan-card.mfef-selected .mfef-check-icon       { display:block; }

.mfef-plan-top-row {
    display:flex; align-items:center; gap:10px;
    margin-bottom:16px; padding-right:32px; flex-wrap:wrap;
}
.mfef-plan-icon-box {
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; min-width:38px; background-color:#2a3050;
    border-radius:9px; font-size:18px; line-height:1; flex-shrink:0;
}
.mfef-plan-badge {
    display:inline-block; background-color:#2a3050; color:#c9a227;
    font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    padding:5px 11px; border-radius:20px; line-height:1.4; white-space:nowrap;
}
.mfef-plan-name        { font-size:24px; font-weight:700; color:#fff;     line-height:1.2; margin:0 0 8px; }
.mfef-plan-description { font-size:13px; color:#8b93b0; line-height:1.6; margin:0 0 20px; }
.mfef-plan-price-row   { display:flex; align-items:baseline; gap:5px; flex-wrap:wrap; }
.mfef-plan-price-amount{ font-size:40px; font-weight:800; color:#c9a227; line-height:1; letter-spacing:-.5px; }
.mfef-plan-price-meta  { font-size:13px; font-weight:500; color:#c8cfe0; line-height:1; align-self:flex-end; padding-bottom:4px; }

@media(max-width:767px){ .mfef-plans-grid{ grid-template-columns:1fr!important; } }
