/* =========================================================
   WP Hotel Booking – Deposit Payment Plugin  v2.7.1
   assets/deposit.css
   ========================================================= */

/* ── Room page: deposit notice below booking form ────────── */

.wphb-deposit-wrap {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.wphb-deposit-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.6;
}

.wphb-deposit-notice .wphb-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Deposit (amber) */
.wphb-deposit-notice.wphb-notice--deposit {
    background: #fffbef;
    border-left: 4px solid #e6a817;
    color: #5c3d00;
}

/* Full payment (slate-red) */
.wphb-deposit-notice.wphb-notice--full {
    background: #fff5f5;
    border-left: 4px solid #c0392b;
    color: #6b1111;
}

.wphb-deposit-sub {
    margin: 0;
    padding: 9px 16px 12px 46px;
    font-size: 12px;
    color: #999;
    font-style: italic;
    background: rgba(0,0,0,.025);
    border-top: 1px solid rgba(0,0,0,.06);
}

/* ── WooCommerce checkout: notice row below order total ───── */

/* The <tr> that wraps our notice — remove any table-row chrome */
.wphb-checkout-notice-row > td {
    padding: 8px 0 2px !important;
    border: none !important;
}

/* The notice itself */
.wphb-checkout-notice {
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.82em;
    line-height: 1.5;
}

/* Deposit variant — subtle amber tint */
.wphb-checkout-notice--deposit {
    background: #fffbef;
    border-left: 3px solid #e6a817;
    color: #5c3d00;
}

/* Full-payment variant — subtle red tint */
.wphb-checkout-notice--full {
    background: #fff5f5;
    border-left: 3px solid #c0392b;
    color: #6b1111;
}

.wphb-checkout-notice .wphb-cn-icon {
    flex-shrink: 0;
    font-size: 12px;
    line-height: 1.5;
}

.wphb-checkout-notice .wphb-cn-text {
    flex: 1;
}

/* ── Admin meta box ──────────────────────────────────────── */

#wphb_deposit_info table td {
    vertical-align: top;
    padding: 3px 4px;
}

/* ── Checkout: Pricing Structure card ───────────────────── */

.wphb-pricing-structure {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 20px 22px 14px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.wphb-ps-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 16px;
    padding: 0;
    border: none;
}

.wphb-ps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.wphb-ps-room-rate .wphb-ps-label {
    display: flex;
    flex-direction: column;
}

.wphb-ps-sub {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-top: 1px;
}

.wphb-ps-value {
    font-weight: 600;
    white-space: nowrap;
}

.wphb-ps-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #777;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e0e0e0;
}

.wphb-ps-divider {
    border-top: 1px dashed #e0e0e0;
    margin: 10px 0 12px;
}

.wphb-ps-total .wphb-ps-label {
    font-weight: 700;
}

.wphb-ps-total .wphb-ps-value {
    font-weight: 700;
    font-size: 15px;
}

/* Deposit box */
.wphb-ps-deposit-box {
    background: #fffdf0;
    border: 1px solid #f0d98a;
    border-radius: 5px;
    padding: 13px 15px 10px;
    margin-top: 14px;
}

.wphb-ps-deposit-box--full {
    background: #fff8f8;
    border-color: #f0a8a8;
}

.wphb-ps-deposit-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: #5c3d00;
}

.wphb-ps-deposit-box--full .wphb-ps-deposit-header {
    color: #6b1111;
}

.wphb-ps-lock {
    font-size: 14px;
}

.wphb-ps-deposit-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #444;
    padding: 4px 0;
    border-top: 1px solid rgba(0,0,0,.06);
}

.wphb-ps-deposit-row strong {
    font-weight: 700;
}

.wphb-ps-deposit-note {
    font-size: 11.5px;
    color: #888;
    margin: 8px 0 0;
    line-height: 1.5;
}

.wphb-ps-footer {
    font-size: 11.5px;
    color: #aaa;
    font-style: italic;
    margin: 12px 0 0;
    text-align: right;
}

