/* ==========================================================================
   Badminton Plus Web
   ========================================================================== */

/* ---------- Design tokens (matching theme _variables.scss) ---------- */
:root {
    --bplus-primary: #4A5790;
    --bplus-primary-hover: #3D4A7D;
    --bplus-text: #333333;
    --bplus-text-light: #666666;
    --bplus-border: #D9D9D9;
    --bplus-focus: #4A5790;
    --bplus-disabled-bg: #E5E5E5;
    --bplus-disabled-text: #999999;
    --bplus-white: #FFFFFF;
    --bplus-error: #D32F2F;
    --bplus-font: 'Raleway', sans-serif;
    --bplus-radius: 50px;
    --bplus-radius-sm: 8px;
}


/* ==========================================================================
   LOGIN PAGE
   ========================================================================== */

.bplus-login-page {
    margin: -31px 0 0;
    padding: 0;
    font-family: var(--bplus-font);
    background: var(--bplus-white);
    -webkit-font-smoothing: antialiased;
}

/* Kill the WP admin bar spacing on login page */
.bplus-login-page #wpadminbar { display: none; }
.bplus-login-page { padding-top: 0 !important; }


/* ---------- Topbar ---------- */

.bplus-login__topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 20px;
}

.bplus-login__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.bplus-login__logo img {
    height: 36px;
    width: auto;
}

.bplus-login__menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--bplus-white);
    font-family: var(--bplus-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bplus-login__menu-btn svg {
    width: 28px;
    height: 28px;
}


/* ---------- Split layout ---------- */

.bplus-login__layout {
    display: flex;
    min-height: 100vh;
}

.bplus-login__hero {
    display: none;
}

.bplus-login__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bplus-login__panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.bplus-login__panel-inner {
    width: 100%;
    max-width: 420px;
    position: relative;
}


/* ---------- Mobile: hero as banner at top ---------- */

@media (max-width: 767px) {
    .bplus-login__layout {
        flex-direction: column;
    }

    .bplus-login__hero {
        display: block;
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .bplus-login__panel {
        padding: 32px 24px 48px;
        align-items: flex-start;
    }
}


/* ---------- Desktop: side-by-side ---------- */

@media (min-width: 768px) {
    .bplus-login__hero {
        display: block;
        flex: 0 0 38%;
        max-width: 38%;
        position: relative;
    }

    .bplus-login__panel {
        flex: 1;
        padding: 80px 60px;
    }

    .bplus-login__panel-inner {
        max-width: 460px;
    }
}

@media (min-width: 1200px) {
    .bplus-login__panel {
        padding: 80px 100px;
    }
}


/* ---------- Steps ---------- */

.bplus-login__step--hidden {
    display: none !important;
}


/* ---------- Typography ---------- */

.bplus-login__heading {
    font-family: var(--bplus-font);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--bplus-text);
    margin: 0 0 16px;
}

@media (min-width: 768px) {
    .bplus-login__heading {
        font-size: 36px;
    }
}

.bplus-login__text,
.bplus-login__intro p {
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bplus-text);
    margin: 0 0 8px;
}

.bplus-login__intro {
    margin-bottom: 4px;
}

.bplus-login__email-display {
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0 0 28px;
}


/* ---------- Floating-label input ---------- */

.bplus-login__field {
    margin: 28px 0 8px;
}

.bplus-input-wrap {
    position: relative;
}

.bplus-input {
    width: 100%;
    padding: 18px 16px 8px;
    font-family: var(--bplus-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--bplus-text);
    border: 1.5px solid var(--bplus-border);
    border-radius: var(--bplus-radius-sm);
    outline: none;
    background: var(--bplus-white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bplus-input:focus {
    border-color: var(--bplus-focus);
    box-shadow: 0 0 0 2px rgba(74, 87, 144, 0.15);
}

.bplus-input-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--bplus-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--bplus-text-light);
    pointer-events: none;
    transition: all 0.2s ease;
    background: var(--bplus-white);
    padding: 0 4px;
}

.bplus-input:focus + .bplus-input-label,
.bplus-input:not(:placeholder-shown) + .bplus-input-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 500;
    color: var(--bplus-focus);
}

.bplus-login__helper {
    font-family: var(--bplus-font);
    font-size: 13px;
    color: var(--bplus-text-light);
    margin: 8px 0 0;
    line-height: 1.4;
}


