.mvp-register { max-width: 640px; margin: 1rem auto; padding: 1rem; border: 1px solid #e5e5e5; border-radius: 8px; }
/* Keep checkout/account close to WP's typical content width; adjust form control height instead of stretching layout. */
.mvp-checkout { max-width: 900px; margin: 1rem auto; padding: 1.5rem; border: 1px solid #e5e5e5; border-radius: 10px; box-sizing:border-box; }
.mvp-account { max-width: 1360px; margin: 1rem auto; padding: 1.5rem; border: 1px solid #e5e5e5; border-radius: 14px; }
.mvp-checkout h1, .mvp-account h1 { margin-top: 0; }

/* Make internal panels breathe a bit more */
.mvp-checkout .mvp-panel, .mvp-account .mvp-panel { margin: 14px 0; }
.mvp-error{color:#b80707;}
.mvp-subtle{color:#666;}

/* Checkout/account: make controls taller so they don't look squashed in theme styles */
.mvp-checkout input[type="text"],
.mvp-checkout input[type="email"],
.mvp-checkout input[type="password"],
.mvp-checkout input[type="tel"],
.mvp-checkout input[type="number"],
.mvp-checkout select,
.mvp-checkout textarea,
.mvp-account input[type="text"],
.mvp-account input[type="email"],
.mvp-account input[type="password"],
.mvp-account input[type="tel"],
.mvp-account input[type="number"],
.mvp-account select,
.mvp-account textarea{
  min-height: 42px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.3;
  box-sizing: border-box;
}

.mvp-checkout textarea,
.mvp-account textarea{
  min-height: 110px;
}


/* Pricing selects need explicit colours so dark themes do not make the option text vanish. */
.mvp-plans select,
.mvp-checkout select,
.mvp-account select,
.mvp-checkout input[type="text"],
.mvp-checkout input[type="email"],
.mvp-checkout input[type="password"],
.mvp-checkout input[type="tel"],
.mvp-checkout input[type="number"],
.mvp-checkout textarea,
.mvp-account input[type="text"],
.mvp-account input[type="email"],
.mvp-account input[type="password"],
.mvp-account input[type="tel"],
.mvp-account input[type="number"],
.mvp-account textarea{
  background:#fff;
  color:#111;
  border:1px solid #c3c4c7;
  -webkit-text-fill-color:#111;
  color-scheme:light;
}

.mvp-plans select option,
.mvp-checkout select option,
.mvp-account select option{
  background:#fff;
  color:#111;
}

.mvp-checkout input::placeholder,
.mvp-checkout textarea::placeholder,
.mvp-account input::placeholder,
.mvp-account textarea::placeholder{
  color:#666;
  opacity:1;
}

.mvp-plans .mvp-months{
  min-height:42px;
  padding:10px 12px;
  font-size:16px;
  line-height:1.3;
  box-sizing:border-box;
}


/* Checkout buttons: make them comfortably clickable without overriding theme colours */
.mvp-checkout .button.button-small[data-mvp-months]{
  padding: 6px 10px;
  min-height: 34px;
  min-width: 34px;
}

.mvp-checkout .button.button-primary[type="submit"],
.mvp-checkout .button.button-primary{
  padding: 12px 22px;
  min-height: 52px;
  font-size: 16px;
}

.mvp-checkout .mvp-panel,
.mvp-account .mvp-panel{
  padding-bottom: 6px;
}


/* Pricing (front-end) — layout-only; visual "niceties" can come later */
.mvp-plans{max-width:1400px;margin:1.25rem auto;padding:0 1rem;}
/* Four-per-row when space allows; responsive downshifts */
.mvp-plan-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(330px, 1fr));gap: 48px;max-width:1500px;margin:0 auto;}
.mvp-plan-card{width:100%;}

@media (max-width: 1300px){
  .mvp-plan-grid{grid-template-columns:repeat(2,minmax(330px,1fr));}
}

@media (max-width: 900px){
  .mvp-plan-grid{grid-template-columns:repeat(2,1fr);}
}

@media (max-width: 620px){
  .mvp-plan-grid{grid-template-columns:1fr;}
}

.mvp-plan-card{border:1px solid #e5e5e5;border-radius:12px;padding:16px;background:#fff;display:flex;flex-direction:column;gap:12px;}

.mvp-plan-head{display:flex;flex-direction:column;gap:6px;}
.mvp-plan-name{font-weight:700;font-size:1.15rem;line-height:1.2;}
.mvp-plan-price{display:flex;gap:8px;align-items:baseline;flex-wrap:wrap;}
.mvp-plan-amount{font-weight:700;font-size:1.4rem;}
.mvp-plan-frequency{color:#666;}

.mvp-plan-body{flex:1;display:flex;flex-direction:column;}
.mvp-duration{margin-top:auto;}

.mvp-duration{display:flex;flex-direction:column;gap:10px;}
.mvp-duration-label{font-weight:600;}
.mvp-duration-controls{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}

.mvp-months{min-width:78px;}

.mvp-quickpicks{display:flex;gap:6px;flex-wrap:wrap;align-items:center;}
.mvp-qp{border:1px solid #c3c4c7;border-radius:6px;padding:3px 8px;background:#f6f7f7;cursor:pointer;line-height:1.6;}
.mvp-qp:hover{background:#fff;}

.mvp-total{font-weight:600;}

.mvp-plan-footer{display:flex;justify-content:flex-end;}
.mvp-cta{display:inline-block;text-decoration:none;font-weight:600;}
.mvp-plan-features{margin:0 0 12px 0;padding-left:18px;}
.mvp-plan-features li{margin:0 0 6px 0;}

.mvp-discount-note{margin:14px 0 0;}


.mvp-duration-other{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:8px;}
.mvp-quickpicks--buttons .mvp-qp{padding:6px 10px;border-radius:8px;}


/* Buttons layout: make it visually distinct */
.mvp-plans--layout-buttons .mvp-duration-controls{display:flex;flex-direction:column;gap:10px;}
.mvp-plans--layout-buttons .mvp-quickpicks{gap:8px;}
.mvp-plans--layout-buttons .mvp-qp{padding:8px 12px;border-radius:10px;}
.mvp-plans--layout-buttons .mvp-duration-other{display:flex;align-items:center;gap:10px;}
.mvp-plans--layout-buttons .mvp-duration-other .mvp-subtle{margin:0;}


.mvp-notice{border:1px solid #e5e5e5;border-left-width:4px;padding:10px 12px;border-radius:10px;margin:12px 0;background:#fafafa}


.mvp-account{color:var(--wp--preset--color--contrast,inherit);}
.mvp-account-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 18px}
.mvp-account-tab{appearance:none;border:1px solid rgba(127,127,127,.45);background:var(--wp--preset--color--base, #fff);color:var(--wp--preset--color--contrast, #111);border-radius:12px;padding:14px 22px;font-weight:700;cursor:pointer;line-height:1.2;font-size:16px;min-height:52px;display:inline-flex;align-items:center;justify-content:center}
.mvp-account-tab:hover,.mvp-account-tab:focus{background:rgba(127,127,127,.10);border-color:rgba(127,127,127,.65)}
.mvp-account-tab.is-active{background:#111;color:#fff;border-color:#111}
.mvp-account-tab-panel{display:none}
.mvp-account-tab-panel.is-active{display:block}
.mvp-account-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px}
.mvp-account-form-grid label{display:block;font-weight:600}
.mvp-account-form-grid label span{display:block;margin:0 0 6px}
.mvp-account-form-grid__full{grid-column:1 / -1}
.mvp-account-overview-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin-top:14px}
.mvp-account-overview-card{border:1px solid rgba(127,127,127,.35);border-radius:12px;padding:14px;background:rgba(127,127,127,.08)}
.mvp-account-overview-card h4{margin:0 0 10px}
.mvp-account-header{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;flex-wrap:wrap;margin-bottom:16px}
.mvp-account-header h2{margin:0 0 6px}
.mvp-account-identity{margin:0;color:rgba(17,17,17,.72);display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.mvp-account-grid--summary{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin:16px 0 30px}
.mvp-account-grid--stacked{grid-template-columns:1fr}
.mvp-account-card{background:var(--wp--preset--color--base, #fff);color:var(--wp--preset--color--contrast, inherit);border:1px solid rgba(127,127,127,.4);border-radius:14px;padding:18px;margin:0 0 18px;box-shadow:0 1px 2px rgba(0,0,0,.08)}
.mvp-account-card h3{margin:0 0 14px}
.mvp-account-card h4{margin:0 0 10px}
.mvp-account-card--summary{margin-bottom:0}
.mvp-account-section-heading{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.mvp-account-status-badge{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:rgba(127,127,127,.12);border:1px solid rgba(127,127,127,.35);font-size:.92rem;font-weight:600;color:var(--wp--preset--color--contrast, #111)}
.mvp-key-value-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px 18px;margin:0}
.mvp-key-value-list div{min-width:0}
.mvp-key-value-list dt{margin:0 0 4px;font-size:.92rem;color:rgba(17,17,17,.68);font-weight:600}
.mvp-key-value-list dd{margin:0;color:var(--wp--preset--color--contrast, #111);font-weight:600}
.mvp-account-card-actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.mvp-receipts-table{width:100%;border-collapse:collapse}
.mvp-receipts-table th,.mvp-receipts-table td{border-bottom:1px solid #e5e5e5;padding:10px 8px;vertical-align:middle}
.mvp-receipts-table td:last-child{white-space:nowrap;}
.mvp-receipts-table .mvp-action-button{display:inline-flex !important;align-items:center;justify-content:center;width:auto !important;min-width:0 !important;white-space:nowrap;padding:10px 16px !important;}

.mvp-receipts-table th{text-align:left;font-weight:600}
.mvp-account .description{margin:10px 0 0;color:rgba(17,17,17,.72)}

.mvp-account-identity span{white-space:nowrap;}
.mvp-profile-email-help{white-space:nowrap;}
.mvp-key-value-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px 24px;margin:0;}
.mvp-key-value-list div{min-width:0;}
.mvp-key-value-list dt{margin:0 0 6px;color:rgba(17,17,17,.68);font-weight:600;}
.mvp-key-value-list dd{margin:0;word-break:break-word;line-height:1.35;}
.mvp-activity-table th:first-child,.mvp-activity-table td:first-child{white-space:nowrap;width:1%;}
.mvp-activity-table th:nth-child(2),.mvp-activity-table td:nth-child(2){white-space:nowrap;width:1%;}
.mvp-activity-table td:nth-child(3){line-height:1.5;}

.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-key-value-list{grid-template-columns:repeat(2,minmax(0,1fr));}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-key-value-list dd{word-break:break-word;line-height:1.35;}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-card{overflow:hidden;}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-form-grid{grid-template-columns:1fr;max-width:760px;}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-form-grid label{max-width:760px;}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-form-grid input[type="text"],
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-form-grid input[type="email"]{width:100%;max-width:520px;}
.mvp-account-tab-panel[data-tab-panel="profile"] .mvp-account-form-grid .description{display:block;max-width:none;line-height:1.7;}

.mvp-activity{display:flex;flex-direction:column;gap:14px;margin-top:10px}
.mvp-activity-next ul{margin:8px 0 0 18px}
.mvp-activity-table{width:100%;border-collapse:collapse}
.mvp-activity-table th,.mvp-activity-table td{border-bottom:1px solid #e5e5e5;padding:8px 6px;vertical-align:top}
.mvp-activity-table th{text-align:left;font-weight:600}
.mvp-prewrap{white-space:pre-wrap;word-break:break-word}



.mvp-protected-downloads{margin:1rem 0;display:flex;flex-direction:column;gap:.75rem;}
.mvp-protected-download{margin:0;}
.mvp-protected-download__link{text-decoration:underline;}
.mvp-protected-download__link:hover,.mvp-protected-download__link:focus{text-decoration:underline;}

.mvp-action-button{display:inline-block !important;background:#111 !important;color:#fff !important;border:1px solid #111 !important;border-radius:8px !important;padding:10px 16px !important;text-decoration:none !important;font-weight:600 !important;line-height:1.2 !important;box-shadow:none !important;}
.mvp-action-button:hover,.mvp-action-button:focus{background:#222 !important;border-color:#222 !important;color:#fff !important;text-decoration:none !important;}
.mvp-action-button--secondary{background:#fff !important;color:#111 !important;border-color:#c3c4c7 !important;}
.mvp-action-button--secondary:hover,.mvp-action-button--secondary:focus{background:#f6f7f7 !important;border-color:#a7aaad !important;color:#111 !important;}
@media (max-width: 782px){
  .mvp-account{padding:1rem;}
  .mvp-account-header-actions{width:100%;}
  .mvp-account-header-actions .mvp-action-button{width:100%;text-align:center;}
  .mvp-key-value-list{grid-template-columns:1fr;}
  .mvp-activity-table,.mvp-receipts-table{display:block;overflow-x:auto;}
  .mvp-account-form-grid{grid-template-columns:1fr;}
  .mvp-account-tab{flex:1 1 100%;text-align:center;}
  .mvp-profile-email-help{white-space:normal;}
}



.mvp-ratings-panel{margin:1.5rem 0 0;padding:1rem 1.1rem;border:1px solid rgba(127,127,127,.4);border-radius:12px;background:var(--wp--preset--color--base, #fff);color:var(--wp--preset--color--contrast, inherit);width:min(100%, 960px);box-sizing:border-box;box-shadow:0 1px 2px rgba(0,0,0,.08);}
.mvp-ratings-panel__title{margin:0 0 .5rem;color:var(--wp--preset--color--contrast, inherit);}
.mvp-ratings-panel__summary{display:flex;gap:.85rem;align-items:center;flex-wrap:wrap;margin-bottom:.85rem;}
.mvp-ratings-panel__stars{font-size:1.7rem;line-height:1;color:#d4a017;letter-spacing:.08em;text-shadow:0 1px 0 rgba(0,0,0,.06);display:flex;gap:.3rem;align-items:center;flex-wrap:wrap;}
.mvp-ratings-panel__numbers{display:flex;gap:.55rem;align-items:baseline;flex-wrap:wrap;color:rgba(17,17,17,.78);}
.mvp-ratings-panel__numbers strong{color:var(--wp--preset--color--contrast, inherit);}
.mvp-ratings-panel__notice{margin:0 0 .85rem;padding:.75rem .9rem;border:1px solid rgba(127,127,127,.35);border-radius:8px;background:rgba(127,127,127,.08);}
.mvp-ratings-panel__actions{display:flex;gap:.5rem;flex-wrap:wrap;align-items:stretch;}
.mvp-ratings-panel__button{min-height:54px;min-width:88px;padding:.7rem .9rem;border:1px solid rgba(127,127,127,.42);border-radius:10px;background:rgba(127,127,127,.08);color:var(--wp--preset--color--contrast, inherit);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;line-height:1;box-sizing:border-box;}
.mvp-ratings-panel__button:hover,.mvp-ratings-panel__button:focus{background:rgba(127,127,127,.14);border-color:rgba(127,127,127,.62);}
.mvp-ratings-panel__button.is-current{font-weight:700;border-color:#0052d6;box-shadow:0 0 0 1px rgba(0,82,214,.18) inset;}
.mvp-ratings-panel__help{margin:.75rem 0 0;color:var(--wp--preset--color--contrast, inherit);opacity:.82;}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image,.mvp-ratings-panel__button img.mvp-ratings-icon-image{width:28px;height:28px;object-fit:contain;vertical-align:middle;display:inline-block;}
.mvp-ratings-panel__button img.mvp-ratings-icon-image{margin-right:4px;}
.mvp-ratings-panel__stars--custom .mvp-ratings-icon-image--empty,.mvp-ratings-panel__button .mvp-ratings-icon-image--empty{opacity:.28;filter:grayscale(100%);}
.mvp-ratings-icon-image--empty{display:inline-block;box-sizing:border-box;vertical-align:middle;}
.mvp-locked,.mvp-comment-lock{margin:1rem 0;padding:1rem 1.1rem;border:1px solid rgba(127,127,127,.36);border-radius:12px;background:rgba(127,127,127,.08);color:var(--wp--preset--color--contrast, inherit);}
.mvp-locked p,.mvp-comment-lock{margin:0;}
.mvp-locked p + p{margin-top:.85rem;}
.mvp-locked__actions{display:flex;gap:.75rem;flex-wrap:wrap;align-items:center;}
.mvp-comment-lock a,.mvp-locked a:not(.mvp-action-button){color:inherit;text-decoration:underline;}
.mvp-account-cancel-box{margin-top:16px;padding-top:16px;border-top:1px solid #e5e5e5}
.mvp-account-cancel-box h4{margin:0 0 10px}

.mvp-account-status-badge--active{background:#edf7ed;border-color:#b7dfb9;color:#1f6b2a}
.mvp-account-status-badge--pending{background:#fff4e5;border-color:#f3c98b;color:#9a5b00}
.mvp-account-status-badge--suspended{background:#f3e8ff;border-color:#cfb3ff;color:#6f42c1}
.mvp-account-status-badge--revoked{background:#111;border-color:#111;color:#fff}
.mvp-account-status-badge--revoked::before{content:'⛔';display:inline-block;margin-right:6px;line-height:1}
.mvp-account-status-badge--cancelled{background:#fdecec;border-color:#f2b8b5;color:#b42318}
.mvp-action-button.is-disabled,.mvp-action-button[disabled]{opacity:.55 !important;cursor:not-allowed !important;pointer-events:none !important;}


.mvp-account-grid--devices{margin-top:0;grid-template-columns:minmax(0,1.05fr) minmax(0,1.25fr);gap:22px;align-items:start}
.mvp-device-panel{min-width:0}
.mvp-device-summary{font-weight:600;color:#444}
.mvp-device-table-wrap{overflow-x:auto;margin-top:10px;border:1px solid #e5e5e5;border-radius:12px;background:#fff}
.mvp-device-table{width:100%;border-collapse:separate;border-spacing:0;min-width:560px}
.mvp-device-table thead th{position:sticky;top:0;background:#f8f8f8;color:#111;font-weight:700;text-align:left;padding:12px 14px;border-bottom:1px solid #e5e5e5;white-space:nowrap}
.mvp-device-table tbody td{padding:14px;border-bottom:1px solid #efefef;vertical-align:middle}
.mvp-device-table tbody tr:last-child td{border-bottom:0}
.mvp-device-table tbody tr:nth-child(even){background:#fcfcfc}
.mvp-device-table td:first-child{font-weight:600;color:#111}
.mvp-device-table td:nth-child(2),.mvp-device-table td:nth-child(3),.mvp-device-table td:nth-child(4){white-space:nowrap}
.mvp-device-table--sessions td:first-child{white-space:normal}
.mvp-device-table--sessions td:nth-child(3){font-variant-numeric:tabular-nums}
.mvp-device-table--trusted td:nth-child(4),.mvp-device-table--sessions td:nth-child(4){width:1%}
.mvp-device-pill{display:inline-block;margin-left:8px;padding:2px 8px;border-radius:999px;background:#f6f7f7;border:1px solid #dcdcde;font-size:.78rem;font-weight:600;line-height:1.4;white-space:nowrap}
.mvp-device-table form{margin:0}

@media (max-width: 960px){.mvp-account-grid--devices{grid-template-columns:1fr;}.mvp-device-table{min-width:640px}}


.mvp-account-form-grid--security-password{grid-template-columns:repeat(2,minmax(0,1fr));max-width:980px;align-items:start;}
.mvp-account-form-grid--security-password label{max-width:none;}
.mvp-account-form-grid--security-password input[type="password"]{width:100%;max-width:none;}
.mvp-account-card--password .description{max-width:980px;line-height:1.6;}
.mvp-device-summary{white-space:normal;line-height:1.6;}
.mvp-account-grid--devices{grid-template-columns:1fr;}
.mvp-account-overview-grid--security{grid-template-columns:repeat(2,minmax(240px,1fr));}
@media (max-width: 782px){
  .mvp-account-overview-grid--security{grid-template-columns:1fr;}
}

.mvp-account-grid--security-methods{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;align-items:stretch;margin:16px 0 36px}
.mvp-account-grid--security-methods .mvp-account-card{margin-bottom:0}
.mvp-account-overview-grid--security{grid-template-columns:repeat(3,minmax(220px,1fr));}
@media (max-width: 960px){
  .mvp-account-grid--security-methods{grid-template-columns:1fr;}
}
@media (max-width: 900px){
  .mvp-account-overview-grid--security{grid-template-columns:1fr;}
}


.mvp-account-grid--security-methods + .mvp-support{margin-top:0;clear:both;}


.mvp-login-shell{max-width:820px;margin:1rem auto;}
.mvp-login-brand-slot{min-height:96px;display:flex;align-items:center;justify-content:flex-start;padding:0 10px 12px;}
.mvp-login-brand-slot__logo{max-height:72px;max-width:240px;width:auto;height:auto;display:block;}
.mvp-login-brand-slot__placeholder{height:72px;width:min(240px,42vw);border:1px dashed #d9d9d9;border-radius:14px;background:linear-gradient(180deg,#fafafa,#f4f4f4);}
.mvp-login-panel{max-width:none;padding:0;border:0;background:transparent;margin:0;}
.mvp-login-card{margin-bottom:16px;}
.mvp-login-card h3,.mvp-login-join h3{margin:0 0 12px;}
.mvp-login-intro{margin:0 0 16px;color:#555;}
.mvp-login-form-wrap form{display:grid;gap:16px;}
.mvp-login-form-wrap p{margin:0;}
.mvp-login-form-wrap label{display:block;font-weight:600;margin:0 0 8px;color:#111;}
.mvp-login-form-wrap input[type="text"],
.mvp-login-form-wrap input[type="email"],
.mvp-login-form-wrap input[type="password"]{width:100%;max-width:460px;}
.mvp-login-form-wrap .login-remember label{display:inline-flex;align-items:center;gap:10px;font-weight:500;margin:0;}
.mvp-login-form-wrap .login-remember input{margin:0;}
.mvp-login-form-wrap .login-submit{padding-top:2px;}
.mvp-login-form-wrap .button,
.mvp-login-form-wrap input[type="submit"]{min-height:46px;padding:10px 18px;border-radius:10px;}
.mvp-login-join p{margin:0;}
@media (max-width: 782px){
  .mvp-login-brand-slot{min-height:82px;padding:0 0 10px;}
  .mvp-login-brand-slot__placeholder{height:64px;width:min(210px,60vw);}
}

.mvp-login-shell{max-width:920px;}
.mvp-login-layout{display:grid;grid-template-columns:190px minmax(0,760px);gap:28px;align-items:start;justify-content:center;}
.mvp-login-brand-slot{min-height:0;padding:12px 0 0;position:sticky;top:12px;}
.mvp-login-brand-slot__logo{max-height:180px;max-width:180px;}
.mvp-login-brand-slot__placeholder{height:180px;width:180px;}
.mvp-login-panel{min-width:0;}
.mvp-login-card{margin-bottom:16px;}
.mvp-login-form-wrap .button,.mvp-login-form-wrap input[type="submit"]{background:#111 !important;color:#fff !important;border:1px solid #111 !important;border-radius:8px !important;padding:10px 18px !important;min-height:46px;box-shadow:none !important;font-weight:700 !important;font-size:18px !important;line-height:1.2 !important;}
.mvp-login-form-wrap .button:hover,.mvp-login-form-wrap .button:focus,.mvp-login-form-wrap input[type="submit"]:hover,.mvp-login-form-wrap input[type="submit"]:focus{background:#222 !important;border-color:#222 !important;color:#fff !important;}
@media (max-width: 860px){
  .mvp-login-layout{grid-template-columns:1fr;gap:16px;justify-content:stretch;}
  .mvp-login-brand-slot{position:static;padding-top:0;}
  .mvp-login-brand-slot__logo{max-height:120px;max-width:220px;}
  .mvp-login-brand-slot__placeholder{height:120px;width:min(220px,55vw);}
}


/* v1.9.79-rawly login/account spacing refinements */
.mvp-login-shell{max-width:900px;margin:.5rem auto 1.25rem;}
.mvp-login-layout{grid-template-columns:240px minmax(0,560px);gap:48px;justify-content:center;align-items:start;}
.mvp-login-brand-slot{padding:0;align-self:start;}
.mvp-login-brand-slot__logo{width:auto;height:260px;max-width:none;max-height:none;object-fit:contain;display:block;}
.mvp-login-brand-slot__placeholder{height:260px;width:220px;}
.mvp-login-panel{max-width:560px;}
.mvp-login-card,.mvp-login-join{max-width:560px;}
.mvp-login-form-wrap input[type="text"],
.mvp-login-form-wrap input[type="email"],
.mvp-login-form-wrap input[type="password"]{max-width:100%;}
@media (max-width: 900px){
  .mvp-login-shell{max-width:620px;}
  .mvp-login-layout{grid-template-columns:1fr;gap:18px;}
  .mvp-login-brand-slot{justify-content:center;}
  .mvp-login-brand-slot__logo{height:180px;max-width:100%;}
  .mvp-login-panel,.mvp-login-card,.mvp-login-join{max-width:none;}
}

.mvp-account-title{margin:0 0 8px;font-size:clamp(2rem,4vw,3rem);line-height:1.05;}

/* v1.9.81-rawly mvp page title spacing cleanup */
.mvp-login-layout{margin-top:0;}
.mvp-login-brand-slot{padding-right:8px;}
body .mvp-page-title-hidden.entry-header,
body .mvp-page-title-hidden .entry-header,
body .mvp-page-title-hidden .et_pb_title_container,
body .mvp-page-title-hidden .et_pb_post_title,
body .mvp-page-title-hidden .wp-block-post-title,
body .mvp-page-title-hidden .entry-title{margin-top:0 !important;margin-bottom:0 !important;padding-top:0 !important;padding-bottom:0 !important;min-height:0 !important;}
body .mvp-page-title-hidden .et_pb_title_featured_container,
body .mvp-page-title-hidden .et_pb_section.et_pb_title_featured_container{display:none !important;}
body .mvp-page-title-hidden .entry-content,
body .mvp-page-title-hidden .post-content,
body .mvp-page-title-hidden .et_pb_post_content,
body .mvp-page-title-hidden .site-main,
body .mvp-page-title-hidden main{margin-top:0 !important;padding-top:0 !important;}


.mvp-wrap-text{white-space:normal !important;overflow-wrap:anywhere;word-break:break-word;}
.mvp-account-card--twofactor{overflow:visible;padding-bottom:22px;}
.mvp-account-card--twofactor .mvp-notice{overflow:visible;}
.mvp-account-card--twofactor code{white-space:pre-wrap;overflow-wrap:anywhere;word-break:break-word;}
.mvp-totp-action-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:16px;align-items:stretch;}
.mvp-totp-action-box{border:1px solid #e5e5e5;border-radius:12px;padding:16px;background:#fafafa;min-width:0;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;overflow:visible;}
.mvp-totp-action-box h4{margin:0 0 8px;min-height:2.4em;}
.mvp-totp-action-fields{margin-top:auto;padding-top:12px;display:flex;flex-direction:column;gap:10px;flex:1 1 auto;justify-content:flex-end;}
.mvp-totp-entry-group label{display:block;margin:0 0 6px;font-size:14px;line-height:1.45;}
.mvp-totp-entry-divider{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#666;}
.mvp-totp-code-input,.mvp-totp-backup-input{width:100%;max-width:none;display:block;box-sizing:border-box;}
.mvp-totp-backup-input{text-transform:uppercase;}
.mvp-totp-action-box .mvp-action-button{margin-top:12px;align-self:flex-start;}
@media (max-width: 960px){
  .mvp-totp-action-grid{grid-template-columns:1fr;}
  .mvp-totp-action-box h4{min-height:0;}
}


.mvp-account-grid--security-methods{align-items:stretch;}
.mvp-account-grid--security-methods .mvp-account-card{display:flex;flex-direction:column;height:100%;}
.mvp-account-card-actions--bottom{margin-top:auto;}
.mvp-account-card--passkeys #mvp-passkey-status{margin:12px 0 0;}

.mvp-account-card--twofactor,.mvp-account-card--passkeys{display:flex;flex-direction:column;height:100%;min-height:320px;}
.mvp-account-card--passkeys #mvp-passkey-status{margin:12px 0 16px;}
.mvp-account-card--passkeys .mvp-account-card-actions--bottom{margin-top:auto;padding-top:16px;}
.mvp-support{position:relative;z-index:0;}


.mvp-account-grid--plan-change{margin:16px 0 0;}
.mvp-account-grid--plan-change .mvp-account-card{margin-bottom:0;}
.mvp-account-form-grid--plan-change{grid-template-columns:1fr;max-width:none;}
.mvp-account-form-grid--plan-change select{width:100%;max-width:100%;}
.mvp-account-form-grid--plan-change label{font-weight:500;}
.mvp-account-card--plan-change{margin-top:14px;}
.mvp-account-card--plan-change .mvp-notice p + p{margin-top:8px;}


.mvp-plan-change-mode-group{display:grid;gap:10px;}
.mvp-plan-change-mode-group label{display:flex;gap:10px;align-items:flex-start;font-weight:500;}
.mvp-plan-change-preview{border:1px solid rgba(15,23,42,.12);border-radius:18px;padding:16px 18px;background:rgba(15,23,42,.02);}
.mvp-plan-change-preview h5{margin:0 0 10px;font-size:15px;}
.mvp-plan-change-preview__rows{display:grid;gap:8px;}
.mvp-plan-change-preview__rows p{margin:0;line-height:1.55;word-break:break-word;}
.mvp-plan-change-confirm{display:flex;gap:10px;align-items:flex-start;padding:12px 14px;border-radius:16px;background:rgba(15,23,42,.03);font-weight:500;}
.mvp-plan-change-confirm input{margin-top:3px;}
.mvp-account-card--plan-change-option .mvp-account-card-actions [data-plan-submit][disabled]{opacity:.55;cursor:not-allowed;}


/* v1.10.8-rawly membership and tier-change polish */
.mvp-account-section-heading--stacked{align-items:flex-start;margin-bottom:18px;}
.mvp-account-section-heading--stacked h3{margin-bottom:8px;}
.mvp-plan-change-intro{margin:0;max-width:980px;color:#5c5c5c;line-height:1.65;}
.mvp-notice--plan-change{border:1px solid rgba(0,82,214,.18);background:linear-gradient(180deg,rgba(0,82,214,.05),rgba(0,82,214,.02));border-radius:16px;padding:16px 18px;}
.mvp-notice--plan-change p:first-child strong{font-size:1.02rem;}
.mvp-account-grid--plan-change{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:stretch;}
.mvp-account-card--plan-change-option{display:flex;flex-direction:column;gap:12px;padding:20px;border-radius:18px;box-shadow:0 8px 24px rgba(15,23,42,.04);border-color:#e8e8ec;}
.mvp-account-card--plan-change-option h4{margin:0;font-size:1.35rem;line-height:1.15;}
.mvp-plan-change-kicker{display:inline-flex;align-self:flex-start;padding:5px 10px;border-radius:999px;background:#f6f7fb;color:#3b4453;border:1px solid #e5e7ef;font-size:.78rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;}
.mvp-account-card--plan-change-upgrade .mvp-plan-change-kicker{background:#eef5ff;color:#0f4ba8;border-color:#cfe0ff;}
.mvp-account-card--plan-change-downgrade .mvp-plan-change-kicker{background:#fff6ea;color:#9a5b00;border-color:#f2d5a6;}
.mvp-account-card--plan-change-option > .description{margin:0;color:#5f6368;line-height:1.68;}
.mvp-account-card--plan-change-option > .description + .description{margin-top:-4px;}
.mvp-plan-change-field{display:grid;gap:8px;}
.mvp-plan-change-field > span,.mvp-plan-change-field-label{font-size:.94rem;font-weight:700;color:#222;}
.mvp-account-form-grid--plan-change select{border-radius:12px;padding:10px 12px;min-height:48px;}
.mvp-plan-change-mode-group{gap:12px;padding:14px 16px;border:1px solid #ececf1;border-radius:16px;background:#fbfbfc;}
.mvp-plan-change-mode-group label{padding:12px 14px;border:1px solid #e3e4ea;border-radius:14px;background:#fff;line-height:1.55;transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;}
.mvp-plan-change-mode-group label:has(input:checked){border-color:#111;box-shadow:0 0 0 1px #111 inset;background:#fafafa;}
.mvp-plan-change-mode-group input{margin-top:3px;}
.mvp-plan-change-preview{padding:18px 20px;border-radius:16px;background:linear-gradient(180deg,#fafafa,#f6f7f9);border-color:#e7e8ee;}
.mvp-plan-change-preview h5{margin-bottom:12px;font-size:1rem;}
.mvp-plan-change-preview__rows{gap:10px;}
.mvp-plan-change-preview__rows p{display:flex;justify-content:space-between;gap:16px;padding-bottom:10px;border-bottom:1px dashed rgba(15,23,42,.1);}
.mvp-plan-change-preview__rows p:last-child{padding-bottom:0;border-bottom:0;}
.mvp-plan-change-preview__rows strong{flex:0 0 140px;font-weight:700;color:#202327;white-space:nowrap;}
.mvp-plan-change-preview__rows span{flex:1 1 auto;text-align:right;color:#4b5563;}
.mvp-plan-change-confirm{border-radius:14px;background:#f8f8fa;border:1px solid #ececf2;padding:14px 16px;font-weight:600;}
.mvp-account-card--plan-change-option .mvp-account-card-actions{margin-top:auto;padding-top:4px;}
.mvp-account-card--plan-change-option [data-plan-submit]{width:100%;justify-content:center;}
.mvp-plan-change-unavailable{margin-top:10px;padding:16px 18px;border:1px dashed #d7d9df;border-radius:16px;background:#fafafa;}
.mvp-account-card--subscription .mvp-account-card--plan-change{margin-top:20px;}
@media (max-width: 900px){
  .mvp-account-grid--plan-change{grid-template-columns:1fr;}
  .mvp-plan-change-preview__rows p{display:block;}
  .mvp-plan-change-preview__rows strong{white-space:normal;}
  .mvp-plan-change-preview__rows span{text-align:left;display:block;margin-top:4px;}
}


/* 1.10.10 - membership tab polish */
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-grid--summary{align-items:stretch;}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--summary{display:flex;flex-direction:column;min-height:100%;}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--summary .mvp-key-value-list,
.mvp-account-card--subscription .mvp-key-value-list,
.mvp-account-card--activity .mvp-key-value-list{gap:14px;}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--summary .mvp-key-value-list > div,
.mvp-account-card--subscription .mvp-key-value-list > div{
  padding:14px 16px;
  border:1px solid #ececf1;
  border-radius:14px;
  background:linear-gradient(180deg,#fcfcfd,#f8f8fa);
}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--summary dd,
.mvp-account-card--subscription .mvp-key-value-list dd{font-size:1.15rem;font-weight:700;line-height:1.25;}
.mvp-account-card--subscription .description{max-width:980px;line-height:1.65;}
.mvp-account-card--subscription .mvp-account-card-actions:first-of-type{margin-top:18px;}
.mvp-account-card--subscription .mvp-account-cancel-box{margin-top:18px;padding:18px 0 0;border-top:1px solid #ececf1;}
.mvp-account-card--subscription .mvp-account-cancel-box .description:last-of-type{margin-top:12px;color:#5f6368;}
.mvp-account-card--activity,
.mvp-account-card--receipts{overflow:hidden;}
.mvp-activity-next{
  padding:16px 18px;
  border:1px solid #ececf1;
  border-radius:16px;
  background:linear-gradient(180deg,#fcfcfd,#f8f8fa);
}
.mvp-activity-next h4{margin:0 0 8px;}
.mvp-activity-next ul{margin:6px 0 0 18px;}
.mvp-activity-table thead th,
.mvp-receipts-table thead th{background:#fafafa;}
.mvp-activity-table th,.mvp-activity-table td,
.mvp-receipts-table th,.mvp-receipts-table td{padding:12px 10px;}
.mvp-receipts-table td:last-child,.mvp-activity-table td:last-child{text-align:left;}
.mvp-account-card--receipts .mvp-action-button{min-width:190px;justify-content:center;}
.mvp-account-card--summary .mvp-account-card-actions{margin-top:18px;padding-top:0;align-items:flex-start;justify-content:flex-start;}
.mvp-account-card--summary .mvp-account-card-actions .mvp-action-button{margin-top:0;}
.mvp-account-card--summary .mvp-key-value-list{margin-bottom:0;}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-grid--summary{margin-bottom:28px;}
.mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--subscription{margin-top:44px !important;clear:both;}
.mvp-receipts-table .mvp-action-button{min-width:0;width:auto;display:inline-flex;justify-content:center;}
@media (max-width: 960px){
  .mvp-account-tab-panel[data-tab-panel="membership"] .mvp-account-card--summary .mvp-key-value-list > div,
  .mvp-account-card--subscription .mvp-key-value-list > div{padding:12px 14px;}
  .mvp-account-card--receipts .mvp-action-button{min-width:0;width:100%;}
}

.mvp-account-card--devices{display:block;box-sizing:border-box;max-width:100%;margin-top:56px !important;clear:both;}
.mvp-account-card--support.mvp-support{margin-top:28px !important;}


/* 1.10.34 - My Library */
.mvp-account-tab-panel[data-tab-panel="library"] .mvp-account-grid--stacked{gap:24px;}
.mvp-library-list{margin:12px 0 0 18px;padding:0;display:grid;gap:10px;}
.mvp-library-list li{margin:0;}
.mvp-library-level-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin-top:12px;}
.mvp-library-level-card{padding:18px;border:1px solid #ececf1;border-radius:16px;background:linear-gradient(180deg,#fcfcfd,#f8f8fa);display:flex;flex-direction:column;gap:12px;}
.mvp-library-level-card h4{margin:0;}
.mvp-library-level-card .description{margin:0;line-height:1.6;}
.mvp-library-level-card .mvp-action-button{margin-top:auto;align-self:flex-start;}
.mvp-library-downgrade-warning{display:grid;gap:12px;margin-top:auto;}
.mvp-library-downgrade-confirm{font-size:.96rem;line-height:1.55;color:#404246;}
.mvp-library-downgrade-warning .mvp-action-button.is-disabled{pointer-events:none;opacity:.55;}


/* v1.10.95-rawly account contrast fix: keep readable text on the plugin's light card surfaces even when the active WP theme is dark. */
.mvp-account-card,
.mvp-account-card h3,
.mvp-account-card h4,
.mvp-account-card p,
.mvp-account-card li,
.mvp-account-card label,
.mvp-account-card strong,
.mvp-account-card em,
.mvp-account-overview-card,
.mvp-account-overview-card h4,
.mvp-account-overview-card p,
.mvp-account-tab-panel,
.mvp-account-tab-panel h3,
.mvp-account-tab-panel h4,
.mvp-account-tab-panel p,
.mvp-account-tab-panel li,
.mvp-account-tab-panel label,
.mvp-account-tab-panel strong,
.mvp-device-table,
.mvp-device-table thead th,
.mvp-device-table tbody td,
.mvp-device-summary,
.mvp-key-value-list dd,
.mvp-profile-email-help { color:#111; }

.mvp-account-card a:not(.mvp-action-button),
.mvp-account-overview-card a:not(.mvp-action-button),
.mvp-account-tab-panel a:not(.mvp-action-button) { color:#0052d6; }


/* Front-end ratings and comments polish - 1.10.98-rawly */
.mvp-ratings-panel{display:block;width:100%;max-width:960px;margin:1.5rem 0 0 !important;margin-left:0 !important;margin-right:0 !important;clear:both;box-sizing:border-box;}
.mvp-ratings-panel__actions{gap:.65rem;}
.mvp-ratings-panel__button{min-width:92px;min-height:56px;padding:.7rem .95rem;border:1px solid #d6dde5 !important;border-radius:12px;background:#f5f7fa !important;color:#1f2933 !important;box-shadow:none !important;}
.mvp-ratings-panel__button:hover,.mvp-ratings-panel__button:focus{background:#eef3f8 !important;border-color:#b8c7d6 !important;}
.mvp-ratings-panel__button.is-current{border-color:#0052d6 !important;background:#eef4ff !important;box-shadow:0 0 0 1px rgba(0,82,214,.18) inset !important;}
.mvp-ratings-panel__button img.mvp-ratings-icon-image{width:36px;height:36px;margin-right:6px;}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image{width:34px;height:34px;}
.mvp-comments-lock-notice{margin:1.5rem 0 0;padding:1rem 1.1rem;border:1px solid rgba(127,127,127,.35);border-radius:12px;background:var(--wp--preset--color--base, #fff);color:var(--wp--preset--color--contrast, inherit);width:100%;max-width:960px;box-sizing:border-box;box-shadow:0 1px 2px rgba(0,0,0,.08);}
.mvp-comments-lock-notice p{margin:0;}


/* Dark theme compatibility pass - 1.10.104-rawly */
:root{
  --mvp-rawly-green:#82BCBC;
}

/* Comment form readability on dark themes */
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
#comment,
#mvp-comments-lock ~ .comment-respond textarea,
.mvp-account textarea,
.mvp-account input[type="text"],
.mvp-account input[type="email"],
.mvp-account input[type="password"],
.mvp-account input[type="url"]{
  color:var(--wp--preset--color--contrast, #f4f7f7);
  background:rgba(255,255,255,.04);
  border-color:rgba(130,188,188,.28);
}
.comment-form textarea::placeholder,
.comment-form input::placeholder,
#comment::placeholder{
  color:rgba(130,188,188,.42);
  opacity:1;
}
body:not(.admin-bar) .comment-form textarea,
body:not(.admin-bar) #comment{
  caret-color:var(--mvp-rawly-green);
}

/* Comments: separate author, meta and links so everything is not the same colour */
.comment-author .fn,
.comment-author .fn a,
.comment .fn,
.comment .fn a{
  color:#f2f6f6;
  text-decoration:none;
}
.comment-metadata,
.comment-metadata a,
.comment-meta,
.comment-meta a,
.comment-reply-link,
.comments-area .reply a{
  color:var(--mvp-rawly-green);
}
.comment-content,
.comment-content p{
  color:var(--wp--preset--color--contrast, inherit);
}
.comment-reply-link,
.comments-area .reply a{
  text-decoration:underline;
  text-underline-offset:2px;
}

/* My Library included-content links */
.mvp-library-list a,
.mvp-account-tab-panel[data-tab-panel="library"] a{
  color:var(--mvp-rawly-green);
  font-family:inherit;
}
.mvp-library-list a:hover,
.mvp-library-list a:focus,
.mvp-account-tab-panel[data-tab-panel="library"] a:hover,
.mvp-account-tab-panel[data-tab-panel="library"] a:focus{
  color:var(--mvp-rawly-green);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Account tabs: active state must be visible on dark themes */
.mvp-account-tab.is-active{
  background:var(--mvp-rawly-green) !important;
  border-color:var(--mvp-rawly-green) !important;
  color:#111 !important;
  box-shadow:0 0 0 1px rgba(255,255,255,.16) inset, 0 1px 2px rgba(0,0,0,.18);
}
.mvp-account-tab.is-active:hover,
.mvp-account-tab.is-active:focus{
  background:var(--mvp-rawly-green) !important;
  border-color:var(--mvp-rawly-green) !important;
  color:#111 !important;
}

/* Keep inactive account tabs legible on mixed light/dark card surfaces */
.mvp-account-tab:not(.is-active){
  background:var(--wp--preset--color--base, #fff);
  color:var(--wp--preset--color--contrast, #111);
}

/* Account tools button - 1.10.106-rawly */
.mvp-account-tab--tools{
  text-decoration:none;
}
.mvp-account-tab--tools:hover,
.mvp-account-tab--tools:focus{
  text-decoration:none;
}


/* Comment colour separation refinement - 1.10.108-rawly */
.comments-area,
.comments-area p,
.comment-content,
.comment-content p{
  color:var(--wp--preset--color--contrast, #f3f5f5);
}
.comment-author .fn,
.comment-author .fn a,
.comment .fn,
.comment .fn a{
  color:#f7f3e8 !important;
}
.comment-metadata,
.comment-meta,
.comment-metadata time,
.comment-meta time,
.comment-metadata a,
.comment-meta a{
  color:#9aa0a6 !important;
}
.comment-reply-link,
.comments-area .reply a{
  color:var(--mvp-rawly-green, #82BCBC) !important;
}


/* Comment colour separation hard override - 1.10.110-rawly */
body .comments-area,
body .wp-block-comments,
body .wp-block-comment-template,
body .wp-block-comment-content,
body .comment-list,
body .comment{
  color:#e8ecec !important;
}

body .comments-area .comment-content,
body .comments-area .comment-content *,
body .wp-block-comment-content,
body .wp-block-comment-content *,
body .comment-body > p,
body .comment-body .comment-content,
body .comment-body .comment-content *,
body .comment .comment-content,
body .comment .comment-content *{
  color:#e8ecec !important;
}

body .comments-area .comment-author,
body .comments-area .comment-author *,
body .wp-block-comment-author-name,
body .wp-block-comment-author-name *,
body .comment-author .fn,
body .comment-author .fn *,
body .comment .fn,
body .comment .fn *{
  color:#f5efe2 !important;
}

body .comments-area .comment-metadata,
body .comments-area .comment-metadata *,
body .comments-area .comment-meta,
body .comments-area .comment-meta *,
body .wp-block-comment-date,
body .wp-block-comment-date *,
body .wp-block-comment-edit-link,
body .wp-block-comment-edit-link *{
  color:#8f9a9a !important;
}

body .comments-area .reply a,
body .comments-area .comment-reply-link,
body .wp-block-comment-reply-link,
body .wp-block-comment-reply-link *,
body .comment-reply-link{
  color:var(--mvp-rawly-green, #82BCBC) !important;
  text-decoration:underline !important;
  text-underline-offset:2px !important;
}

body .comments-title,
body .wp-block-comments-title{
  color:var(--mvp-rawly-green, #82BCBC) !important;
}


/* Balanced comment colours for light and dark themes - 1.10.111-rawly */
body .comments-area,
body .wp-block-comments,
body .wp-block-comment-template,
body .comment-list,
body .comment{
  color:inherit !important;
}

body .comments-area .comment-content,
body .comments-area .comment-content *,
body .wp-block-comment-content,
body .wp-block-comment-content *,
body .comment-body > p,
body .comment-body .comment-content,
body .comment-body .comment-content *,
body .comment .comment-content,
body .comment .comment-content *{
  color:inherit !important;
}

body .comments-area .comment-author,
body .comments-area .comment-author *,
body .wp-block-comment-author-name,
body .wp-block-comment-author-name *,
body .comment-author .fn,
body .comment-author .fn *,
body .comment .fn,
body .comment .fn *{
  color:inherit !important;
  font-weight:700;
}

body .comments-area .comment-metadata,
body .comments-area .comment-metadata *,
body .comments-area .comment-meta,
body .comments-area .comment-meta *,
body .wp-block-comment-date,
body .wp-block-comment-date *,
body .wp-block-comment-edit-link,
body .wp-block-comment-edit-link *{
  color:inherit !important;
  opacity:.68;
}

body .comments-area .reply a,
body .comments-area .comment-reply-link,
body .wp-block-comment-reply-link,
body .wp-block-comment-reply-link *,
body .comment-reply-link,
body .comment-form a,
body .logged-in-as a{
  color:var(--mvp-rawly-green, #82BCBC) !important;
  opacity:1 !important;
  text-decoration:underline !important;
  text-underline-offset:2px !important;
}

body .comments-title,
body .wp-block-comments-title,
body .comment-reply-title{
  color:var(--mvp-rawly-green, #82BCBC) !important;
}

body .comment-form,
body .comment-form p,
body .logged-in-as,
body .logged-in-as *{
  color:inherit !important;
}

body .comment-form textarea,
body .comment-form input[type="text"],
body .comment-form input[type="email"],
body .comment-form input[type="url"],
body #comment{
  color:inherit !important;
  background:transparent;
  border-color:currentColor;
}
body .comment-form textarea::placeholder,
body #comment::placeholder{
  color:inherit !important;
  opacity:.45 !important;
}

/* Ratings standard star colour - 1.10.126-rawly */
.mvp-ratings-panel--style-stars .mvp-ratings-panel__stars,
.mvp-ratings-panel--style-stars .mvp-ratings-panel__button{
  color:#d4a017 !important;
}
.mvp-ratings-panel--style-stars .mvp-ratings-panel__button.is-current{
  color:#d4a017 !important;
}

/* Suspended/revoked account state: clear on light and dark themes. */
.mvp-access-block-notice,
.mvp-access-block-card{
  border:1px solid #b42318;
  border-left:6px solid #d92d20;
  background:#fff4f2;
  color:#7a271a;
  border-radius:14px;
  padding:16px 18px;
  margin:14px 0 18px;
  box-shadow:0 1px 2px rgba(0,0,0,.10);
}
.mvp-access-block-notice p,
.mvp-access-block-card p{margin:0 0 8px;color:#7a271a;}
.mvp-access-block-notice p:last-child,
.mvp-access-block-card p:last-child{margin-bottom:0;}
.mvp-access-block-notice strong,
.mvp-access-block-card h3{color:#7a271a;}
.mvp-access-block-card h3{margin:0 0 10px;}
.mvp-access-block-notice--compact{margin-top:14px;}

/* Password strength and MVP reset flow */
.mvp-password-meter{margin:8px 0 0;font-size:13px;line-height:1.4;color:#50575e;font-weight:600}
.mvp-password-meter__bar{height:8px;background:#e5e5e5;border-radius:999px;overflow:hidden;margin:0 0 6px}
.mvp-password-meter__bar span{display:block;height:100%;width:8%;background:#b80707;transition:width .18s ease, background .18s ease}
.mvp-password-meter[data-score="2"] .mvp-password-meter__bar span{background:#dba617}
.mvp-password-meter[data-score="3"] .mvp-password-meter__bar span{background:#2271b1}
.mvp-password-meter[data-score="4"] .mvp-password-meter__bar span{background:#008a20}
.mvp-password-confirm-error{margin:6px 0 0;color:#b80707;font-weight:700}
.mvp-login-reset-link{margin:12px 0 0;text-align:right}
.mvp-password-reset-panel{max-width:720px}
.mvp-password-reset-challenge{border:1px solid rgba(127,127,127,.28);border-radius:12px;padding:14px;background:rgba(127,127,127,.06)}
.mvp-password-reset-challenge code{font-size:16px;font-weight:700;letter-spacing:.02em}

/* Password policy / reset UX polish */
.mvp-password-security-note{margin:10px 0 0;padding:10px 12px;border:1px solid rgba(34,113,177,.18);border-radius:10px;background:rgba(34,113,177,.07);color:#1d2327;font-size:13px;line-height:1.45}
.mvp-password-reset-panel{max-width:860px;width:100%}
.mvp-password-reset-panel .mvp-login-card{padding:28px;border-radius:18px;box-shadow:0 14px 40px rgba(0,0,0,.08)}
.mvp-password-reset-panel h2{font-size:28px;line-height:1.18;margin-bottom:10px}
.mvp-login-help--stacked span{display:block;margin:2px 0}
.mvp-password-reset-form{gap:16px}
.mvp-password-reset-form label span{font-weight:700;color:#1d2327;margin-bottom:6px;display:inline-block}
.mvp-password-reset-form input[type="text"],.mvp-password-reset-form input[type="password"]{padding:12px 14px;border-radius:10px;border:1px solid #c3c4c7;font-size:16px;width:100%}
.mvp-password-reset-challenge{border:1px solid rgba(34,113,177,.25);border-radius:16px;padding:18px;background:linear-gradient(180deg,rgba(34,113,177,.08),rgba(34,113,177,.035))}
.mvp-password-reset-challenge__title{margin:0 0 4px;font-size:16px}
.mvp-password-reset-challenge__help{margin:0 0 10px;color:#50575e}
.mvp-password-reset-challenge__phrase{margin:0 0 14px}
.mvp-password-reset-challenge code{display:inline-block;font-size:18px;font-weight:800;letter-spacing:.04em;padding:8px 12px;border-radius:10px;background:#fff;border:1px solid rgba(34,113,177,.22);color:#111}
.mvp-password-reset-panel .mvp-account-card-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-top:2px}
.mvp-password-reset-panel .mvp-action-button{min-width:190px;text-align:center;justify-content:center}
@media(max-width:640px){.mvp-password-reset-panel .mvp-login-card{padding:20px}.mvp-password-reset-panel .mvp-action-button{width:100%;min-width:0}.mvp-password-reset-panel h2{font-size:24px}}


/* v1.10.154-rawly reset password top-section polish + HTTPS password copy support */
.mvp-password-reset-panel{max-width:860px;width:100%;}
.mvp-password-reset-panel .mvp-login-card{
  padding:32px 34px 30px;
  border-radius:20px;
  border-color:rgba(127,127,127,.32);
  box-shadow:0 18px 48px rgba(0,0,0,.10);
}
.mvp-password-reset-top{
  margin:0 0 22px;
  padding:0 0 18px;
  border-bottom:1px solid rgba(127,127,127,.18);
}
.mvp-password-reset-eyebrow{
  margin:0 0 8px !important;
  color:#50575e !important;
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.mvp-password-reset-panel h2{
  font-size:30px;
  line-height:1.12;
  margin:0 0 12px;
  font-weight:650;
  letter-spacing:-.02em;
}
.mvp-password-reset-panel .mvp-login-intro{
  max-width:680px;
  margin:0;
  color:#3f444a;
  font-size:17px;
  line-height:1.55;
}
.mvp-login-help--stacked span{display:block;margin:0;}
.mvp-password-reset-form{gap:18px;}
.mvp-password-reset-form > label.mvp-account-form-grid__full{
  margin:0;
  padding:0 0 2px;
}
.mvp-password-reset-form label span{
  font-weight:750;
  color:#1d2327;
  margin-bottom:8px;
  display:inline-block;
}
.mvp-password-reset-form input[type="text"],
.mvp-password-reset-form input[type="password"]{
  min-height:48px;
  padding:12px 14px;
  border-radius:11px;
  border:1px solid #c8cdd2;
  background:#fff;
  box-shadow:0 1px 0 rgba(0,0,0,.02) inset;
  font-size:16px;
  width:100%;
}
.mvp-password-reset-form input[type="text"]:focus,
.mvp-password-reset-form input[type="password"]:focus{
  border-color:#2271b1;
  box-shadow:0 0 0 3px rgba(34,113,177,.16);
  outline:none;
}
.mvp-password-reset-form > label.mvp-account-form-grid__full + .mvp-password-reset-challenge{margin-top:0;}
.mvp-password-reset-challenge{
  border:1px solid rgba(34,113,177,.25);
  border-radius:16px;
  padding:18px;
  background:linear-gradient(180deg,rgba(34,113,177,.08),rgba(34,113,177,.035));
}
.mvp-password-reset-panel .mvp-account-card-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:4px;
}
.mvp-password-security-note{
  margin:10px 0 0;
  padding:10px 12px;
  border:1px solid rgba(34,113,177,.18);
  border-radius:10px;
  background:rgba(34,113,177,.07);
  color:#1d2327;
  font-size:13px;
  line-height:1.45;
}
@media(max-width:640px){
  .mvp-password-reset-panel .mvp-login-card{padding:22px 20px;}
  .mvp-password-reset-panel h2{font-size:26px;}
  .mvp-password-reset-panel .mvp-login-intro{font-size:16px;line-height:1.5;}
  .mvp-password-reset-top{margin-bottom:18px;padding-bottom:16px;}
  .mvp-password-reset-panel .mvp-action-button{width:100%;min-width:0;}
}
@media (prefers-color-scheme: dark){
  .mvp-password-reset-panel .mvp-login-card,
  .mvp-password-reset-panel .mvp-account-card{
    background:#ffffff;
    color:#111;
  }
}


/* v1.10.155-rawly login/password polish */
.mvp-login-card{
  padding:26px 28px 24px;
}
.mvp-login-top{
  margin:0 0 20px;
  padding:0 0 16px;
  border-bottom:1px solid rgba(127,127,127,.16);
}
.mvp-login-card .mvp-login-intro{
  margin:0;
  color:var(--wp--preset--color--contrast, #1d2327);
  font-size:20px;
  line-height:1.35;
  font-weight:500;
}
.mvp-login-card .mvp-account-notice{
  margin:0 0 18px;
  padding:12px 14px;
  border-radius:10px;
  line-height:1.45;
}
.mvp-login-status-notice,
.mvp-account-notice--success{
  border:1px solid rgba(0,138,32,.22);
  background:rgba(0,138,32,.08);
  color:var(--wp--preset--color--contrast, #1d2327);
}
.mvp-login-form-wrap form{
  display:grid;
  gap:18px;
}
.mvp-login-form-wrap p{
  margin:0;
}
.mvp-login-form-wrap label{
  display:block;
  margin:0 0 8px;
  font-weight:750;
  line-height:1.25;
  color:var(--wp--preset--color--contrast, #1d2327);
}
.mvp-login-form-wrap input[type="text"],
.mvp-login-form-wrap input[type="email"],
.mvp-login-form-wrap input[type="password"]{
  min-height:46px;
  border-radius:0;
  border:1px solid rgba(34,113,177,.20);
  background:var(--wp--preset--color--base, #fff);
  color:var(--wp--preset--color--contrast, #111);
  box-sizing:border-box;
}
.mvp-login-form-wrap .login-remember{
  margin-top:2px;
}
.mvp-login-form-wrap .login-remember label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0;
  font-weight:500;
  line-height:1.25;
}
.mvp-login-form-wrap .login-remember input[type="checkbox"]{
  margin:0;
  flex:0 0 auto;
}
.mvp-login-form-wrap .login-submit{
  margin:0;
  padding-top:4px;
}
.mvp-login-reset-link{
  margin:18px 0 0;
  padding-top:2px;
  text-align:right;
  line-height:1.3;
}
.mvp-login-reset-link a{
  display:inline-block;
}
.mvp-password-security-note span{
  display:block;
}
@media(max-width:640px){
  .mvp-login-card{padding:22px 20px;}
  .mvp-login-top{margin-bottom:18px;padding-bottom:14px;}
  .mvp-login-card .mvp-login-intro{font-size:18px;}
  .mvp-login-reset-link{text-align:left;margin-top:16px;}
}


/* v1.10.156-rawly reset intro wrapping + HTTPS notice support */
.mvp-password-reset-panel .mvp-login-help--reset span{
  display:block;
}
.mvp-password-reset-panel .mvp-login-help--reset .mvp-login-help__lead{
  margin-bottom:2px;
}

/* v1.10.172: MVP-owned membership card polish and wider subscription-length layout */
.mvp-plan-card{
  background:var(--mvp-card-bg, #ffffff);
  color:var(--mvp-card-text, #1d2327);
  border-color:var(--mvp-card-border, rgba(29,35,39,.16));
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.mvp-plan-frequency,
.mvp-subtle,
.mvp-plan-features,
.mvp-discount-note{
  color:var(--mvp-muted-text, #646970);
}

.mvp-plan-name,
.mvp-plan-amount,
.mvp-total{
  color:var(--mvp-card-text, #1d2327);
}

.mvp-cta.mvp-go,
.mvp-plan-footer .mvp-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 18px;
  border-radius:10px;
  border:1px solid var(--mvp-button-bg, #2271b1);
  background:var(--mvp-button-bg, #2271b1);
  color:var(--mvp-button-text, #ffffff) !important;
  cursor:pointer;
  text-decoration:none !important;
  line-height:1.2;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.mvp-cta.mvp-go:hover,
.mvp-cta.mvp-go:focus,
.mvp-plan-footer .mvp-cta:hover,
.mvp-plan-footer .mvp-cta:focus{
  filter:brightness(.96);
  transform:translateY(-1px);
}

@media (min-width: 900px){
  .mvp-duration-controls,
  .mvp-plans--layout-buttons .mvp-duration-controls{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
  }
  .mvp-quickpicks,
  .mvp-plans--layout-buttons .mvp-quickpicks{
    flex-wrap:nowrap;
  }
  .mvp-duration-other,
  .mvp-plans--layout-buttons .mvp-duration-other{
    margin-top:0;
    flex-wrap:nowrap;
  }
  .mvp-months{
    min-width:118px;
  }
}


/* v1.10.174: compact subscription length values with unit in label */
.mvp-duration-label{
  display:block;
  white-space:normal;
}

.mvp-duration-controls{
  width:100%;
}

.mvp-qp{
  min-width:42px;
  text-align:center;
}

@media (min-width: 900px){
  .mvp-plan-grid{
    grid-template-columns:repeat(auto-fit, minmax(330px, 1fr));
    max-width:1500px;
  }
  .mvp-months{
    min-width:84px;
  }
}

/* v1.10.175: flexible pricing grid and compact controls */
.mvp-plan-grid{
  gap:24px !important;
  max-width:1500px;
  align-items:stretch;
}
@media (min-width: 1100px){
  .mvp-plan-grid--count-1{grid-template-columns:repeat(1,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-3{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-4{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-5{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-6{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-7{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-8{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-9{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-duration-controls,
  .mvp-plans--layout-buttons .mvp-duration-controls{
    gap:8px;
  }
  .mvp-months{
    min-width:74px;
    max-width:88px;
  }
  .mvp-quickpicks,
  .mvp-plans--layout-buttons .mvp-quickpicks{
    gap:5px;
  }
  .mvp-qp,
  .mvp-quickpicks--buttons .mvp-qp,
  .mvp-plans--layout-buttons .mvp-qp{
    min-width:34px;
    padding:5px 8px;
    line-height:1.35;
  }
}

@media (min-width: 1500px){
  .mvp-plan-grid--count-10{grid-template-columns:repeat(5,minmax(0,1fr)) !important;}
  .mvp-plan-grid--count-11{grid-template-columns:repeat(6,minmax(0,1fr)) !important;}
}

@media (min-width: 760px) and (max-width: 1099px){
  .mvp-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media (max-width: 759px){
  .mvp-plan-grid{grid-template-columns:1fr !important;}
}
button:not(:disabled),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
a.button,
.button:not(.disabled),
.mvp-action-button:not(.disabled),
.mvp-cta,
.mvp-qp,
.mvp-account-tab,
[data-mvp-months]{
  cursor:pointer;
}
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
.button.disabled,
.is-disabled,
[aria-disabled="true"]{
  cursor:not-allowed;
}

/* v1.10.180: Join page layout fix v3 - preserve the v1.10.175 visual baseline but enforce real gutters and compact internals. */
.mvp-plans.mvp-plans--cards{
  box-sizing:border-box;
  width:100%;
  max-width:1480px;
  margin:1.25rem auto 0;
  padding-inline:clamp(16px, 2vw, 32px);
}
.mvp-plans.mvp-plans--cards *,
.mvp-plans.mvp-plans--cards *::before,
.mvp-plans.mvp-plans--cards *::after{
  box-sizing:border-box;
}
.mvp-plans.mvp-plans--cards .mvp-plan-grid{
  display:grid !important;
  width:100%;
  max-width:100% !important;
  margin:0 auto !important;
  column-gap:32px !important;
  row-gap:32px !important;
  align-items:stretch !important;
}
.mvp-plans.mvp-plans--cards .mvp-plan-card{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  display:flex;
  flex-direction:column;
  overflow:visible;
}
.mvp-plans.mvp-plans--cards .mvp-plan-head,
.mvp-plans.mvp-plans--cards .mvp-plan-body,
.mvp-plans.mvp-plans--cards .mvp-duration,
.mvp-plans.mvp-plans--cards .mvp-duration-controls,
.mvp-plans.mvp-plans--cards .mvp-quickpicks,
.mvp-plans.mvp-plans--cards .mvp-plan-footer{
  min-width:0;
}
.mvp-plans.mvp-plans--cards .mvp-duration-controls{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:8px !important;
  width:100%;
}
.mvp-plans.mvp-plans--cards .mvp-months{
  flex:0 0 74px;
  width:74px;
  min-width:74px;
  max-width:80px;
}
.mvp-plans.mvp-plans--cards .mvp-quickpicks{
  display:flex !important;
  flex:1 1 auto;
  flex-wrap:nowrap !important;
  gap:5px !important;
  align-items:center !important;
  overflow:visible;
}
.mvp-plans.mvp-plans--cards .mvp-qp{
  flex:0 0 auto;
  min-width:32px !important;
  padding:5px 8px !important;
  line-height:1.35 !important;
}
.mvp-plans.mvp-plans--cards .mvp-plan-footer{
  margin-top:auto;
}
.mvp-plans.mvp-plans--cards .mvp-discount-note{
  display:block;
  margin:24px 0 0 !important;
  clear:both;
}

@media (min-width: 1180px){
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-1{grid-template-columns:repeat(1,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-3{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-4{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-5{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-6{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-7{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-8{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-9{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-10{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-11{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
}
@media (min-width: 1500px){
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-10{grid-template-columns:repeat(5,minmax(0,1fr)) !important;}
  .mvp-plans.mvp-plans--cards .mvp-plan-grid--count-11{grid-template-columns:repeat(6,minmax(0,1fr)) !important;}
}
@media (min-width: 760px) and (max-width: 1179px){
  .mvp-plans.mvp-plans--cards .mvp-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media (max-width: 759px){
  .mvp-plans.mvp-plans--cards .mvp-plan-grid{grid-template-columns:1fr !important;}
  .mvp-plans.mvp-plans--cards .mvp-duration-controls{flex-wrap:wrap !important;}
  .mvp-plans.mvp-plans--cards .mvp-quickpicks{flex-wrap:wrap !important;}
}

/* Checkout card-brand logos (inside card-entry box). */
.mvp-card-brand-logos{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:0 0 14px;
}
.mvp-card-brand-logo{
  display:inline-flex;
  width:96px;
  height:42px;
  align-items:center;
  justify-content:center;
  border:1px solid #d0d7de;
  border-radius:7px;
  background:#fff;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  overflow:hidden;
  padding:3px 6px;
  box-sizing:border-box;
}
.mvp-card-brand-logo img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
@media (max-width: 700px){
  .mvp-checkout{padding:1rem;}
  .mvp-card-brand-logo{width:80px;height:38px;}
}
.mvp-existing-account-prompt .button{
  cursor:pointer;
}

/* Checkout layout hardening: make internal sections match the widened checkout shell. */
.mvp-checkout{
  max-width:1120px;
  padding:28px;
}
.mvp-checkout,
.mvp-checkout *{
  box-sizing:border-box;
}
.mvp-checkout form{
  width:100%;
}
.mvp-checkout .mvp-checkout-section,
.mvp-checkout .mvp-card,
.mvp-checkout .mvp-billing,
.mvp-checkout .mvp-gw-info,
.mvp-checkout .mvp-virtual-card-guidance,
.mvp-checkout .mvp-payment-guidance{
  width:100%;
  max-width:none !important;
}
.mvp-checkout .mvp-checkout-section,
.mvp-checkout .mvp-billing,
.mvp-checkout .mvp-gw-info,
.mvp-checkout .mvp-virtual-card-guidance,
.mvp-checkout .mvp-payment-guidance{
  padding:16px !important;
}
.mvp-checkout .mvp-checkout-field-stack,
.mvp-checkout .mvp-checkout-terms,
.mvp-checkout .mvp-card > div[style*="max-width"],
.mvp-checkout .mvp-billing > div[style*="max-width"]{
  max-width:none !important;
  width:100%;
}
.mvp-checkout .mvp-subtle,
.mvp-checkout .mvp-payment-guidance p,
.mvp-checkout .mvp-virtual-card-guidance p,
.mvp-checkout .mvp-billing p{
  line-height:1.55;
}
.mvp-checkout .mvp-existing-account-prompt,
.mvp-checkout .mvp-payment-guidance p,
.mvp-checkout .mvp-virtual-card-guidance p,
.mvp-checkout .mvp-billing > p,
.mvp-checkout .mvp-checkout-terms span{
  max-width:84ch;
}
.mvp-checkout input[type="text"],
.mvp-checkout input[type="email"],
.mvp-checkout input[type="password"],
.mvp-checkout input[type="tel"],
.mvp-checkout input[type="number"],
.mvp-checkout select,
.mvp-checkout textarea{
  width:100%;
}
.mvp-checkout #mvp_coupon_code_input{
  width:auto !important;
  max-width:420px !important;
  flex:1 1 260px;
}
.mvp-checkout .mvp-subscription-length-card label{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
}
.mvp-checkout .mvp-subscription-length-card #mvp_months{
  flex:0 0 110px;
  width:110px !important;
}
.mvp-checkout .mvp-subscription-length-card .mvp-subtle{
  flex:1 1 420px;
  min-width:280px;
}
.mvp-checkout .mvp-card-brand-logos{
  margin-bottom:16px;
}
@media (min-width: 760px){
  .mvp-checkout .mvp-checkout-field-stack > div[style*="grid-template-columns:1fr 1fr"],
  .mvp-checkout .mvp-billing div[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width: 759px){
  .mvp-checkout{
    max-width:100%;
    padding:16px;
  }
  .mvp-checkout .mvp-checkout-section,
  .mvp-checkout .mvp-billing,
  .mvp-checkout .mvp-gw-info,
  .mvp-checkout .mvp-virtual-card-guidance,
  .mvp-checkout .mvp-payment-guidance{
    padding:12px !important;
  }
  .mvp-checkout div[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns:1fr !important;
  }
  .mvp-checkout .mvp-subscription-length-card .mvp-subtle{
    min-width:0;
    flex-basis:100%;
  }
}

/* v1.10.191-rawly MVP-owned password policy feedback */
.mvp-password-guidance{
  margin:8px 0 10px;
  padding:10px 12px;
  border:1px solid rgba(34,113,177,.20);
  border-radius:10px;
  background:rgba(34,113,177,.06);
  color:inherit;
  font-size:13px;
  line-height:1.45;
}
.mvp-password-guidance p{margin:0 0 6px;}
.mvp-password-guidance p:last-child{margin-bottom:0;}
.mvp-password-guidance ul{margin:0 0 6px 18px;padding:0;}
.mvp-password-guidance li{margin:2px 0;}
.mvp-password-guidance a{font-weight:700;}
.mvp-password-meter--policy{
  margin:8px 0 0;
  padding:10px 12px;
  border:1px solid rgba(184,7,7,.22);
  border-radius:10px;
  background:#fff6f6;
  color:#7a271a;
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}
.mvp-password-meter--policy.is-accepted{
  border-color:rgba(0,138,32,.28);
  background:#f2fbf4;
  color:#0f5132;
}
.mvp-password-meter--policy .mvp-password-meter__status{
  font-weight:800;
  margin:0 0 6px;
}
.mvp-password-checklist{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:4px 12px;
}
.mvp-password-checklist li{margin:0;}
.mvp-password-checklist li.is-met{color:#0f5132;}
.mvp-password-checklist li.is-missing{color:#7a271a;}
@media(max-width:640px){.mvp-password-checklist{grid-template-columns:1fr;}}

/* v1.10.192-rawly password reset form layout polish */
.mvp-password-new-form{
  align-items:start;
}
.mvp-password-new-form .mvp-password-field,
.mvp-password-new-form .mvp-password-guidance-slot,
.mvp-password-new-form .mvp-password-meter-slot{
  min-width:0;
}
.mvp-password-new-form .mvp-password-field input[type="password"]{
  width:100%;
  max-width:none;
}
.mvp-password-new-form .mvp-password-guidance-slot .mvp-password-guidance,
.mvp-password-new-form .mvp-password-meter-slot .mvp-password-meter--policy{
  margin:0;
  height:100%;
  box-sizing:border-box;
}
.mvp-password-new-form .mvp-password-guidance-slot,
.mvp-password-new-form .mvp-password-meter-slot{
  display:flex;
}
.mvp-password-new-form .mvp-password-guidance-slot > *,
.mvp-password-new-form .mvp-password-meter-slot > *{
  width:100%;
}
.mvp-password-new-form .mvp-password-checklist{
  grid-template-columns:1fr;
}
@media(max-width:700px){
  .mvp-password-new-form{
    grid-template-columns:1fr;
  }
  .mvp-password-new-form .mvp-password-field,
  .mvp-password-new-form .mvp-password-guidance-slot,
  .mvp-password-new-form .mvp-password-meter-slot{
    grid-column:1 / -1;
  }
}


/* v1.10.193-rawly password/account UI polish */
.mvp-password-guidance strong{font-weight:800;}
.mvp-password-new-form{align-items:stretch;}
.mvp-password-new-form .mvp-password-field{align-self:start;}
.mvp-password-new-form .mvp-password-guidance-slot,
.mvp-password-new-form .mvp-password-meter-slot{align-items:stretch;}
.mvp-account-form-grid--security-password .mvp-password-field,
.mvp-account-form-grid--security-password .mvp-password-guidance-slot,
.mvp-account-form-grid--security-password .mvp-password-meter-slot{min-width:0;}
.mvp-account-form-grid--security-password .mvp-password-guidance-slot,
.mvp-account-form-grid--security-password .mvp-password-meter-slot{display:flex;align-items:stretch;}
.mvp-account-form-grid--security-password .mvp-password-guidance-slot > *,
.mvp-account-form-grid--security-password .mvp-password-meter-slot > *{width:100%;box-sizing:border-box;margin:0;}
.mvp-account-form-grid--security-password .mvp-password-guidance,
.mvp-account-form-grid--security-password .mvp-password-meter--policy{height:100%;}
.mvp-account-form-grid--security-password .mvp-password-checklist{grid-template-columns:1fr;}
@media(max-width:700px){
  .mvp-account-form-grid--security-password{grid-template-columns:1fr;}
  .mvp-account-form-grid--security-password .mvp-password-field,
  .mvp-account-form-grid--security-password .mvp-password-guidance-slot,
  .mvp-account-form-grid--security-password .mvp-password-meter-slot{grid-column:1 / -1;}
}

/* v1.10.194-rawly checkout create-account password layout polish */
.mvp-checkout .mvp-checkout-account .mvp-checkout-password-row,
.mvp-checkout .mvp-checkout-account .mvp-checkout-password-helper-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  width:100%;
  align-items:start;
}
.mvp-checkout .mvp-checkout-account .mvp-checkout-password-row{
  margin-top:2px;
}
.mvp-checkout .mvp-checkout-account .mvp-checkout-password-helper-row{
  align-items:stretch;
}
.mvp-checkout .mvp-checkout-account .mvp-password-field,
.mvp-checkout .mvp-checkout-account .mvp-password-guidance-slot,
.mvp-checkout .mvp-checkout-account .mvp-password-meter-slot{
  min-width:0;
}
.mvp-checkout .mvp-checkout-account .mvp-password-field input[type="password"]{
  width:100%;
  max-width:none;
}
.mvp-checkout .mvp-checkout-account .mvp-password-guidance-slot,
.mvp-checkout .mvp-checkout-account .mvp-password-meter-slot{
  display:flex;
  align-items:stretch;
}
.mvp-checkout .mvp-checkout-account .mvp-password-guidance-slot > *,
.mvp-checkout .mvp-checkout-account .mvp-password-meter-slot > *{
  width:100%;
  box-sizing:border-box;
  margin:0;
}
.mvp-checkout .mvp-checkout-account .mvp-password-guidance,
.mvp-checkout .mvp-checkout-account .mvp-password-meter--policy{
  height:100%;
}
.mvp-checkout .mvp-checkout-account .mvp-password-checklist{
  grid-template-columns:1fr;
}
.mvp-checkout .mvp-checkout-terms label{
  align-items:flex-start !important;
  gap:12px !important;
}
.mvp-checkout .mvp-checkout-terms input[type="checkbox"]{
  flex:0 0 auto;
  margin-top:.35em !important;
}
.mvp-checkout .mvp-checkout-terms span.mvp-subtle{
  display:block;
  line-height:1.55;
}
@media(max-width:760px){
  .mvp-checkout .mvp-checkout-account .mvp-checkout-password-row,
  .mvp-checkout .mvp-checkout-account .mvp-checkout-password-helper-row{
    grid-template-columns:1fr;
  }
}

/* v1.11.2-rawly account cancellation/password layout hotfix */
.mvp-account .mvp-cancellation-note{
  white-space:nowrap;
  max-width:100%;
  overflow-wrap:normal;
}
.mvp-account-card--password .mvp-password-new-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  max-width:980px;
  align-items:start;
}
.mvp-account-card--password .mvp-password-new-form .mvp-password-field,
.mvp-account-card--password .mvp-password-new-form .mvp-password-guidance-slot,
.mvp-account-card--password .mvp-password-new-form .mvp-password-meter-slot{
  min-width:0;
}
.mvp-account-card--password .mvp-password-new-form input[type="password"]{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.mvp-account-card--password .mvp-password-new-form .mvp-password-guidance-slot .mvp-password-guidance,
.mvp-account-card--password .mvp-password-new-form .mvp-password-meter-slot .mvp-password-meter--policy{
  width:100%;
  max-width:100%;
  min-height:0;
  height:auto;
  box-sizing:border-box;
}
.mvp-account-card--password .mvp-password-security-note{
  max-width:980px;
  box-sizing:border-box;
}
@media(max-width:782px){
  .mvp-account .mvp-cancellation-note{white-space:normal;}
  .mvp-account-card--password .mvp-password-new-form{grid-template-columns:1fr;}
  .mvp-account-card--password .mvp-password-new-form .mvp-account-form-grid__full,
  .mvp-account-card--password .mvp-password-new-form .mvp-password-field,
  .mvp-account-card--password .mvp-password-new-form .mvp-password-guidance-slot,
  .mvp-account-card--password .mvp-password-new-form .mvp-password-meter-slot{grid-column:1 / -1;}
}

/* v1.11.4 - same-tier subscription extension panel */
.mvp-account-extension-panel{margin-top:18px;border:1px solid #ececf1;border-radius:16px;background:linear-gradient(180deg,#fcfcfd,#f8f8fa);padding:14px 16px;}
.mvp-account-extension-panel > summary{list-style:none;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;margin:0;}
.mvp-account-extension-panel > summary::-webkit-details-marker{display:none;}
.mvp-account-extension-panel[open] > summary{margin-bottom:14px;}
.mvp-account-inline-panel__body{padding-top:2px;}
.mvp-account-form-grid--extension{grid-template-columns:minmax(220px,360px) 1fr;align-items:end;max-width:980px;}
.mvp-account-form-grid--extension select{width:100%;max-width:360px;border-radius:12px;padding:10px 12px;min-height:48px;box-sizing:border-box;}
@media (max-width: 700px){
  .mvp-account-form-grid--extension{grid-template-columns:1fr;}
  .mvp-account-form-grid--extension select{max-width:100%;}
  .mvp-account-extension-panel > summary{width:100%;}
}

/* v1.11.5-rawly payment UI polish */
.mvp-account-payment-actions-box{
  margin:14px 0 18px;
  padding:14px 16px;
  border:1px solid #dcdcde;
  border-radius:10px;
  background:#f8fafc;
}
.mvp-account-payment-actions-box h4{margin:0 0 6px;}
.mvp-account-payment-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:flex-start;}
.mvp-account-payment-actions .mvp-account-inline-panel{flex:1 1 280px;min-width:240px;}
.mvp-account-update-payment-panel .mvp-update-payment-card{max-width:none !important;}
.mvp-account-update-payment-panel .mvp-update-payment-card input{box-sizing:border-box;max-width:100%;}
.mvp-checkout .mvp-virtual-card-guidance{width:100% !important;max-width:none !important;}
.mvp-checkout .mvp-virtual-card-guidance p{max-width:none !important;white-space:normal;}
.mvp-checkout button.button-primary[type="submit"],
.mvp-checkout input[type="submit"].button-primary,
.mvp-checkout .button.button-primary[type="submit"]{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  background:#111 !important;
  border:1px solid #111 !important;
  color:#fff !important;
  border-radius:8px !important;
  padding:12px 22px !important;
  min-height:52px;
  font-weight:700 !important;
  text-decoration:none !important;
  box-shadow:none !important;
}
.mvp-checkout button.button-primary[type="submit"]:hover,
.mvp-checkout input[type="submit"].button-primary:hover,
.mvp-checkout .button.button-primary[type="submit"]:hover{
  background:#222 !important;
  border-color:#222 !important;
  color:#fff !important;
}
.mvp-checkout button.button-primary[type="submit"]:disabled,
.mvp-checkout input[type="submit"].button-primary:disabled,
.mvp-checkout .button.button-primary[type="submit"]:disabled{
  opacity:.55 !important;
  cursor:not-allowed !important;
  background:#6b7280 !important;
  border-color:#6b7280 !important;
}
@media (max-width:640px){
  .mvp-account-payment-actions{display:block;}
  .mvp-account-payment-actions .mvp-account-inline-panel{margin-top:10px;width:100%;}
}

/* v1.11.6-rawly subscription/payment action row alignment */
.mvp-account-payment-actions-box{
  display:block;
}
.mvp-account-payment-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.mvp-account-payment-actions .mvp-account-inline-panel{
  flex:0 0 auto;
  min-width:0;
  width:auto;
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}
.mvp-account-payment-actions .mvp-account-inline-panel > summary{
  box-sizing:border-box;
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0;
}
.mvp-account-payment-actions .mvp-account-inline-panel[open]{
  flex-basis:100%;
  width:100%;
}
.mvp-account-payment-actions .mvp-account-inline-panel[open] > summary{
  margin-bottom:12px;
}
.mvp-account-payment-actions .mvp-account-inline-panel__body{
  width:100%;
  box-sizing:border-box;
  padding:14px 16px;
  border:1px solid #ececf1;
  border-radius:12px;
  background:#fff;
}
@media (max-width:640px){
  .mvp-account-payment-actions{display:block;}
  .mvp-account-payment-actions .mvp-account-inline-panel,
  .mvp-account-payment-actions .mvp-account-inline-panel > summary{width:100%;}
  .mvp-account-payment-actions .mvp-account-inline-panel + .mvp-account-inline-panel{margin-top:10px;}
}

/* v1.11.9-rawly update-payment mobile hardening */
.mvp-account-update-payment-panel[open],
.mvp-account-update-payment-panel[open] .mvp-account-inline-panel__body,
.mvp-account-update-payment-panel[open] .mvp-update-payment-card{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  box-sizing:border-box !important;
}
.mvp-update-payment-card{
  overflow-wrap:break-word;
  word-break:normal;
}
.mvp-update-payment-card label,
.mvp-update-payment-card input,
.mvp-update-payment-card .description,
.mvp-update-payment-card #mvp-anet-msg{
  max-width:100% !important;
  box-sizing:border-box !important;
}
.mvp-update-payment-card input{
  display:block;
  width:100% !important;
}
@media (max-width:640px){
  .mvp-account-update-payment-panel[open] .mvp-account-inline-panel__body{
    padding:12px !important;
  }
  .mvp-update-payment-card{
    padding:12px !important;
    font-size:1rem;
    line-height:1.45;
  }
  .mvp-update-payment-card p,
  .mvp-update-payment-card .description,
  .mvp-update-payment-card #mvp-anet-msg{
    line-height:1.45;
  }
}


/* v1.11.17-rawly launch UI polish: account actions, password layout, login mobile hardening */
.mvp-account-payment-actions-box{
  margin:14px 0 18px;
  padding:16px;
  border:1px solid #dcdcde;
  border-radius:12px;
  background:#f8fafc;
  overflow:hidden;
}
.mvp-account-payment-actions-box h4{margin:0 0 6px;}
.mvp-account-payment-actions-box > .description{margin:0 0 12px;max-width:none;line-height:1.55;}
.mvp-account-payment-actions{
  display:flex !important;
  flex-wrap:wrap;
  gap:12px;
  align-items:flex-start;
}
.mvp-account-payment-actions .mvp-account-inline-panel{
  display:contents;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
}
.mvp-account-payment-actions .mvp-account-inline-panel > summary{
  order:1;
  list-style:none;
  cursor:pointer;
  box-sizing:border-box;
  min-height:52px;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  margin:0 !important;
  white-space:nowrap;
}
.mvp-account-payment-actions .mvp-account-inline-panel > summary::-webkit-details-marker{display:none;}
.mvp-account-payment-actions .mvp-account-inline-panel__body{
  order:2;
  flex:0 0 100%;
  width:100%;
  box-sizing:border-box;
  margin-top:2px;
  padding:16px;
  border:1px solid #ececf1;
  border-radius:12px;
  background:#fff;
}
.mvp-account-payment-actions .mvp-account-inline-panel:not([open]) .mvp-account-inline-panel__body{display:none !important;}
.mvp-account-form-grid--extension{
  display:grid;
  grid-template-columns:minmax(240px,380px) minmax(0,1fr);
  gap:12px 18px;
  align-items:start;
  max-width:none;
}
.mvp-account-form-grid--extension label{max-width:380px;}
.mvp-account-form-grid--extension select{width:100%;max-width:none;}
.mvp-account-form-grid--extension .description{max-width:78ch;line-height:1.55;}
.mvp-account-update-payment-panel .mvp-update-payment-card{max-width:none !important;width:100% !important;}

.mvp-account-card--password .mvp-account-form-grid--security-password{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px 18px !important;
  max-width:980px;
  align-items:start;
}
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-field,
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-guidance-slot,
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-meter-slot{min-width:0;}
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-field input[type="password"]{width:100%;max-width:100%;box-sizing:border-box;}
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-guidance-slot,
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-meter-slot{display:flex;align-items:stretch;}
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-guidance-slot > *,
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-meter-slot > *{width:100%;max-width:100%;box-sizing:border-box;margin:0;}
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-security-note,
.mvp-account-card--password .mvp-account-form-grid--security-password .mvp-account-form-grid__full{grid-column:1 / -1;}
.mvp-account-card--password .mvp-password-security-note{max-width:980px;line-height:1.55;}
.mvp-account-card--password .mvp-account-card-actions{margin-top:12px;}

.mvp-login-shell,
.mvp-login-layout,
.mvp-login-panel,
.mvp-login-card,
.mvp-login-form-wrap,
.mvp-login-form-wrap form,
.mvp-login-form-wrap p{box-sizing:border-box;max-width:100%;}
.mvp-login-card{overflow:hidden;}
.mvp-login-form-wrap input[type="text"],
.mvp-login-form-wrap input[type="email"],
.mvp-login-form-wrap input[type="password"]{width:100% !important;max-width:100% !important;box-sizing:border-box;}
.mvp-login-form-wrap .cf-turnstile,
.mvp-login-form-wrap .h-captcha,
.mvp-login-form-wrap .g-recaptcha,
.mvp-login-form-wrap iframe,
.mvp-login-form-wrap [data-sitekey]{max-width:100% !important;box-sizing:border-box;}

@media (max-width:700px){
  .mvp-account-payment-actions{display:block !important;}
  .mvp-account-payment-actions .mvp-account-inline-panel{display:block;}
  .mvp-account-payment-actions .mvp-account-inline-panel + .mvp-account-inline-panel{margin-top:10px;}
  .mvp-account-payment-actions .mvp-account-inline-panel > summary{width:100%;white-space:normal;}
  .mvp-account-payment-actions .mvp-account-inline-panel__body{margin-top:10px;padding:12px;}
  .mvp-account-form-grid--extension{grid-template-columns:1fr;}
  .mvp-account-form-grid--extension label{max-width:none;}
  .mvp-account-card--password .mvp-account-form-grid--security-password{grid-template-columns:1fr !important;}
  .mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-field,
  .mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-guidance-slot,
  .mvp-account-card--password .mvp-account-form-grid--security-password .mvp-password-meter-slot,
  .mvp-account-card--password .mvp-account-form-grid--security-password .mvp-account-form-grid__full{grid-column:1 / -1;}
}

/* Launch-day ratings card hardening - 1.11.23-rawly */
.mvp-ratings-panel{
  width:100% !important;
  max-width:720px !important;
  margin:1.5rem 0 0 !important;
  padding:1rem 1.1rem !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.38)) !important;
  border-radius:12px !important;
  background:var(--mvp-card-bg, rgba(127,127,127,.08)) !important;
  color:var(--mvp-card-text, inherit) !important;
  box-shadow:0 1px 2px rgba(0,0,0,.08) !important;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif !important;
  line-height:1.45 !important;
}
.mvp-ratings-panel__title{
  margin:0 0 .65rem !important;
  color:var(--mvp-accent, var(--mvp-card-text, inherit)) !important;
  font-family:inherit !important;
  font-size:1.1rem !important;
  line-height:1.3 !important;
}
.mvp-ratings-panel__summary{
  gap:.55rem !important;
  margin-bottom:.75rem !important;
}
.mvp-ratings-panel__numbers,
.mvp-ratings-panel__numbers strong,
.mvp-ratings-panel__help{
  color:var(--mvp-card-text, inherit) !important;
  font-family:inherit !important;
}
.mvp-ratings-panel__help{
  color:var(--mvp-muted-text, var(--mvp-card-text, inherit)) !important;
  opacity:.82 !important;
}
.mvp-ratings-panel__actions{
  display:flex !important;
  gap:.45rem !important;
  flex-wrap:wrap !important;
  align-items:center !important;
}
.mvp-ratings-panel__button{
  width:auto !important;
  min-width:46px !important;
  max-width:100% !important;
  min-height:42px !important;
  padding:.42rem .58rem !important;
  border:1px solid var(--mvp-card-border, #d6dde5) !important;
  border-radius:8px !important;
  background:rgba(127,127,127,.08) !important;
  color:var(--mvp-card-text, inherit) !important;
  box-shadow:none !important;
  font-family:inherit !important;
  line-height:1 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:.18rem !important;
}
.mvp-ratings-panel__button:hover,
.mvp-ratings-panel__button:focus{
  background:rgba(127,127,127,.14) !important;
  border-color:var(--mvp-accent, #0052d6) !important;
}
.mvp-ratings-panel__button.is-current{
  border-color:var(--mvp-accent, #0052d6) !important;
  background:rgba(0,82,214,.09) !important;
  box-shadow:0 0 0 1px rgba(0,82,214,.18) inset !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image,
.mvp-ratings-panel__button img.mvp-ratings-icon-image{
  width:24px !important;
  height:24px !important;
  margin:0 !important;
  object-fit:contain !important;
  flex:0 0 auto !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image{
  width:26px !important;
  height:26px !important;
}
@media (prefers-color-scheme: dark){
  .mvp-ratings-panel{
    background:var(--mvp-card-bg, rgba(24,26,28,.96)) !important;
    color:var(--mvp-card-text, #f6f7f7) !important;
    border-color:var(--mvp-card-border, rgba(255,255,255,.22)) !important;
  }
}


/* Launch-day ratings card hardening pass 2 - 1.11.24-rawly
   Scope: front-end ratings presentation only. Do not change rating logic. */
.mvp-ratings-panel{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  gap:.65rem 1rem !important;
  width:100% !important;
  max-width:100% !important;
  margin:1.5rem 0 1.75rem 0 !important;
  padding:1rem 1.1rem !important;
  box-sizing:border-box !important;
  clear:both !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.42)) !important;
  border-radius:12px !important;
  background:var(--mvp-card-bg, rgba(127,127,127,.06)) !important;
  color:var(--mvp-card-text, inherit) !important;
  box-shadow:none !important;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif !important;
  line-height:1.45 !important;
}
.mvp-ratings-panel__title{
  grid-column:1 !important;
  grid-row:1 !important;
  align-self:center !important;
  margin:0 !important;
  color:var(--mvp-accent, var(--mvp-card-text, inherit)) !important;
  font-family:inherit !important;
  font-size:1rem !important;
  font-weight:700 !important;
  line-height:1.3 !important;
}
.mvp-ratings-panel__notice{
  grid-column:1 / -1 !important;
  margin:0 !important;
  padding:.7rem .85rem !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.36)) !important;
  border-radius:10px !important;
  background:rgba(127,127,127,.07) !important;
  color:var(--mvp-card-text, inherit) !important;
  font-family:inherit !important;
}
.mvp-ratings-panel__summary{
  grid-column:2 !important;
  grid-row:1 !important;
  justify-self:end !important;
  align-self:center !important;
  display:flex !important;
  gap:.55rem !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  margin:0 !important;
  min-width:max-content !important;
}
.mvp-ratings-panel__stars{
  display:inline-flex !important;
  gap:.15rem !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  color:var(--mvp-accent, #d4a017) !important;
  text-shadow:none !important;
}
.mvp-ratings-panel__numbers{
  display:inline-flex !important;
  gap:.35rem !important;
  align-items:baseline !important;
  flex-wrap:nowrap !important;
  color:var(--mvp-muted-text, var(--mvp-card-text, inherit)) !important;
  font-family:inherit !important;
  white-space:nowrap !important;
}
.mvp-ratings-panel__numbers strong{
  color:var(--mvp-card-text, inherit) !important;
  font-family:inherit !important;
  font-weight:700 !important;
}
.mvp-ratings-panel__form{
  grid-column:1 / -1 !important;
  margin:0 !important;
  width:100% !important;
}
.mvp-ratings-panel__actions{
  display:flex !important;
  gap:.4rem !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  margin:0 !important;
  width:100% !important;
}
.mvp-ratings-panel__button{
  appearance:none !important;
  -webkit-appearance:none !important;
  width:auto !important;
  min-width:0 !important;
  max-width:none !important;
  min-height:34px !important;
  height:auto !important;
  padding:.34rem .46rem !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.5)) !important;
  border-radius:8px !important;
  background:transparent !important;
  color:var(--mvp-card-text, inherit) !important;
  box-shadow:none !important;
  font-family:inherit !important;
  font-size:1rem !important;
  font-weight:600 !important;
  line-height:1 !important;
  text-decoration:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:.12rem !important;
  cursor:pointer !important;
  vertical-align:middle !important;
}
.mvp-ratings-panel__button:hover,
.mvp-ratings-panel__button:focus{
  background:rgba(127,127,127,.10) !important;
  border-color:var(--mvp-accent, #0052d6) !important;
  outline:2px solid transparent !important;
}
.mvp-ratings-panel__button:focus-visible{
  outline:2px solid var(--mvp-accent, #0052d6) !important;
  outline-offset:2px !important;
}
.mvp-ratings-panel__button.is-current{
  border-color:var(--mvp-accent, #0052d6) !important;
  background:rgba(0,82,214,.10) !important;
  box-shadow:0 0 0 1px rgba(0,82,214,.18) inset !important;
}
.mvp-ratings-panel__help{
  margin:.6rem 0 0 !important;
  color:var(--mvp-muted-text, var(--mvp-card-text, inherit)) !important;
  opacity:.86 !important;
  font-family:inherit !important;
  font-size:.95rem !important;
  line-height:1.45 !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image,
.mvp-ratings-panel__button img.mvp-ratings-icon-image{
  width:20px !important;
  height:20px !important;
  margin:0 !important;
  object-fit:contain !important;
  display:inline-block !important;
  vertical-align:middle !important;
  flex:0 0 auto !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image{
  width:22px !important;
  height:22px !important;
}
.mvp-ratings-panel__stars--custom .mvp-ratings-icon-image--empty,
.mvp-ratings-panel__button .mvp-ratings-icon-image--empty{
  opacity:.24 !important;
  filter:grayscale(100%) !important;
}
.mvp-ratings-panel--style-stars .mvp-ratings-panel__stars,
.mvp-ratings-panel--style-stars .mvp-ratings-panel__button{
  color:var(--mvp-accent, #d4a017) !important;
}
@media (max-width: 720px){
  .mvp-ratings-panel{
    grid-template-columns:1fr !important;
    gap:.65rem !important;
  }
  .mvp-ratings-panel__title,
  .mvp-ratings-panel__summary,
  .mvp-ratings-panel__form{
    grid-column:1 !important;
    grid-row:auto !important;
    justify-self:start !important;
  }
  .mvp-ratings-panel__summary{
    flex-wrap:wrap !important;
    min-width:0 !important;
  }
}

/* Launch-day ratings card hardening pass 3 - 1.11.25-rawly
   Scope: front-end ratings presentation only. Do not change rating logic. */
.mvp-ratings-panel{
  width:100% !important;
  max-width:960px !important;
  margin:1.5rem auto 1.75rem auto !important;
}
.mvp-ratings-panel__button{
  min-height:48px !important;
  min-width:52px !important;
  padding:.46rem .62rem !important;
  gap:.18rem !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image,
.mvp-ratings-panel__button img.mvp-ratings-icon-image{
  width:32px !important;
  height:32px !important;
  max-width:32px !important;
  max-height:32px !important;
}
.mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image{
  width:34px !important;
  height:34px !important;
  max-width:34px !important;
  max-height:34px !important;
}
.mvp-ratings-panel--style-stars .mvp-ratings-panel__button{
  min-height:42px !important;
  min-width:44px !important;
  padding:.38rem .52rem !important;
}
@media (max-width: 980px){
  .mvp-ratings-panel{
    max-width:100% !important;
  }
}
@media (max-width: 560px){
  .mvp-ratings-panel__button{
    min-height:44px !important;
    min-width:46px !important;
    padding:.38rem .48rem !important;
  }
  .mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image,
  .mvp-ratings-panel__button img.mvp-ratings-icon-image{
    width:28px !important;
    height:28px !important;
    max-width:28px !important;
    max-height:28px !important;
  }
  .mvp-ratings-panel__stars--custom img.mvp-ratings-icon-image{
    width:30px !important;
    height:30px !important;
    max-width:30px !important;
    max-height:30px !important;
  }
}


/* Launch-day ratings card hardening pass 4 - 1.11.26-rawly
   Scope: front-end ratings presentation only. Do not change rating logic. */
.mvp-ratings-panel{
  max-width:960px !important;
  margin:1.5rem auto 1.75rem 0 !important;
}
.mvp-ratings-panel__summary{
  align-self:start !important;
  padding-top:.05rem !important;
}
.mvp-ratings-panel__form{
  min-width:0 !important;
}
.mvp-ratings-panel__reason{
  margin-top:.8rem !important;
  padding:.85rem !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.38)) !important;
  border-radius:10px !important;
  background:rgba(127,127,127,.055) !important;
  color:var(--mvp-card-text, inherit) !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:.55rem !important;
  max-width:620px !important;
  box-sizing:border-box !important;
  font-family:inherit !important;
}
.mvp-ratings-panel__reason[hidden]{
  display:none !important;
}
.mvp-ratings-panel__reason label{
  display:block !important;
  margin:0 !important;
  color:var(--mvp-accent, var(--mvp-card-text, inherit)) !important;
  font-family:inherit !important;
  font-size:.98rem !important;
  font-weight:700 !important;
  line-height:1.3 !important;
}
.mvp-ratings-panel__reason-input{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  min-height:40px !important;
  margin:0 !important;
  padding:.52rem .65rem !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.48)) !important;
  border-radius:8px !important;
  background:var(--mvp-field-bg, #fff) !important;
  color:var(--mvp-field-text, #111827) !important;
  box-sizing:border-box !important;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif !important;
  font-size:.95rem !important;
  line-height:1.35 !important;
}
.mvp-ratings-panel__reason-help{
  margin:0 !important;
  color:var(--mvp-muted-text, var(--mvp-card-text, inherit)) !important;
  font-family:inherit !important;
  font-size:.85rem !important;
  line-height:1.45 !important;
  opacity:.86 !important;
}
.mvp-ratings-panel__reason-actions{
  display:flex !important;
  gap:.5rem !important;
  flex-wrap:wrap !important;
  align-items:center !important;
  margin:.1rem 0 0 !important;
}
.mvp-ratings-panel__submit,
.mvp-ratings-panel__cancel{
  appearance:none !important;
  -webkit-appearance:none !important;
  min-height:36px !important;
  padding:.45rem .75rem !important;
  border-radius:8px !important;
  border:1px solid var(--mvp-card-border, rgba(127,127,127,.45)) !important;
  box-shadow:none !important;
  cursor:pointer !important;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif !important;
  font-size:.9rem !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
}
.mvp-ratings-panel__submit{
  background:var(--mvp-button-bg, #111827) !important;
  color:var(--mvp-button-text, #fff) !important;
  border-color:var(--mvp-button-bg, #111827) !important;
}
.mvp-ratings-panel__cancel{
  background:transparent !important;
  color:var(--mvp-card-text, inherit) !important;
}
.mvp-ratings-panel__submit:hover,
.mvp-ratings-panel__submit:focus,
.mvp-ratings-panel__cancel:hover,
.mvp-ratings-panel__cancel:focus{
  filter:brightness(.96) !important;
  border-color:var(--mvp-accent, #0052d6) !important;
}
@media (prefers-color-scheme: dark){
  .mvp-ratings-panel__reason-input{
    background:var(--mvp-field-bg, rgba(255,255,255,.94)) !important;
    color:var(--mvp-field-text, #111827) !important;
  }
}
@media (max-width: 720px){
  .mvp-ratings-panel{
    margin-right:0 !important;
  }
  .mvp-ratings-panel__reason{
    max-width:100% !important;
  }
}


/* Launch-day ratings form UX fix - 1.11.27-rawly
   Scope: frontend ratings presentation only. Optional reason remains optional. */
.mvp-ratings-panel__optional{
  font-weight:600 !important;
  opacity:.9 !important;
}
.mvp-ratings-panel__reason-actions{
  justify-content:flex-start !important;
}
.mvp-ratings-panel__submit{
  background:#0052D6 !important;
  color:#ffffff !important;
  border-color:#0052D6 !important;
  opacity:1 !important;
  filter:none !important;
  visibility:visible !important;
  text-shadow:none !important;
}
.mvp-ratings-panel__submit:hover,
.mvp-ratings-panel__submit:focus{
  background:#003fa8 !important;
  color:#ffffff !important;
  border-color:#003fa8 !important;
  filter:none !important;
}
.mvp-ratings-panel__submit:focus-visible{
  outline:2px solid #24AD2A !important;
  outline-offset:2px !important;
}
.mvp-ratings-panel__cancel{
  display:none !important;
}


/* Ratings optional reason polish - 1.11.28-rawly
   Scope: frontend ratings reason width/text/button presentation only. */
.mvp-ratings-panel__reason{
  width:min(100%, 760px) !important;
  max-width:760px !important;
}
.mvp-ratings-panel__reason-input{
  max-width:100% !important;
}
.mvp-ratings-panel__reason-help span{
  display:block !important;
}
.mvp-ratings-panel__submit{
  background:var(--mvp-button-bg, #111827) !important;
  color:var(--mvp-button-text, #ffffff) !important;
  border-color:var(--mvp-button-bg, #111827) !important;
}
.mvp-ratings-panel__submit:hover,
.mvp-ratings-panel__submit:focus{
  background:var(--mvp-button-bg, #0b1220) !important;
  color:var(--mvp-button-text, #ffffff) !important;
  border-color:var(--mvp-accent, var(--mvp-button-bg, #0b1220)) !important;
}
@media (max-width: 720px){
  .mvp-ratings-panel__reason{
    width:100% !important;
    max-width:100% !important;
  }
}


/* Ratings optional reason alignment/button polish - 1.11.29-rawly
   Scope: frontend ratings reason helper punctuation, panel width, and Save button colour only. */
.mvp-ratings-panel__reason{
  width:min(100%, 680px) !important;
  max-width:680px !important;
}
.mvp-ratings-panel__submit{
  background:var(--mvp-accent, #24AD2A) !important;
  color:var(--mvp-button-text, #ffffff) !important;
  border-color:var(--mvp-accent, #24AD2A) !important;
  opacity:1 !important;
  filter:none !important;
  visibility:visible !important;
  box-shadow:none !important;
}
.mvp-ratings-panel__submit:hover,
.mvp-ratings-panel__submit:focus{
  background:var(--mvp-accent, #1f9824) !important;
  color:var(--mvp-button-text, #ffffff) !important;
  border-color:var(--mvp-accent, #1f9824) !important;
  filter:brightness(.96) !important;
}
.mvp-ratings-panel__submit:focus-visible{
  outline:2px solid var(--mvp-accent, #24AD2A) !important;
  outline-offset:2px !important;
}
@media (max-width: 720px){
  .mvp-ratings-panel__reason{
    width:100% !important;
    max-width:100% !important;
  }
}
