/* QR Payment Section - Final Version with Currency Toggle */
.qr-payment-section {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
}

.currency-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.currency-btn {
    padding: 8px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 14px;
}

.currency-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.currency-btn:hover {
    border-color: #007bff;
    transform: translateY(-1px);
}

.qr-container {
    display: inline-block;
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.15);
    max-width: 400px;
    width: 100%;
}

.payment-qr {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.1);
}

.qr-info {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.qr-info p {
    margin-bottom: 6px;
}

.qr-info p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.upi-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-top: 8px;
}