/* ---------- Error messages ---------- */

.bplus-login__error {
    font-family: var(--bplus-font);
    font-size: 13px;
    color: var(--bplus-error);
    min-height: 20px;
    margin: 4px 0 8px;
    line-height: 1.4;
}

.bplus-login__error:empty {
    display: none;
}


/* ---------- OTP digit inputs ---------- */

.bplus-otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin: 0 0 16px;
}

.bplus-otp-digit {
    width: 48px;
    height: 48px;
    text-align: center;
    font-family: var(--bplus-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--bplus-text);
    border: 1.5px solid var(--bplus-border);
    border-radius: 50%;
    outline: none;
    background: var(--bplus-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    padding: 0;
    caret-color: var(--bplus-focus);
}

.bplus-otp-digit:focus {
    border-color: var(--bplus-focus);
    box-shadow: 0 0 0 2px rgba(74, 87, 144, 0.15);
}

.bplus-otp-digit.has-value {
    -webkit-text-security: disc;
    font-size: 28px;
    line-height: 48px;
}

@media (min-width: 768px) {
    .bplus-otp-digit {
        width: 52px;
        height: 52px;
    }

    .bplus-otp-digit.has-value {
        line-height: 52px;
    }
}


/* ---------- Resend ---------- */

.bplus-login__resend {
    font-family: var(--bplus-font);
    font-size: 14px;
    margin: 0 0 24px;
    text-align: center;
}

.bplus-link {
    color: var(--bplus-primary);
    font-weight: 600;
    text-decoration: none;
}

.bplus-link:hover {
    text-decoration: underline;
}

.bplus-link--disabled {
    pointer-events: none;
    opacity: 0.5;
}


/* ---------- Buttons ---------- */

.bplus-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-family: var(--bplus-font);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--bplus-radius);
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    text-align: center;
    line-height: 1.4;
}

.bplus-btn--primary {
    background: var(--bplus-primary);
    color: var(--bplus-white);
}

.bplus-btn--primary:hover:not(:disabled) {
    background: var(--bplus-primary-hover);
}

.bplus-btn--secondary {
    background: transparent;
    color: var(--bplus-primary);
    border: 1.5px solid var(--bplus-primary);
}

.bplus-btn--secondary:hover:not(:disabled) {
    background: rgba(74, 87, 144, 0.06);
    color: var(--bplus-primary);
    text-decoration: none;
}

.bplus-btn:disabled {
    background: var(--bplus-disabled-bg);
    color: var(--bplus-disabled-text);
    cursor: not-allowed;
}

.bplus-login__no-account-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.bplus-btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.bplus-btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--bplus-white);
    border-radius: 50%;
    animation: bplus-spin 0.6s linear infinite;
}


/* ---------- Back link (OTP step) ---------- */

.bplus-login__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--bplus-text-light);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.15s;
}

.bplus-login__back:hover {
    color: var(--bplus-text);
    text-decoration: none;
}


/* ---------- Alt action (signup prompt) ---------- */

.bplus-login__alt-action {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    text-align: center;
    margin: 20px 0 0;
    line-height: 1.5;
}


/* ---------- Footer text ---------- */

.bplus-login__footer-text {
    font-family: var(--bplus-font);
    font-size: 13px;
    color: var(--bplus-text-light);
    text-align: center;
    margin: 24px 0 0;
    line-height: 1.5;
}


/* ---------- Loading overlay ---------- */

.bplus-login__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
}

.bplus-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--bplus-disabled-bg);
    border-top-color: var(--bplus-primary);
    border-radius: 50%;
    animation: bplus-spin 0.7s linear infinite;
}

@keyframes bplus-spin {
    to { transform: rotate(360deg); }
}


/* ==========================================================================
   RADIO PAGE
   ========================================================================== */

.bplus-radio {
    /* padding-bottom: 40px; */
    background: #F5F5F7;
    margin: 0 -20px;
    padding: 40px 20px 40px;
}

/* ---------- Title row with Members Area button ---------- */

.bplus-radio__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Account dropdown menu ---------- */

.bplus-account-menu-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    z-index: 40;
}

.bplus-account-menu-row--radio {
    padding-top: 8px;
}

.bplus-account-menu-row--member {
    margin-bottom: 32px;
}

.bplus-account-menu-row--hero {
    margin-top: 20px;
    margin-bottom: 0;
}

