/* ════════════════════════════════
   PAY NOW PAGE STYLES
   Scoped with .np-pay prefix
════════════════════════════════ */

.np-pay-content-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
}

.np-pay-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.3s ease;
}

.np-pay-card:hover {
    transform: translateY(-5px);
}

.np-pay-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.np-pay-title i {
    color: var(--saffron);
}

.np-pay-qr-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    text-align: center;
}

.np-pay-qr-placeholder img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.np-pay-qr-placeholder {
    width: 180px;
    height: 180px;
    background: #f8f9fa;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid #eee;
}

.np-pay-detail-item {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.np-pay-detail-item:last-child {
    border-bottom: none;
}

.np-pay-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.np-pay-value {
    font-weight: 500;
    color: var(--text);
    font-size: 1rem;
}

.np-pay-copy-btn {
    background: none;
    border: none;
    color: var(--saffron);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
}

.np-pay-copy-btn:hover {
    color: #5b7468;
}

.np-pay-instruction {
    background: #eef7f2;
    border-left: 4px solid #5b7468;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.np-pay-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    opacity: 0.7;
}

.np-pay-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .np-pay-content-wrap {
        padding: 2rem 1rem;
    }
}