/* =============================================================
   lp-checkout.css — Premium Landing Page Checkout Styles
   Color scheme: Our brand tokens (blue/gold/navy) — NOT teal
   ============================================================= */

@import url('luxsleep-shared.css');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --lp-primary: var(--color-primary, #1D4ED8);
    --lp-primary-glow: rgba(29, 78, 216, 0.08);
    --lp-primary-border: rgba(29, 78, 216, 0.3);
    --lp-gold: var(--soft-gold, #C9A96E);
    --lp-gold-light: rgba(201, 169, 110, 0.15);
    --lp-navy: var(--deep-navy, #0B1D3A);
    --lp-cream: var(--soft-white, #FAF8F5);
    --lp-success: #22c55e;
    --lp-star: var(--color-star, #C9A96E);
    --lp-whatsapp: #25D366;
    --lp-text: #1a1a2e;
    --lp-muted: #6b7280;
    --lp-border: #e5e7eb;
    --lp-card-bg: #ffffff;
    --lp-page-bg: #f6f8fa;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.lp-checkout-body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--lp-page-bg);
    color: var(--lp-text);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.lp-ann {
    background: var(--lp-navy);
    color: var(--lp-cream);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.lp-ann span { color: var(--lp-gold); }

/* ── Checkout Header ───────────────────────────────────────── */
.lp-header {
    background: var(--lp-navy);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.lp-header-logo {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.lp-header-logo span { color: var(--lp-gold); }
.lp-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lp-header-wa {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-gold);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.lp-header-wa:hover { color: #ffffff; }

/* ── Urgency Bar ───────────────────────────────────────────── */
.lp-urgency {
    background: var(--lp-gold-light);
    border-bottom: 1px solid rgba(201,169,110,0.3);
    padding: 10px 16px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: #92400e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.lp-pulse-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: lp-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes lp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* ── Main Layout ───────────────────────────────────────────── */
.lp-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

/* ── Step Cards ────────────────────────────────────────────── */
.lp-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}
.lp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--lp-border);
    background: #fafbfc;
}
.lp-step-badge {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-card-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text);
}
.lp-card-body { padding: 18px; }

/* ── Bundle Cards ──────────────────────────────────────────── */
.lp-bundles { display: flex; flex-direction: column; gap: 10px; }
.lp-bundle-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid var(--lp-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 180ms ease;
    position: relative;
    background: #ffffff;
}
.lp-bundle-opt:hover { border-color: var(--lp-primary); background: var(--lp-primary-glow); }
.lp-bundle-opt.active {
    border-color: var(--lp-primary);
    background: var(--lp-primary-glow);
}
.lp-bundle-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--lp-border);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 180ms ease;
}
.lp-bundle-opt.active .lp-bundle-dot {
    border-color: var(--lp-primary);
    background: var(--lp-primary);
}
.lp-bundle-opt.active .lp-bundle-dot::after {
    content: '';
    width: 7px; height: 7px;
    background: #ffffff;
    border-radius: 50%;
}
.lp-bundle-info { flex: 1; min-width: 0; }
.lp-bundle-name { font-weight: 700; font-size: 13.5px; color: var(--lp-text); }
.lp-bundle-sub { font-size: 11px; color: var(--lp-muted); margin-top: 1px; }
.lp-bundle-price-col { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.lp-bundle-price { font-weight: 800; font-size: 15px; color: var(--lp-text); }
.lp-bundle-save {
    background: var(--lp-success);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.lp-bundle-was {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin: 0 4px;
}
.lp-bundle-per {
    font-size: 11px;
    color: #555;
    margin-left: 6px;
}
.lp-popular-badge {
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--lp-gold);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.lp-stock-row {
    display: flex; align-items: center; gap: 6px;
    margin-top: 12px;
    font-size: 11.5px; color: #b45309; font-weight: 600;
}

/* ── Order Bumps ───────────────────────────────────────────── */
.lp-bumps { margin-bottom: 16px; display: flex; flex-direction: column; gap: 10px; }
.lp-bump {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px;
    border: 1.5px dashed var(--lp-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 180ms ease;
    background: #ffffff;
}
.lp-bump:hover { border-color: var(--lp-primary); }
.lp-bump.checked {
    border: 1.5px solid var(--lp-primary);
    background: var(--lp-primary-glow);
}
.lp-bump-check {
    width: 18px; height: 18px;
    border: 2px solid var(--lp-border);
    border-radius: 4px;
    flex-shrink: 0; margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    transition: all 180ms ease;
}
.lp-bump.checked .lp-bump-check {
    background: var(--lp-primary); border-color: var(--lp-primary);
}
.lp-bump.checked .lp-bump-check::after {
    content: '✓'; color: #fff; font-size: 11px; font-weight: 700;
}
.lp-bump-body { flex: 1; }
.lp-bump-title { font-weight: 700; font-size: 13px; color: var(--lp-text); }
.lp-bump-desc { font-size: 11px; color: var(--lp-muted); margin-top: 2px; }
.lp-bump-price { font-size: 13px; font-weight: 700; color: var(--lp-primary); flex-shrink: 0; white-space: nowrap; }
.lp-bump-price s { color: var(--lp-muted); font-weight: 400; font-size: 11px; }

/* ── Form Fields ───────────────────────────────────────────── */
.lp-field { margin-bottom: 14px; }
.lp-field:last-child { margin-bottom: 0; }
.lp-label {
    display: block;
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: #374151; margin-bottom: 6px;
}
.lp-label .req { color: #ef4444; margin-left: 2px; }
.lp-label .opt { color: var(--lp-muted); font-weight: 400; text-transform: none; font-size: 11px; margin-left: 4px; }
.lp-input, .lp-select, .lp-textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--lp-text);
    background: #ffffff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    outline: none;
    appearance: none;
}
.lp-input:focus, .lp-select:focus, .lp-textarea:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px var(--lp-primary-glow);
}
.lp-input.error, .lp-select.error, .lp-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.lp-textarea { resize: vertical; }
.lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Phone with +92 prefix */
.lp-phone-wrap {
    display: flex;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 180ms, box-shadow 180ms;
}
.lp-phone-wrap:focus-within {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px var(--lp-primary-glow);
}
.lp-phone-prefix {
    background: #f3f4f6;
    padding: 11px 12px;
    font-size: 13.5px; font-weight: 600; color: #374151;
    border-right: 1.5px solid #d1d5db;
    white-space: nowrap;
}
.lp-phone-wrap .lp-input {
    border: none; border-radius: 0;
    box-shadow: none;
    padding-left: 12px;
}
.lp-phone-wrap .lp-input:focus { box-shadow: none; }

/* ── Payment Methods ───────────────────────────────────────── */
.lp-payments { display: flex; flex-direction: column; gap: 10px; }
.lp-pay-opt {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 13px 14px;
    border: 1.5px solid var(--lp-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 180ms ease;
    background: #ffffff;
}
.lp-pay-opt:hover { border-color: var(--lp-primary); background: var(--lp-primary-glow); }
.lp-pay-opt.active {
    border-color: var(--lp-primary);
    background: var(--lp-primary-glow);
}
.lp-pay-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--lp-border);
    flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: all 180ms ease;
}
.lp-pay-opt.active .lp-pay-radio {
    border-color: var(--lp-primary); background: var(--lp-primary);
}
.lp-pay-opt.active .lp-pay-radio::after {
    content: ''; width: 7px; height: 7px;
    background: #ffffff; border-radius: 50%;
}
.lp-pay-body { flex: 1; }
.lp-pay-name { font-weight: 700; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.lp-pay-desc { font-size: 11.5px; color: var(--lp-muted); margin-top: 3px; }
.lp-pay-tag {
    font-size: 9.5px; font-weight: 800;
    padding: 2px 8px; border-radius: 999px;
    letter-spacing: 0.4px; text-transform: uppercase;
}
.lp-pay-tag.blue { background: var(--lp-primary); color: #fff; }
.lp-pay-tag.gold { background: var(--lp-gold); color: #fff; }

/* ── Submit Section ────────────────────────────────────────── */
.lp-submit-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
}
.lp-submit-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--lp-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 200ms ease, transform 100ms ease, box-shadow 200ms ease;
    box-shadow: 0 4px 18px rgba(29,78,216,0.28);
    letter-spacing: 0.02em;
}
.lp-submit-btn:hover { background: #1a44c2; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(29,78,216,0.35); }
.lp-submit-btn:active { transform: translateY(0); }
.lp-submit-btn:disabled { background: #9ca3af; cursor: not-allowed; box-shadow: none; transform: none; }
.lp-submit-guarantee {
    text-align: center;
    font-size: 11px; color: var(--lp-muted);
    margin-top: 10px;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.lp-security-row {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lp-border);
}
.lp-security-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 10.5px; color: var(--lp-muted); font-weight: 600;
}

/* ── Mobile Price Strip ────────────────────────────────────── */
.lp-mobile-strip {
    background: #f9fafb;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
    display: none;
}
.lp-mobile-strip .lp-total-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; padding: 3px 0;
}
.lp-mobile-strip .lp-total-row.grand {
    font-weight: 800; font-size: 15px;
    border-top: 1px solid var(--lp-border);
    margin-top: 6px; padding-top: 8px;
    color: var(--lp-primary);
}

/* ── RIGHT COLUMN ──────────────────────────────────────────── */
.lp-right { position: sticky; top: 16px; }

.lp-summary-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}
.lp-summary-header {
    padding: 13px 18px;
    background: #fafbfc;
    border-bottom: 1px solid var(--lp-border);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* Product display */
.lp-product-row {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-product-img-wrap { position: relative; flex-shrink: 0; }
.lp-product-img {
    width: 64px; height: 64px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--lp-border);
    background: #f3f4f6;
}
.lp-product-qty {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--lp-primary);
    color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.lp-product-name { font-weight: 700; font-size: 13px; color: var(--lp-text); line-height: 1.3; }
.lp-product-variant { font-size: 11px; color: var(--lp-muted); margin-top: 3px; }

/* Price totals */
.lp-totals { padding: 14px 18px; }
.lp-total-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; padding: 5px 0;
    color: var(--lp-text);
}
.lp-total-row.discount .lp-val { color: #b45309; font-weight: 600; }
.lp-total-row.grand {
    font-weight: 800; font-size: 16px;
    border-top: 1.5px solid var(--lp-border);
    margin-top: 8px; padding-top: 10px;
    color: var(--lp-primary);
}
.lp-free { color: var(--lp-success); font-weight: 700; }

/* Discount code */
.lp-discount-wrap {
    padding: 0 18px 14px;
    display: flex; gap: 8px;
}
.lp-discount-wrap .lp-input { font-size: 13px; padding: 10px 12px; }
.lp-discount-apply {
    padding: 10px 16px;
    background: #f3f4f6;
    border: 1.5px solid var(--lp-border);
    border-radius: 10px;
    font-size: 12px; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    transition: background 150ms;
}
.lp-discount-apply:hover { background: #e5e7eb; }
.lp-discount-msg { padding: 0 18px 10px; font-size: 11.5px; }
.lp-discount-msg.success { color: var(--lp-success); }
.lp-discount-msg.error { color: #ef4444; }

/* ── Guarantee Box ─────────────────────────────────────────── */
.lp-guarantee {
    background: rgba(29,78,216,0.06);
    border: 1px solid var(--lp-primary-border);
    border-left: 3px solid var(--lp-primary);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px;
}
.lp-guarantee-icon {
    width: 38px; height: 38px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-guarantee h4 { font-size: 13px; font-weight: 700; color: var(--lp-text); margin-bottom: 3px; }
.lp-guarantee p { font-size: 11.5px; color: var(--lp-muted); line-height: 1.5; }

/* ── Delivery Timeline ─────────────────────────────────────── */
.lp-delivery {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.lp-delivery-header {
    background: #fafbfc;
    padding: 10px 14px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-bottom: 1px solid var(--lp-border);
    display: flex; align-items: center; gap: 6px;
}
.lp-delivery-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 14px;
    font-size: 12px;
    border-bottom: 1px solid #f3f4f6;
}
.lp-delivery-row:last-child { border-bottom: none; }
.lp-delivery-city { color: var(--lp-muted); }
.lp-delivery-days { font-weight: 700; color: var(--lp-primary); }
.lp-delivery-note {
    padding: 8px 14px;
    font-size: 10.5px; color: var(--lp-muted);
    background: #f9fafb;
    border-top: 1px solid var(--lp-border);
}

/* ── Reviews ───────────────────────────────────────────────── */
.lp-reviews {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}
.lp-reviews-header {
    padding: 10px 14px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-bottom: 1px solid var(--lp-border);
    background: #fafbfc;
    display: flex; align-items: center; gap: 6px;
}
.lp-review {
    padding: 12px 14px;
    border-bottom: 1px solid #f3f4f6;
}
.lp-review:last-child { border-bottom: none; }
.lp-review-top { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.lp-review-avatar {
    width: 28px; height: 28px;
    background: var(--lp-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-review-name { font-size: 12px; font-weight: 700; color: var(--lp-text); }
.lp-review-city { font-size: 10px; color: var(--lp-muted); }
.lp-review-stars { color: var(--lp-star); font-size: 11px; }
.lp-review-text { font-size: 12px; color: #374151; line-height: 1.5; margin-bottom: 5px; }
.lp-review-badge {
    font-size: 9.5px; font-weight: 700;
    padding: 2px 7px; border-radius: 999px;
    background: #f0fdf4; color: #166534;
    border: 1px solid #bbf7d0;
}

/* ── Mobile Sticky Footer ──────────────────────────────────── */
.lp-mob-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #ffffff;
    border-top: 1px solid var(--lp-border);
    padding: 10px 16px;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.lp-mob-price { line-height: 1.2; }
.lp-mob-price strong { display: block; font-size: 16px; font-weight: 800; color: var(--lp-primary); }
.lp-mob-price small { font-size: 10px; color: var(--lp-muted); }
.lp-mob-cta {
    padding: 11px 22px;
    background: var(--lp-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13px; font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(29,78,216,0.3);
}

/* ── Order Success Modal ───────────────────────────────────── */
.lp-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lp-modal-overlay.open { display: flex; }
.lp-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: lp-modal-in 250ms ease;
}
@keyframes lp-modal-in {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lp-modal-check {
    width: 64px; height: 64px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.lp-modal h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.lp-modal p { font-size: 13px; color: var(--lp-muted); margin-bottom: 20px; line-height: 1.6; }
.lp-modal-info {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 13px;
}
.lp-modal-info strong { display: block; margin-bottom: 4px; }
.lp-modal-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: var(--lp-whatsapp);
    color: #ffffff;
    border: none; border-radius: 10px;
    font-size: 14px; font-weight: 800;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: background 150ms;
}
.lp-modal-wa:hover { background: #1ebe5b; }
.lp-modal-small { font-size: 11px; color: var(--lp-muted); margin-top: 10px; margin-bottom: 0; }
.lp-modal-bank-details {
    background: #f0f4ff;
    border: 1px solid var(--lp-primary-border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    text-align: left;
}
.lp-modal-bank-details h4 { font-size: 12px; font-weight: 700; color: var(--lp-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-bank-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 3px 0; }
.lp-bank-row strong { color: var(--lp-text); }
.lp-bank-row span { color: var(--lp-muted); }

/* ── Payment Sub-method Tabs ───────────────────────────────── */
.lp-pay-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}
.lp-pay-tab {
    flex: 1;
    padding: 8px 6px;
    border: 1.5px solid var(--lp-border);
    border-radius: 8px;
    background: #f9fafb;
    font-size: 11.5px; font-weight: 600;
    cursor: pointer;
    transition: all 150ms;
    display: flex; align-items: center; justify-content: center; gap: 4px;
    font-family: inherit;
    color: var(--lp-muted);
}
.lp-pay-tab:hover { background: #f0f4ff; border-color: var(--lp-primary-border); color: var(--lp-primary); }
.lp-pay-tab.active {
    background: var(--lp-primary-glow);
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

/* ── Payment Proof Form ────────────────────────────────────── */
.lp-proof-form { text-align: left; }
.lp-proof-form .lp-field { margin-bottom: 10px; }
.lp-proof-form .lp-label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; color: var(--lp-text); }
.lp-upload-area {
    border: 2px dashed var(--lp-border);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-size: 12px; color: var(--lp-muted);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: border-color 150ms, background 150ms;
    font-weight: 500;
}
.lp-upload-area:hover { border-color: var(--lp-primary-border); background: var(--lp-primary-glow); color: var(--lp-primary); }
.lp-upload-area.has-file { border-color: #16a34a; background: #f0fdf4; color: #15803d; }
.lp-proof-filename { font-size: 11px; color: #16a34a; font-weight: 600; margin-top: 5px; min-height: 16px; }
.lp-proof-msg { font-size: 12px; margin-top: 8px; text-align: center; min-height: 18px; }

/* ── Modal close X ─────────────────────────────────────────── */
.lp-modal { position: relative; }
.lp-modal-x {
    position: absolute; top: 12px; right: 14px;
    background: #f3f4f6; border: none; border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--lp-muted);
    transition: background 150ms, color 150ms;
    font-family: inherit;
}
.lp-modal-x:hover { background: #e5e7eb; color: var(--lp-text); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .lp-main {
        grid-template-columns: 1fr;
        padding-bottom: 90px;
    }
    .lp-right { position: static; order: -1; }
    .lp-mobile-strip { display: block; }
    .lp-mob-sticky { display: flex; }
    .lp-header { padding: 12px 16px; }
    .lp-header-wa { display: none; }
    .lp-row { grid-template-columns: 1fr; }
}
