/* ============================================================
   Wellness Pricing Tiers — Elementor Widget Stylesheet
   ============================================================ */

/* ── Wrapper ── */
.wp-pricing-wrap {
    font-family: inherit;
    box-sizing: border-box;
}

*, *::before, *::after { box-sizing: inherit; }

/* ── Header ── */
.wp-pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wp-pricing-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.wp-pricing-subheading {
    color: #555;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.wp-pricing-availability {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    background: #fff8ec;
    border: 1px solid #f0d98e;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: #7a5700;
    max-width: 680px;
    text-align: left;
    margin: 0 auto;
}

.wp-avail-icon { flex-shrink: 0; font-size: 1rem; line-height: 1.5; }

/* ── Grid ── */
.wp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: start;
}

/* ── Card ── */
.wp-tier {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.2s ease;
}

.wp-tier:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Featured card */
.wp-tier--featured {
    border: 2px solid var(--accent, #3b6b5a);
    box-shadow: 0 4px 20px rgba(59,107,90,0.12);
}

/* ── Tier label / badge ── */
.wp-tier__tier-label {
    display: inline-block;
    background: #f2f2f2;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 0.9rem;
}

.wp-tier__badge {
    display: inline-block;
    background: var(--badge-bg, #e6f0ec);
    color: var(--badge-tx, #1f5c43);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 12px;
    border-radius: 99px;
    margin-bottom: 0.9rem;
}

/* ── Name & subtitle ── */
.wp-tier__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
    line-height: 1.25;
}

.wp-tier__sub {
    font-size: 0.875rem;
    color: #777;
    margin: 0 0 1rem;
}

/* ── Price block ── */
.wp-tier__price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 0.3rem;
}

.wp-tier__amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.wp-tier__mo {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.wp-tier__value {
    font-size: 0.82rem;
    color: var(--accent, #3b6b5a);
    font-weight: 500;
    margin: 0;
}

/* ── Divider ── */
.wp-tier__divider {
    height: 1px;
    background: #ebebeb;
    margin: 1.25rem 0;
}

/* ── Services label ── */
.wp-tier__services-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #999;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

/* ── Feature list ── */
.wp-tier__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.wp-tier__features li {
    font-size: 0.9rem;
    color: #333;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.45;
}

.wp-tier__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--accent, #3b6b5a);
    border-bottom: 2px solid var(--accent, #3b6b5a);
    transform: rotate(-45deg);
}

/* ── Disclaimer ── */
.wp-tier__disclaimer {
    font-size: 0.78rem;
    color: #888;
    margin: 0 0 1rem;
    line-height: 1.5;
    border-top: 1px dashed #e5e5e5;
    padding-top: 0.75rem;
}

/* ── Best for ── */
.wp-tier__best {
    font-size: 0.85rem;
    color: #555;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.wp-tier__best strong {
    color: #333;
}

/* ── CTA button ── */
.wp-tier__cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--accent, #3b6b5a);
    color: #ffffff;
    transition: opacity 0.15s ease, transform 0.12s ease;
    margin-top: auto;
}

.wp-tier__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

.wp-tier__cta:active {
    transform: scale(0.98);
}

/* Featured card CTA gets a slightly deeper shade via filter */
.wp-tier--featured .wp-tier__cta {
    box-shadow: 0 4px 14px rgba(59,107,90,0.3);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .wp-pricing-grid {
        grid-template-columns: 1fr;
    }
    .wp-tier__amount {
        font-size: 2rem;
    }
}
