/* ═══════════════════════════════
   SMR Web Booking Form — Pricing & Payment Overrides
   ═══════════════════════════════ */

/* ── Package price tags ── */
.smr-web-price-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #E8602C;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}
.smr-web-priced .smr-package-inner {
    position: relative;
}

/* ── Add-on price badge ── */
.smr-web-addon-price {
    font-size: 14px;
    font-weight: 700;
    color: #E8602C;
    white-space: nowrap;
    padding-right: 4px;
    min-width: 70px;
    text-align: right;
}

.smr-addon-item {
    display: flex;
    align-items: center;
}

/* ── Running total bar ── */
.smr-web-running-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-family: 'Poppins', Arial, sans-serif;
}
.smr-web-running-total span:first-child {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.smr-web-running-total span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: #E8602C;
}

/* ── Seabrook Island checkbox ── */
.smr-seabrook-box {
    background: #fff8f5;
    border: 2px solid #E8602C;
    border-radius: 8px;
    padding: 14px 18px;
}
.smr-seabrook-box .smr-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}
.smr-seabrook-price {
    color: #E8602C;
    font-weight: 700;
}

/* ── Price breakdown on review ── */
.smr-web-price-breakdown {
    margin-top: 16px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px 20px;
}
.smr-web-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}
.smr-web-price-row span:last-child {
    font-weight: 600;
    color: #1a1a1a;
}
.smr-web-price-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    border-top: 2px solid #1a1a1a;
    margin-top: 4px;
}
.smr-web-price-total span:last-child {
    color: #E8602C;
}

/* ── Payment step total box ── */
.smr-web-pay-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.smr-web-pay-total-box span:first-child {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.smr-web-pay-total-box span:last-child {
    font-size: 24px;
    font-weight: 800;
    color: #E8602C;
}

/* ── Secure badge ── */
#smr-web-app .smr-pay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#smr-web-app .smr-pay-secure svg {
    width: 12px;
    height: 12px;
    fill: #aaa;
}

/* ── Stripe card element ── */
#smr-web-stripe-card {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s;
    min-height: 24px;
}
#smr-web-stripe-card:focus-within,
#smr-web-stripe-card.StripeElement--focus {
    border-color: #E8602C;
}
#smr-web-stripe-card iframe {
    display: block !important;
    width: 100% !important;
    min-height: 24px !important;
}
#smr-web-stripe-errors {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
}

/* ── Matterport sqft field inside web form ── */
.smr-web-matterport-sqft {
    padding: 8px 0 0 42px;
}
.smr-web-matterport-sqft label {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 4px;
}
.smr-web-matterport-sqft input {
    width: 100%;
    max-width: 240px;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}
