input[name="request_physical_card"] + label {
    white-space: nowrap;
}


.cm-membership-page {
    max-width: 1250px;
    margin: 0 auto;
    color: #15294b;
}

.cm-membership-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cm-membership-heading h1 {
    font-size: 28px;
    margin: 0 0 5px;
    font-weight: 700;
}

.cm-membership-heading p {
    margin: 0;
    color: #666;
}

.cm-membership-id {
    background: #f3f7fb;
    padding: 12px 20px;
    border-radius: 6px;
}

.cm-membership-id span,
.cm-membership-id strong {
    display: block;
}

.cm-membership-top,
.cm-membership-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}


/* CURRENT PLAN */

.cm-current-plan {
    border: 1px solid #e5b93f;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.cm-plan-main {
    min-height: 180px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(
        135deg,
        #ffe28b 0%,
        #d9ba5d 100%
    );
}

.cm-plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-plan-icon i {
    font-size: 45px;
    color: white;
}

.cm-plan-main h2 {
    margin: 4px 0;
    font-size: 34px;
    color: #111;
}

.cm-active {
    display: inline-block;
    background: #edfcef;
    color: #3b9c52;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.cm-plan-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
    background: #fff9eb;
}

.cm-plan-info > div {
    padding: 0 15px;
    border-right: 1px solid #ddd;
}

.cm-plan-info > div:last-child {
    border-right: none;
}

.cm-plan-info span,
.cm-plan-info strong {
    display: block;
}

.cm-plan-info span {
    font-size: 12px;
    color: #777;
}

.cm-plan-actions {
    display: flex;
    gap: 12px;
    padding: 20px;
}

.cm-plan-actions form {
    margin: 0;
}

.cm-plan-actions .btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cm-btn-primary {
    background: #0474d9;
    color: white;
}

.cm-btn-outline {
    border: 1px solid #0474d9;
    color: #0474d9;
    background: white;
}

.cm-btn-danger {
    border: 1px solid #ff5454;
    color: #ff5454;
    background: white;
}


/* OTHER PLANS */

.cm-other-plans,
.cm-benefits,
.cm-physical-card {
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    background: #fafbfc;
    padding: 22px;
}

.cm-section-heading h3 {
    margin: 0;
}

.cm-section-heading p {
    font-size: 12px;
    color: #777;
}

.cm-other-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.cm-small-plan {
    background: white;
    border: 1px solid #e3e6ea;
    border-radius: 6px;
    padding: 20px;
}

.cm-small-plan h3 {
    margin: 0;
    font-size: 20px;
}

.cm-small-plan p {
    color: #777;
}

.cm-small-plan ul {
    padding: 0;
    list-style: none;
    line-height: 2;
    font-size: 13px;
}

.cm-small-plan-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #0059a9;
    text-align: center;
    border-radius: 4px;
    background: white;
    color: #0059a9;
}

button.cm-small-plan-btn {
    cursor: pointer;
}

.cm-dark-btn {
    background: #003c7e;
    color: white;
}


/* BENEFITS */

.cm-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.cm-benefit {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 12px;
    background: white;
    border-radius: 5px;
    font-size: 12px;
}

.cm-benefit strong {
    color: #3dbb63;
}

.cm-unlock-platinum {
    background: #003b78;
    color: white;
    padding: 18px;
    margin: 20px -22px -22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cm-unlock-platinum strong,
.cm-unlock-platinum span {
    display: block;
}


/* PHYSICAL CARD */

.cm-physical-card {
    position: relative;
}

.cm-physical-content {
    max-width: 55%;
}

.cm-apply-card {
    display: inline-block;
    margin-top: 15px;
    background: #0069c7;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
}

.cm-card-preview {
    position: absolute;
    right: 25px;
    top: 55px;
    width: 190px;
    height: 115px;
    border-radius: 8px;
    padding: 18px;
    background: #004cb8;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cm-card-preview strong {
    font-size: 11px;
}

.cm-card-preview small {
    color: #ffd633;
}

.cm-collect-store {
    margin-top: 35px;
    background: #f0f6fb;
    border-radius: 5px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cm-collect-store div {
    flex: 1;
}

.cm-collect-store strong,
.cm-collect-store span {
    display: block;
}


/* HELP */

.cm-help-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: #f3f7fb;
    padding: 15px 25px;
    border-radius: 6px;
}

.cm-help-bar strong,
.cm-help-bar span {
    display: block;
}

.cm-help-bar strong {
    color: #0068bf;
    font-size: 12px;
}

.cm-help-bar span {
    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .cm-membership-top,
    .cm-membership-bottom {
        grid-template-columns: 1fr;
    }

    .cm-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cm-help-bar {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .cm-membership-heading {
        display: block;
    }

    .cm-membership-id {
        margin-top: 15px;
    }

    .cm-plan-main {
        padding: 20px;
    }

    .cm-plan-info {
        grid-template-columns: 1fr;
    }

    .cm-plan-info > div {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .cm-plan-actions {
        flex-direction: column;
    }

    .cm-plan-actions form,
    .cm-plan-actions .btn {
        width: 100%;
    }

    .cm-other-plan-grid {
        grid-template-columns: 1fr;
    }

    .cm-benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cm-physical-content {
        max-width: 100%;
    }

    .cm-card-preview {
        position: relative;
        right: auto;
        top: auto;
        margin: 25px auto;
    }

    .cm-help-bar {
        grid-template-columns: 1fr;
    }
}