.bplus-radio__account-menu {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 45;
}

.bplus-member-area-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bplus-primary);
    color: var(--bplus-white);
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--bplus-radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.bplus-member-area-btn:hover {
    background: var(--bplus-primary-hover);
    color: var(--bplus-white);
    text-decoration: none;
}

.bplus-member-area-btn svg {
    flex-shrink: 0;
}

.bplus-radio__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bplus-white);
    border-radius: var(--bplus-radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    z-index: 120;
    overflow: hidden;
}

.bplus-radio__dropdown--open {
    display: block;
}

.bplus-radio__dropdown-item {
    display: block;
    padding: 12px 20px;
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--bplus-text);
    text-decoration: none;
    transition: background 0.15s;
}

.bplus-radio__dropdown-item:hover {
    background: #F5F5F7;
    text-decoration: none;
    color: var(--bplus-text);
}

.bplus-radio__dropdown-item + .bplus-radio__dropdown-item {
    border-top: 1px solid #ECECEC;
}

.bplus-radio__section-title {
    font-family: var(--bplus-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0 0 20px;
}


/* ---------- Timetable ---------- */

.bplus-radio__timetable {
    margin-bottom: 32px;
}

.bplus-radio__timetable-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.bplus-radio__timetable-card {
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 118px;
    background: var(--bplus-white);
    color: var(--bplus-text);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--bplus-font);
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.bplus-radio__timetable-card h1,
.bplus-radio__timetable-card h2,
.bplus-radio__timetable-card h3,
.bplus-radio__timetable-card h4,
.bplus-radio__timetable-card h5,
.bplus-radio__timetable-card h6 {
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bplus-text);
    margin: 0 0 4px;
    line-height: 1.3;
}

.bplus-radio__timetable-card p {
    margin: 0;
    font-size: 11px;
    color: var(--bplus-text-light);
}

.bplus-radio__timetable-grid::-webkit-scrollbar {
    height: 4px;
}

.bplus-radio__timetable-grid::-webkit-scrollbar-thumb {
    background: var(--bplus-border);
    border-radius: 4px;
}


/* ---------- Live player panel ---------- */

.bplus-radio__player-panel {
    background: #215732;
    border-radius: 12px;
    overflow: hidden;
    color: var(--bplus-white);
    position: relative;
}

.bplus-radio__sponsor {
    padding: 16px 16px 0;
    text-align: right;
}

.bplus-radio__sponsor img {
    max-height: 40px;
    width: auto;
}

.bplus-radio__player-content {
    padding: 20px 20px 0;
    position: relative;
}



.bplus-radio__player-title {
    font-family: var(--bplus-font);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--bplus-white);
}

.bplus-radio__live-controls-wrapper {
    background: var(--bplus-white);
    border-radius: 8px;
    padding: 10px 10px;
}

.bplus-radio__listen-label {
    font-family: var(--bplus-font);
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    color: #000;
    letter-spacing: 0.5px;
    line-height: normal;
}

.bplus-radio__listen-label--title {
    font-size: 13px;
    font-weight: 600;
}

