/* MBS Membership Styles */

.mbs-membership-teaser {
    background: #fbf9f4;
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    text-align: center;
    margin: 2rem 0;
}

.teaser-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mbs-membership-teaser h3 {
    margin: 0 0 1rem;
    color: var(--color-accent-gold, #D4AF37);
}

.mbs-membership-teaser p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.btn-join {
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

/* Pricing Table */
.mbs-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--color-accent-gold, #D4AF37);
    transform: scale(1.05);
    background: #fffcf5;
}

/* AJAX Responses */
.mbsm-success, .mbs-newsletter-response.mbsm-success {
    color: #27ae60;
    margin-top: 10px;
    font-weight: 600;
}

.mbsm-error, .mbs-newsletter-response.mbsm-error {
    color: #e74c3c;
    margin-top: 10px;
    font-weight: 600;
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tier-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #333;
}

.price span {
    font-size: 1rem;
    color: #aaa;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    color: #555;
}

.features li::before {
    content: "✓";
    color: var(--color-accent-gold, #D4AF37);
    margin-right: 10px;
    font-weight: 700;
}

.btn-tier {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-tier.gold {
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
}

.btn-tier:hover {
    filter: brightness(0.9);
}
