/* CI-1966 — shekel "Set price / You pay today" two-box price display. */
.shekel-price-box {
    display: inline-flex;
    border: 1px solid #d9dde3;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0 6px;
    vertical-align: top;
}
.shekel-price-box__cell {
    padding: 10px 20px;
}
.shekel-price-box__cell--set {
    border-right: 1px solid #e3e7ec;
}
.shekel-price-box__cell--pay {
    background: #fff5ef;
}
.shekel-price-box__label {
    display: block;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #8a93a2;
    margin-bottom: 3px;
    white-space: nowrap;
}
.shekel-price-box__value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #1b2433;
    white-space: nowrap;
}
.shekel-price-box__cell--pay .shekel-price-box__value {
    color: #e8590c;
}
.shekel-price-box__suffix {
    font-size: 14px;
    font-weight: 600;
    color: #8a93a2;
}
.shekel-price-note-line {
    font-size: 13px;
    color: #5a6573;
    margin: 2px 0 12px;
}
.shekel-price-note-line a {
    text-decoration: underline;
    cursor: pointer;
}
/* Help content lives hidden until opened in the overlay. */
.shekel-billing-help { display: none; }
.shekel-billing-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(15, 23, 35, .55);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.shekel-billing-dialog {
    position: relative; background: #fff; border-radius: 10px;
    max-width: 460px; width: 100%; padding: 24px 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.shekel-billing-title { margin: 0 0 10px; font-size: 18px; }
.shekel-billing-body { font-size: 14px; line-height: 1.55; color: #2b3543; }
.shekel-billing-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: 0; font-size: 24px; line-height: 1;
    color: #8a93a2; cursor: pointer; padding: 4px;
}
/* Bundle summary "what you'll be charged (USD)" block. */
.bundle-summary-usd {
    margin-top: 14px; padding: 14px 16px;
    background: #fff5ef; border: 1px solid #ffd9c2; border-radius: 8px;
}
.bundle-summary-usd__row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 4px;
}
.bundle-summary-usd__row .label { color: #5a6573; font-size: 13px; }
.bundle-summary-usd__row .value { font-size: 20px; font-weight: 700; color: #e8590c; }
.bundle-summary-usd__row .suffix { font-size: 13px; font-weight: 600; color: #8a93a2; }
.bundle-summary-usd__note { margin-top: 8px; font-size: 12px; color: #5a6573; }
.bundle-summary-usd__note a { text-decoration: underline; cursor: pointer; }
