/* 
 * Aptso Mart OS - Titanium UPI Checkout UI
 */

.titanium-upi-intent-hub {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.titanium-upi-intent-hub h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #64748b;
    text-transform: uppercase;
}

.upi-intent-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upi-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.upi-pay-btn img {
    height: 24px;
    width: auto;
}

.btn-gpay { background: #000; color: #fff; }
.btn-phonepe { background: #5f259f; color: #fff; }
.btn-paytm { background: #00baf2; color: #fff; }

.upi-pay-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Desktop QR Overlay fallback */
.titanium-upi-qr-wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.titanium-upi-qr-wrap img {
    border-radius: 12px;
    border: 1px solid #eee;
}

@media (min-width: 768px) {
    .upi-intent-buttons { flex-direction: row; justify-content: center; }
}