.bplus-radio__live-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bplus-radio__live-badge {
    font-family: var(--bplus-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #E85D2A;
    padding: 3px 10px;
    border-radius: 4px;
    line-height: 1.3;
    flex-shrink: 0;
}

.bplus-radio__no-live-badge {
    font-family: var(--bplus-font);
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #F0F0F0;
    padding: 3px 10px;
    border-radius: 4px;
    line-height: 1.5;
}

.bplus-radio__player-logo-frequency-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bplus-radio__player-logo img {
    max-height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.bplus-radio__plus-badge {
    font-family: var(--bplus-font);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #1B1B1B;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    line-height: 1.3;
    flex-shrink: 0;
}

.bplus-radio__status {
    font-family: var(--bplus-font);
    font-size: 12px;
    color: rgba(0, 0, 20, 0.7);
    flex: 1;
    min-width: 0;
}

.bplus-radio__play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #E85D2A;
    color: var(--bplus-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, opacity 0.2s;
    padding: 0;
    margin-left: auto;
}

.bplus-radio__play-btn:hover:not(:disabled) {
    background: #D14E1E;
}

.bplus-radio__play-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bplus-radio__play-btn .bplus-icon-play {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.bplus-radio__play-btn .bplus-icon-stop {
    width: 14px;
    height: 14px;
    display: none;
}

.bplus-radio__player-panel--playing .bplus-radio__play-btn .bplus-icon-play {
    display: none;
}

.bplus-radio__player-panel--playing .bplus-radio__play-btn .bplus-icon-stop {
    display: block;
}



/* ---------- Frequency ---------- */

.bplus-radio__frequency {
    padding: 0 16px 20px;
    text-align: center;
}

.bplus-radio__freq-label {
    font-family: var(--bplus-font);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    color: var(--bplus-white);
    letter-spacing: 0.5px;
}

.bplus-radio__freq-number {
    font-family: var(--bplus-font);
    font-size: 30px;
    font-weight: 700;
    color: var(--bplus-white);
    line-height: 1;
}

.bplus-radio__freq-unit {
    font-family: var(--bplus-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--bplus-white);
    margin-left: 4px;
}


/* ---------- Recordings list ---------- */

.bplus-radio__recordings {
    margin-top: 40px;
}

.bplus-radio__recordings-intro {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    margin-top: 32px;
    line-height: 1.6;
    padding: 0 10px;
}

.bplus-radio__recordings-loading {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.bplus-radio__year-group {
    margin-bottom: 32px;
}

.bplus-radio__year-title {
    font-family: var(--bplus-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0 0 12px;
}

.bplus-radio__rec-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bplus-white);
    border-bottom: 1px solid #ECECEC;
    transition: background 0.15s;
}

.bplus-radio__rec-row:first-child {
    border-radius: 8px 8px 0 0;
}

.bplus-radio__rec-row:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.bplus-radio__rec-row:only-child {
    border-radius: 8px;
}

.bplus-radio__rec-row:hover {
    background: #FAFAFA;
}

.bplus-radio__rec-row--active {
    background: #F0F2F8;
}

.bplus-radio__info-text {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    margin-top: 20px;
    line-height: 1.6;
}

/* ---------- Recording play button (borderless, right-aligned) ---------- */

.bplus-radio__rec-play {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--bplus-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.15s;
}

.bplus-radio__rec-play:hover {
    opacity: 0.7;
}

.bplus-radio__rec-play .bplus-rec-icon-play {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.bplus-radio__rec-play .bplus-rec-icon-pause {
    width: 18px;
    height: 18px;
    display: none;
}

.bplus-radio__rec-row--playing .bplus-radio__rec-play .bplus-rec-icon-play {
    display: none;
}

.bplus-radio__rec-row--playing .bplus-radio__rec-play .bplus-rec-icon-pause {
    display: block;
}


/* ---------- Recording info ---------- */

.bplus-radio__rec-info {
    flex: 1;
    min-width: 0;
}

.bplus-radio__rec-title {
    display: block;
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--bplus-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bplus-radio__rec-meta {
    display: block;
    font-family: var(--bplus-font);
    font-size: 12px;
    color: var(--bplus-text-light);
    margin-top: 2px;
}


/* ---------- Recording seek bar ---------- */

.bplus-radio__rec-seek {
    flex: 0 0 120px;
    cursor: pointer;
    padding: 8px 0;
}

.bplus-radio__rec-progress {
    height: 4px;
    background: var(--bplus-border);
    border-radius: 2px;
    overflow: hidden;
}

.bplus-radio__rec-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--bplus-primary);
    border-radius: 2px;
    transition: width 0.3s linear;
}

@media (max-width: 767px) {
    .bplus-radio__rec-seek {
        display: none;
    }

    .bplus-radio__rec-row {
        padding: 10px 8px;
        gap: 10px;
    }
}

.bplus-radio__empty {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    text-align: center;
    padding: 40px 0;
}


/* ==========================================================================
   MEMBER AREA
   ========================================================================== */

.bplus-member {
    min-height: 60vh;
    padding-bottom: 60px;
    background: #F5F5F7;
    margin: 0 -20px;
    padding: 32px 20px 60px;
}

.bplus-member__state--hidden {
    display: none !important;
}

.bplus-radio__state--hidden {
	display: none !important;
}

.bplus-member__loading {
    display: flex;
    justify-content: center;
    padding: 120px 0;
}


/* ---------- Header ---------- */

.bplus-member__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.bplus-member__heading {
    font-family: var(--bplus-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--bplus-text);
    margin: 0;
}

@media (min-width: 768px) {
    .bplus-member__heading {
        font-size: 32px;
    }
}

.bplus-member__logout-btn {
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--bplus-text);
    background: var(--bplus-white);
    border: 1.5px solid var(--bplus-border);
    border-radius: var(--bplus-radius);
    padding: 8px 24px;
    cursor: pointer;
    transition: background 0.15s;
}

.bplus-member__logout-btn:hover {
    background: #F0F0F0;
}


/* ---------- Cards ---------- */

.bplus-member__card {
    background: var(--bplus-white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.bplus-member__card-title {
    font-family: var(--bplus-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0 0 20px;
}

.bplus-member__plus-accent {
    color: #19784A;
    font-style: italic;
}


/* ---------- Profile fields ---------- */

.bplus-member__field {
    margin-bottom: 16px;
}

.bplus-member__label {
    display: block;
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bplus-text);
    margin-bottom: 2px;
}

.bplus-member__value {
    display: block;
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--bplus-text-light);
}

.bplus-member__edit-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px 24px;
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--bplus-text);
    background: var(--bplus-white);
    border: 1.5px solid var(--bplus-border);
    border-radius: var(--bplus-radius);
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
}

.bplus-member__edit-btn:hover {
    background: #F0F0F0;
}

.bplus-member__description {
    margin: 14px 0 0 0;
    font-family: var(--bplus-font);
    font-size: 13px;
    line-height: 1.45;
    color: rgba(0, 0, 20, 0.7);
}

.bplus-member__description--radio {
    margin: 10px 0 0 0;
    max-width: 520px;
}


/* ---------- Membership card ---------- */

.bplus-member__membership-card {
    background: linear-gradient(135deg, #2B3A67 0%, #1B2A50 100%);
    border-radius: 12px;
    padding: 20px;
    color: var(--bplus-white);
    position: relative;
    min-height: 160px;
}

.bplus-member__card-logo {
    height: 28px;
    width: auto;
    margin-bottom: 24px;
}

.bplus-member__card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bplus-member__card-name {
    font-family: var(--bplus-font);
    font-size: 18px;
    font-weight: 700;
}

.bplus-member__card-plan {
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.bplus-member__card-year {
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
}

.bplus-member__card-qr {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: var(--bplus-white);
    border-radius: 6px;
}

.bplus-member__card-expired-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 24, 0.78);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.bplus-member__card-expired-text {
    color: #ffffff;
    font-family: var(--bplus-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
    letter-spacing: 0.01em;
}

.bplus-member__renew-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    text-align: center;
}

.bplus-member__info-text {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #ECECEC;
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    line-height: 1.6;
}

.bplus-member__info-text p {
    margin-bottom: 8px;
}

.bplus-member__info-text p:last-child {
    margin-bottom: 0;
}


/* ---------- Benefits ---------- */

.bplus-member__benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bplus-member__benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bplus-white);
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s;
}

