/* Shared plan-card component used by /pricing/ and /billing/choose-plan/. */
.pricing-cards-shell #plan-switcher {
    margin-bottom: 32px !important;
}

.pricing-cards-shell #plan-switcher .nav-tabs {
    display: inline-flex !important;
    background: var(--grey-100);
    border-radius: 100px;
    padding: 4px;
    border: none !important;
    gap: 4px;
}

.pricing-cards-shell #plan-switcher .nav-item {
    margin: 0 !important;
}

.pricing-cards-shell #plan-switcher .nav-link {
    border: none !important;
    border-radius: 100px !important;
    padding: 8px 24px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--grey-600) !important;
    background: transparent !important;
    transition: all 0.2s ease;
}

.pricing-cards-shell #plan-switcher .nav-link.active {
    background: #fff !important;
    color: var(--brand-500) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
}

.pricing-cards-shell #pricing-cards {
    gap: 12px;
    align-items: stretch;
}

.pricing-cards-shell #pricing-cards .card.pricing-card {
    border: 1.5px solid var(--grey-200) !important;
    border-radius: 2rem !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: box-shadow 0.2s ease;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
}

.pricing-cards-shell .pricing-card:hover {
    box-shadow: 0 8px 24px rgba(10, 38, 71, 0.08) !important;
}

.pricing-cards-shell .pricing-card--popular {
    border-color: var(--brand-300) !important;
    box-shadow: 0 16px 56px rgba(10, 38, 71, 0.20) !important;
    transform: translateY(-10px);
}

.pricing-cards-shell .pricing-card--popular:hover {
    box-shadow: 0 20px 64px rgba(10, 38, 71, 0.24) !important;
}

.pricing-cards-shell .pricing-card--standard {
    background: #FAFBFD !important;
}

.pricing-cards-shell .pricing-card--standard .heading-2 {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 44px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.02em;
}

.pricing-cards-shell .pricing-card .heading-3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.pricing-cards-shell .pricing-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.pricing-cards-shell .pricing-card__header {
    background: var(--brand-500);
    padding: 28px 28px 24px;
}

.pricing-cards-shell .pricing-card__popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-100);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.pricing-cards-shell .pricing-card__popular-badge::before {
    content: '★';
    color: #FCD34D;
    font-size: 13px;
}

.pricing-cards-shell .pricing-card__title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: 40px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.03em;
    line-height: 1.1 !important;
}

.pricing-cards-shell .pricing-card__subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.pricing-cards-shell .pricing-card__stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-cards-shell .pricing-card__stars .text-warning {
    color: #FCD34D !important;
}

.pricing-cards-shell .pricing-card__reviews-link {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 12px;
    text-decoration: none;
}

.pricing-cards-shell .pricing-card__reviews-link:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

.pricing-cards-shell .pricing-card__header .heading-3 {
    color: #fff !important;
}

.pricing-cards-shell .pricing-card__header .price-type {
    color: rgba(255, 255, 255, 0.55) !important;
}

.pricing-cards-shell .pricing-card__header .text-success {
    color: #6EE7B7 !important;
}

.pricing-cards-shell .pricing-card__header .text-muted,
.pricing-cards-shell .pricing-card__header small {
    color: rgba(255, 255, 255, 0.45) !important;
}

.pricing-cards-shell .pricing-card__header .btn-base-1 {
    background-color: #fff !important;
    color: var(--brand-500) !important;
    border-color: #fff !important;
    font-weight: 700 !important;
}

.pricing-cards-shell .pricing-card__header .btn-base-1:hover {
    background-color: var(--brand-50) !important;
    color: var(--brand-500) !important;
}

.pricing-cards-shell .pricing-card__body {
    padding: 22px 28px 28px;
}

.pricing-cards-shell .pricing-card__includes {
    font-size: 13.5px;
    color: var(--grey-700);
    line-height: 1.9;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-100);
}

.pricing-cards-shell .pricing-card__includes .c-base-1 {
    color: var(--green) !important;
}

.pricing-cards-shell .pricing-card__features-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 8px;
}

.pricing-cards-shell .pricing-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-cards-shell .pricing-chip {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--grey-700);
    line-height: 1.4;
}

.pricing-cards-shell .pricing-chip__icon {
    color: var(--brand-300);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 13px;
    width: 15px;
    text-align: center;
}

.pricing-cards-shell .pricing-chip__label {
    flex: 1;
}

.pricing-cards-shell .pricing-chip__soon {
    font-style: italic;
    color: var(--grey-400);
    font-size: 11px;
}

.pricing-cards-shell .pricing-card-compare-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--grey-400);
    text-decoration: none;
    transition: color 0.15s;
}

.pricing-cards-shell .pricing-card-compare-link:hover {
    color: var(--brand-300);
    text-decoration: none;
}

@media (max-width: 767px) {
    .pricing-cards-shell .pricing-card--popular {
        transform: none;
    }
}
