/* =====================================================
   BookedUp Benefits — Front-end styles
   ===================================================== */

/* Locked plan option */
.bub-locked {
    opacity: .55;
    cursor: not-allowed !important;
    background: #fafafa !important;
}
.bub-locked input[type="radio"] {
    cursor: not-allowed !important;
    accent-color: #ccc !important;
}
.bub-locked .bum-plan-name,
.bub-locked .bum-plan-label { color: #aaa !important; }

.bub-lock-label {
    display: block;
    font-size: 11px;
    color: #b07090;
    font-weight: 600;
    margin-top: 2px;
}

.bub-price-dim { color: #ccc !important; }

/* Restricted notice */
.bub-restricted-notice {
    background: #fff8f0;
    border: 1.5px solid #f5c090;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #8a4000;
    margin-bottom: 12px;
    line-height: 1.5;
}
.bub-restricted-icon { font-size: 15px; }

/* Feedback booster notice */
.bub-booster-notice {
    background: #f5f0ff;
    border: 1.5px solid #c8a8f8;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: #5a2090;
    margin-top: 8px;
    font-weight: 600;
}

/* ── Tier pricing display on plan rows ─────────────── */

/* Crossed-out regular price — small, muted, strikethrough */
.bub-regular-price {
    display: inline-block;
    font-size: 11px !important;
    color: #aaa !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
    margin-right: 4px;
    vertical-align: middle;
}

/* Savings badge — green pill */
.bub-save-label {
    display: inline-block;
    background: #E8FAF0;
    color: #1a6640;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    border: 1px solid #a7f3d0;
    margin-left: 4px;
    vertical-align: middle;
    white-space: nowrap;
}

/* Tier active badge next to heading */
.bub-tier-active-badge {
    font-size: 11px;
    font-weight: 600;
    color: #b07090;
    background: #FDE8EF;
    padding: 2px 9px;
    border-radius: 20px;
    border: 1px solid #e8a0b8;
    margin-left: 6px;
    vertical-align: middle;
}

/* Plan price column layout — price stacked vertically */
.bum-plan-price {
    text-align: right;
    min-width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.bum-plan-price strong {
    font-size: 15px;
    font-weight: 700;
    color: #c0392b;
    line-height: 1.2;
}
.bum-plan-price small {
    font-size: 11px;
    color: #999;
    font-weight: normal;
    display: block;
}
.bum-plan-price .bub-save-label {
    display: block;
    text-align: right;
    margin: 2px 0 0;
    align-self: flex-end;
}