a.bplus-member__benefit-row:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bplus-member__benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #F0F2F8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bplus-primary);
}

.bplus-member__benefit-icon svg {
    width: 20px;
    height: 20px;
}

.bplus-member__benefit-text {
    font-family: var(--bplus-font);
    font-size: 13px;
    line-height: 1.5;
    color: var(--bplus-text-light);
}

.bplus-member__benefit-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--bplus-text);
    margin-bottom: 2px;
}


/* ---------- Status ---------- */

.bplus-member__status-grid {
    display: grid;
    gap: 8px;
}

.bplus-member__status-item {
    background: var(--bplus-white);
    border-radius: 10px;
    padding: 16px;
}

.bplus-member__status-label {
    display: block;
    font-family: var(--bplus-font);
    font-size: 12px;
    color: var(--bplus-text-light);
    margin-bottom: 4px;
}

.bplus-member__status-value {
    display: block;
    font-family: var(--bplus-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--bplus-text);
}

.bplus-member__status-value--active {
    color: #19784A;
}


/* ---------- No membership state ---------- */

.bplus-member__no-membership {
    text-align: center;
    padding: 80px 20px;
}

.bplus-member__no-membership .bplus-member__heading {
    margin-bottom: 12px;
}

.bplus-member__no-membership .bplus-member__text {
    font-family: var(--bplus-font);
    font-size: 15px;
    color: var(--bplus-text-light);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.bplus-member__app-links {
    display: flex;
    justify-content: center;
}

.bplus-member__app-btn {
    display: inline-block;
    width: auto;
    padding: 12px 32px;
    text-decoration: none;
}


/* ---------- Modal ---------- */

.bplus-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bplus-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.bplus-modal__dialog {
    position: relative;
    background: var(--bplus-white);
    border-radius: 16px;
    width: 90%;
    max-width: 460px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bplus-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bplus-modal__title {
    font-family: var(--bplus-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0;
}

.bplus-modal__close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--bplus-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.bplus-modal__close:hover {
    color: var(--bplus-text);
}

.bplus-modal__field {
    margin-bottom: 16px;
}

.bplus-modal__label {
    display: block;
    font-family: var(--bplus-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bplus-text);
    margin-bottom: 6px;
}

.bplus-modal__input {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text);
    border: 1.5px solid var(--bplus-border);
    border-radius: var(--bplus-radius-sm);
    outline: none;
    background: var(--bplus-white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bplus-modal__input:focus {
    border-color: var(--bplus-focus);
    box-shadow: 0 0 0 2px rgba(74, 87, 144, 0.15);
}

.bplus-modal__input:disabled {
    background: #F5F5F7;
    color: var(--bplus-text-light);
    cursor: not-allowed;
}

.bplus-modal__error {
    font-family: var(--bplus-font);
    font-size: 13px;
    color: var(--bplus-error);
    min-height: 18px;
    margin: 4px 0 0;
}

.bplus-modal__error:empty {
    display: none;
}

.bplus-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.bplus-member__cancel-btn {
    background: var(--bplus-white);
    color: var(--bplus-text);
    border: 1.5px solid var(--bplus-border);
    width: auto;
    padding: 10px 24px;
}

.bplus-member__cancel-btn:hover {
    background: #F0F0F0;
}

.bplus-member__save-btn {
    width: auto;
    padding: 10px 24px;
}


/* ==========================================================================
   UPSELL / MEMBER AREA LANDING PAGE
   ========================================================================== */

.bplus-member-area-page {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    font-family: var(--bplus-font);
    -webkit-font-smoothing: antialiased;
}

.bplus-member-area-page #primary,
.bplus-member-area-page .entry-content {
    width: 100%;
    max-width: none;
}

.bplus-upsell-page {
    background: #FFFFFF;
    color: var(--bplus-text);
}

.bplus-upsell__topbar {
    position: relative;
    z-index: 20;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bplus-upsell__topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bplus-upsell__logo img {
    height: 34px;
    width: auto;
    display: block;
}

.bplus-upsell__menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B1B1B;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bplus-upsell__utility-bar {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 25;
    pointer-events: none;
}

.bplus-upsell__utility-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
}

.bplus-upsell__account-menu {
    pointer-events: auto;
}

.bplus-upsell {
    margin: 0;
}


/* ---------- Hero ---------- */

.bplus-upsell__hero {
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    background-color: #1B2A50;
    overflow: hidden;
}

.bplus-upsell__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 18, 25, 0.78) 0%, rgba(15, 18, 25, 0.52) 40%, rgba(15, 18, 25, 0.18) 100%);
}

.bplus-upsell__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    min-height: 560px;
    margin: 0 auto;
    padding: 96px 24px 72px;
    display: grid;
    gap: 32px;
    align-items: end;
}

