/* ═══════════════════════════════════════
   PAYMENT CHIPS (Small, Inline, Clean)
═══════════════════════════════════════ */
.footer-payment { margin-top: 16px; }
.footer-payment-title {
    font-size: 10px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 8px 0;
}
.footer-payment-logos {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
    line-height: 1;
    white-space: nowrap;
}
.pay-chip i { font-size: 11px; }
.pay-chip:hover {
    transform: translateY(-1px);
    filter: brightness(1.15);
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}
.pay-meezan     { background: #00754A; }
.pay-easypaisa  { background: #00A650; }
.pay-jazzcash   { background: #E4002B; }

/* ═══════════════════════════════════════
   BANK DETAIL MODAL
═══════════════════════════════════════ */
.bank-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 99999;
    align-items: center; justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}
.bank-modal-overlay.active { display: flex; }
.bank-modal-box {
    background: #1c1c1c;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 14px;
    padding: 24px 22px 20px;
    max-width: 360px;
    width: 100%;
    position: relative;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    animation: bmSlide 0.25s ease;
}
@keyframes bmSlide {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}
.bank-modal-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: none;
    color: #888; font-size: 22px; cursor: pointer;
    line-height: 1; padding: 4px 8px;
    transition: color 0.2s;
}
.bank-modal-close:hover { color: #fff; }
.bank-modal-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.bank-modal-brand i { font-size: 22px; }
.meezan-brand    { background: #00754A; }
.easypaisa-brand { background: #00A650; }
.jazzcash-brand  { background: #E4002B; }

.bank-modal-details {
    background: #111;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}
.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 12px;
}
.bank-detail-row:last-child { border-bottom: none; }
.bank-detail-label {
    font-size: 10.5px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    padding-top: 2px;
}
.bank-detail-value {
    font-size: 12px;
    color: #e5e5e5;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}
.bank-detail-value.copyable {
    cursor: pointer;
    color: #D4AF37;
    transition: color 0.2s;
}
.bank-detail-value.copyable:hover { color: #fff; }
.bank-detail-value .fa-copy { font-size: 9px; margin-left: 3px; opacity: 0.7; }
.bank-modal-hint {
    font-size: 10.5px;
    color: #777;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}
.bank-modal-hint i { color: #D4AF37; margin-right: 3px; }

/* ═══════════════════════════════════════
   DEV CREDIT LINE
═══════════════════════════════════════ */
.footer-dev-credit {
    text-align: center;
    padding: 10px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: #8a8a8a;
    letter-spacing: 0.3px;
}
.footer-dev-credit i    { color: #D4AF37; margin-right: 4px; }
.footer-dev-credit span { color: #D4AF37; font-weight: 600; }
.footer-dev-credit a    { color: #8a8a8a; text-decoration: none; }
.footer-dev-credit a:hover { color: #D4AF37; }
.footer-dev-sep         { margin: 0 5px; color: #555; }

/* Mobile */
@media (max-width: 480px) {
    .pay-chip { font-size: 10px; padding: 5px 9px; }
    .bank-modal-box { padding: 20px 16px 16px; }
    .bank-modal-brand { font-size: 15px; padding: 10px; }
    .bank-modal-brand i { font-size: 18px; }
}