/**
 * Frontend Pricing Page Styles
 *
 * Matches the Figma "Pricing Page" design: card grid with header,
 * billing toggle, feature lists, and CTA buttons.
 *
 * @package BuddyBoss Membership
 */

/* ── Container ──────────────────────────────────────────────── */

.bbms-pricing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ── Header ─────────────────────────────────────────────────── */

.bbms-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.bbms-pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.3;
}

.bbms-pricing-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Tabs ───────────────────────────────────────────────────── */

.bbms-pricing-page .bbms-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
}

.bbms-pricing-page button.bbms-pricing-tab {
    background: none !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    margin-bottom: -2px;
    padding: 10px 24px !important;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280 !important;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
    box-shadow: none !important;
    outline: none !important;
}

.bbms-pricing-page button.bbms-pricing-tab:hover {
    color: #374151 !important;
    background: none !important;
}

.bbms-pricing-page button.bbms-pricing-tab.bbms-pricing-tab--active {
    color: #6c5ce7 !important;
    border-bottom-color: #6c5ce7 !important;
    background: none !important;
}

.bbms-pricing-page .bbms-pricing-tab-content {
    display: none;
}

.bbms-pricing-page .bbms-pricing-tab-content.bbms-pricing-tab-content--active {
    display: block;
}

/* ── Card Grid ──────────────────────────────────────────────── */

.bbms-pricing-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}

.bbms-pricing-cols-1 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
.bbms-pricing-cols-2 { grid-template-columns: repeat(2, 1fr); }
.bbms-pricing-cols-3 { grid-template-columns: repeat(3, 1fr); }
.bbms-pricing-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Card ───────────────────────────────────────────────────── */

.bbms-pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: visible;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bbms-pricing-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.bbms-pricing-card--highlighted {
    border-color: #6c5ce7;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.15);
}

.bbms-pricing-card-body {
    padding: 32px 24px;
}

/* ── Badge ──────────────────────────────────────────────────── */

.bbms-pricing-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #6c5ce7;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* ── Card Head ──────────────────────────────────────────────── */

.bbms-pricing-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.bbms-pricing-card-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    min-height: 40px;
}

/* ── Price ───────────────────────────────────────────────────── */

.bbms-pricing-card-price {
    padding: 20px 0;
    border-top: 1px solid #f3f4f6;
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.bbms-pricing-amount {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.bbms-pricing-term {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
}

.bbms-pricing-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    width: 100%;
}

/* ── Actions ────────────────────────────────────────────────── */

.bbms-pricing-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.bbms-pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
    line-height: 1.4;
}

.bbms-pricing-btn--primary {
    background: #6c5ce7;
    color: #fff;
    border: 2px solid #6c5ce7;
}

.bbms-pricing-btn--primary:hover {
    background: #5a4bd1;
    border-color: #5a4bd1;
    color: #fff;
}

.bbms-pricing-btn--outline {
    background: #fff;
    color: #6c5ce7;
    border: 2px solid #6c5ce7;
}

.bbms-pricing-btn--outline:hover {
    background: #f5f3ff;
    color: #5a4bd1;
    border-color: #5a4bd1;
}

/* ── Features List ──────────────────────────────────────────── */

.bbms-pricing-features {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.bbms-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.bbms-pricing-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b7280;
    margin-top: 2px;
}

.bbms-pricing-card--highlighted .bbms-pricing-check {
    color: #6c5ce7;
}

/* ── Card Footer Text ───────────────────────────────────────── */

.bbms-pricing-card-footer {
    font-size: 13px;
    color: #9ca3af;
    margin: 16px 0 0;
    line-height: 1.5;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

/* ── Footer ─────────────────────────────────────────────────── */

.bbms-pricing-footer {
    text-align: center;
    margin-top: 32px;
    padding: 16px 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.bbms-pricing-footer p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 900px) {
    .bbms-pricing-cols-3,
    .bbms-pricing-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bbms-pricing-cols-2,
    .bbms-pricing-cols-3,
    .bbms-pricing-cols-4 {
        grid-template-columns: 1fr;
    }

    .bbms-pricing-title {
        font-size: 22px;
    }

    .bbms-pricing-amount {
        font-size: 28px;
    }

    .bbms-pricing-card-body {
        padding: 24px 20px;
    }
}