.bplus-upsell__hero-content {
    max-width: 520px;
    color: var(--bplus-white);
}

.bplus-upsell__title {
    font-family: var(--bplus-font);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
    color: var(--bplus-white);
    margin: 0 0 16px;
}

.bplus-upsell__title em {
    font-style: italic;
    color: #7BC68F;
}

.bplus-upsell__subtitle {
    font-family: var(--bplus-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.bplus-upsell__hero-card {
    width: min(100%, 290px);
    justify-self: end;
    background: #B8FFF0;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(6, 16, 34, 0.22);
    padding: 8px;
    color: #13233C;
}

.bplus-upsell__hero-card-eyebrow {
    margin: 0;
    padding: 10px 12px 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #25526B;
}

.bplus-upsell__hero-card-body {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px 18px 16px;
    text-align: center;
}

.bplus-upsell__hero-card-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: #516072;
}

.bplus-upsell__price {
    margin-bottom: 8px;
}

.bplus-upsell__price-amount {
    font-family: var(--bplus-font);
    font-size: 54px;
    font-weight: 800;
    color: #4A5790;
    line-height: 1;
}

.bplus-upsell__hero-card-note {
    margin: 0 0 14px;
    font-size: 12px;
    color: #7B8390;
}

.bplus-upsell__hero-qr {
    width: 118px;
    height: 118px;
    margin: 0 auto 14px;
    border: 2px solid #E8EDF5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F9FC;
}

.bplus-upsell__hero-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bplus-upsell__hero-qr-placeholder {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, #D8E0ED 25%, transparent 25%),
        linear-gradient(-45deg, #D8E0ED 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #D8E0ED 75%),
        linear-gradient(-45deg, transparent 75%, #D8E0ED 75%);
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0;
    background-color: #F3F6FB;
}

.bplus-upsell__hero-card-footnote {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #7B8390;
}

@media (min-width: 768px) {
    .bplus-upsell__hero {
        min-height: 520px;
    }

    .bplus-upsell__hero-inner {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .bplus-upsell__title {
        font-size: 44px;
    }
}


/* ---------- Benefits section ---------- */

.bplus-upsell__benefits {
    background: var(--bplus-white);
    padding: 70px 20px 80px;
    text-align: center;
}

.bplus-upsell__section-title {
    font-family: var(--bplus-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--bplus-text);
    margin: 0 0 10px;
}

.bplus-upsell__section-text {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    margin: 0 auto 36px;
    line-height: 1.6;
    max-width: 560px;
}

.bplus-upsell__benefits-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.bplus-upsell__benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #F3F5F8;
    border-radius: 16px;
    text-align: left;
    min-height: 148px;
}

.bplus-upsell__benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0;
    background: #E8EAF9;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bplus-primary);
    flex-shrink: 0;
}

.bplus-upsell__benefit-copy {
    flex: 1;
    text-align: left;
}

.bplus-upsell__benefit-card h3 {
    font-family: var(--bplus-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--bplus-text);
    margin: 0 0 10px;
    line-height: 1.25;
}

.bplus-upsell__benefit-card p {
    font-family: var(--bplus-font);
    font-size: 13px;
    color: var(--bplus-text-light);
    line-height: 1.5;
    margin: 0;
}


/* ---------- Download / QR section ---------- */

.bplus-upsell__download {
    background: #F5F5F7;
    padding: 70px 20px;
}

.bplus-upsell__download > .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bplus-upsell__download .bplus-upsell__section-title,
.bplus-upsell__download .bplus-upsell__section-text {
    text-align: left;
    margin-left: 0;
}

.bplus-upsell__store-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 260px;
    margin-top: 28px;
}

.bplus-upsell__store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 350px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #FFFFFF;
    color: #121212;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.bplus-upsell__store-button:hover {
    color: #121212;
    text-decoration: none;
}

