/* Simple Meditation Memberships */

.smm-wrap {
    max-width: 1100px;
    margin: 32px auto;
}

.smm-heading {
    text-align: center;
    margin-bottom: 28px;
}

.smm-heading h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.smm-heading p {
    font-size: 17px;
    color: #555;
}

.smm-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.smm-plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9dfd2;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(75, 55, 35, 0.08);
}

.smm-featured {
    border-color: #7f9f77;
}

.smm-badge {
    display: inline-block;
    background: #edf7ee;
    color: #4f744f;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.smm-plan-card h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.smm-price {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
}

.smm-description {
    color: #555;
    line-height: 1.6;
    min-height: 50px;
}

.smm-discount {
    display: inline-block;
    background: #f8f1e9;
    color: #785c3c;
    border-radius: 12px;
    padding: 9px 12px;
    font-weight: 700;
}

.smm-signup-form {
    margin-top: 22px;
}

.smm-signup-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 14px;
}

.smm-signup-form input {
    display: block;
    width: 100%;
    border: 1px solid #dacfc0;
    border-radius: 14px;
    padding: 12px 13px;
    margin-top: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.smm-button {
    display: inline-block;
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #6f8f72;
    color: #fff;
    padding: 14px 18px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

.smm-button:hover {
    opacity: 0.92;
}

.smm-button:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.smm-notice,
.smm-success-box {
    border-radius: 18px;
    padding: 22px;
    margin: 24px 0;
}

.smm-error {
    background: #fdeeee;
    color: #8a2f2f;
}

.smm-success-box {
    background: #eff8ef;
    color: #345d38;
    text-align: center;
}

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

    .smm-heading h2 {
        font-size: 28px;
    }

    .smm-plan-card {
        padding: 22px;
    }
}
