.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
    gap: 20px;
}

.payment-icons svg {
    width: 52px;
    height: 52px;
    margin: 0;
    transition: transform 0.3s ease;
}

.payment-icons svg:hover {
    transform: scale(1.1);
}

.qr-code {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin: 24px auto;
    max-width: 280px;
}

.qr-code img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.card[role="button"] {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    margin-bottom: 16px;
}

.card[role="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #10B981;
}

.card[role="button"].selected {
    border-color: #10B981;
    background-color: #f0fdf4;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.upi-id {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.note {
    color: #4b5563;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
    background: #f9fafb;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.payment-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px;
}

.payment-title {
    color: #1f2937;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.payment-instructions {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}