.bplus-upsell__store-button--dark {
    background: #22252B;
    color: #FFFFFF;
}

.bplus-upsell__store-button--dark:hover {
    color: #FFFFFF;
}

.bplus-upsell__store-button--disabled {
    opacity: 0.55;
    pointer-events: none;
}

.bplus-upsell__google-g {
    flex-shrink: 0;
    display: block;
}

.bplus-upsell__phone-mockup {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.bplus-upsell__phone-shell {
    position: relative;
    width: 245px;
    height: 500px;
    border: 5px solid #111111;
    border-radius: 34px;
    background: #111111;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    padding: 14px 10px 12px;
}

.bplus-upsell__phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    background: #111111;
    z-index: 2;
}

.bplus-upsell__phone-screen {
    height: 100%;
    border-radius: 26px;
    background: linear-gradient(180deg, #F7F8FC 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 56px 16px 16px;
}

.bplus-upsell__phone-card {
    background: #4A5790;
    color: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
}

.bplus-upsell__phone-card-top {
    background: #FFFFFF;
    padding: 10px 12px;
}

.bplus-upsell__phone-card-top img {
    height: 20px;
    width: auto;
    display: block;
}

.bplus-upsell__phone-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
}

.bplus-upsell__phone-card-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
    line-height: 1.35;
}

.bplus-upsell__phone-card-copy strong {
    font-size: 14px;
}

.bplus-upsell__phone-card-qr {
    width: 72px;
    height: 72px;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.bplus-upsell__phone-card-qr img,
.bplus-upsell__phone-card-qr .bplus-upsell__hero-qr-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}


