  /* Animation Styles */
  .payment-card {
    animation: fadeInUp 0.8s ease-out;
}

.payment-method {
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    animation: pulse 2s infinite alternate;
    margin-bottom: 20px;
    height: 100%;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: none;
}

.upi-payment {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.gpay-payment {
    background: linear-gradient(135deg, #f5f9ff 0%, #e0e9ff 100%);
    border: 1px solid #d6e0ff;
}

.bank-transfer {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.qr-code {
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
    max-width: 200px;
    margin: 0 auto 15px;
}

.qr-code:hover {
    transform: scale(1.03);
}

.upi-id {
    font-weight: bold;
    color: #2c3e50;
    padding: 8px 12px;
    background: white;
    border-radius: 5px;
    display: inline-block;
    animation: glow 2s infinite alternate;
    cursor: pointer;
}

.detail-item {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    animation: slideInRight 0.5s ease-out;
}

.detail-item:last-child {
    border-bottom: none;
}

.payment-note {
    animation: fadeIn 1s ease-out;
}

.gpay-badge {
    max-width: 180px;
    margin: 10px auto;
    display: block;
}

.payment-method-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.payment-method-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #2c3e50;
}

.gpay-icon {
    color: #5F6368;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px -5px #3498db;
    }
    to {
        box-shadow: 0 0 5px 5px #3498db;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}