/* ---------- FAQ section ---------- */

.bplus-upsell__faq {
    background: var(--bplus-white);
    padding: 72px 20px;
}

.bplus-upsell__faq .bplus-upsell__section-title {
    text-align: center;
    margin-bottom: 28px;
}

.bplus-upsell__faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.bplus-upsell__faq-item {
    border-bottom: 1px solid #ECECEC;
}

.bplus-upsell__faq-item summary {
    font-family: var(--bplus-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--bplus-text);
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bplus-upsell__faq-item summary::-webkit-details-marker {
    display: none;
}

.bplus-upsell__faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--bplus-text-light);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.bplus-upsell__faq-item[open] summary::after {
    content: '\2212';
}

.bplus-upsell__faq-item p {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    line-height: 1.6;
    padding: 0 0 16px;
    margin: 0;
}

.bplus-upsell__footer {
    background: #F8F8FA;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bplus-upsell__footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bplus-upsell__footer-inner img {
    height: 28px;
    width: auto;
    display: block;
}

.bplus-upsell__footer-inner p {
    margin: 0;
    font-size: 12px;
    color: var(--bplus-text-light);
}

@media (max-width: 767px) {
    .bplus-account-menu-row {
        margin-bottom: 16px;
    }

    .bplus-upsell__utility-bar {
        position: static;
        padding: 12px 0 0;
        background: #FFFFFF;
    }

    .bplus-upsell__hero {
        min-height: auto;
    }

    .bplus-upsell__hero-inner {
        min-height: auto;
        padding: 48px 20px 32px;
    }

    .bplus-upsell__hero-card {
        justify-self: start;
    }

    .bplus-upsell__title {
        font-size: 32px;
    }

    .bplus-radio__account-menu {
        width: 100%;
    }

    .bplus-radio__dropdown {
        width: min(220px, 100%);
    }

    .bplus-upsell__benefit-card {
        min-height: auto;
    }

    .bplus-upsell__download .six.columns {
        width: 100%;
    }

    .bplus-upsell__footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ---------- Standalone CTA card section (replaces hero) ---------- */

.bplus-upsell__cta-section {
    background: #F5F5F7;
    padding: 48px 20px 56px;
    text-align: center;
}

.bplus-upsell__hero-card--standalone {
    justify-self: right;
    width: min(100%, 320px);
}

.bplus-upsell__store-badges--centered {
    align-items: center;
    margin: 18px auto 0;
    max-width: 240px;
}

.bplus-upsell__store-badges--cta-mobile {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin: 16px auto 0;
    max-width: 260px;
    width: 100%;
}

/* ---------- QR image display in the download section ---------- */

.bplus-upsell__qr-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.bplus-upsell__qr-img {
    max-width: 220px;
    height: auto;
    border: 2px solid #E8EDF5;
    border-radius: 12px;
    padding: 12px;
    background: #FFFFFF;
    display: block;
}

.bplus-upsell__qr-placeholder--large {
    width: 150px;
    height: 150px;
    border: 2px solid #E8EDF5;
    border-radius: 12px;
    background-color: #F7F9FC;
    background-image:
        linear-gradient(45deg, #D8E0ED 25%, transparent 25%),
        linear-gradient(-45deg, #D8E0ED 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #D8E0ED 75%),
        linear-gradient(-45deg, transparent 75%, #D8E0ED 75%);
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

/* ---------- Download section content (the_content() output) ---------- */

.bplus-upsell__download-content {
    font-family: var(--bplus-font);
    font-size: 14px;
    color: var(--bplus-text-light);
    line-height: 1.6;
    margin-top: 16px;
}

.bplus-upsell__download-content p {
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .bplus-upsell__cta-section {
        padding: 32px 20px 40px;
    }

    .bplus-upsell__store-badges {
        margin-bottom: 16px;
    }

    .bplus-upsell__store-button {
        width: 100%;
    }

    .bplus-upsell__download .six.columns,
    .bplus-upsell__download .six.columns + .six.columns {
        width: 100%;
    }

    .bplus-upsell__qr-display {
        padding: 16px;
    }

    .bplus-upsell__qr-display--desktop-only {
        display: none !important;
    }

    .bplus-upsell__store-badges--download-column {
        display: none !important;
    }

    .bplus-upsell__store-badges--cta-mobile {
        display: flex;
        align-items: stretch;
    }
}
