/* EatFlow Payment Integration Styles */
#pixModal { display:none; position:fixed; inset:0; z-index:99999; }
.pix-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.8); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; padding:20px; }
.pix-container { background:#1a1a2e; border:1px solid rgba(255,255,255,0.1); border-radius:24px; max-width:400px; width:100%; padding:32px; text-align:center; box-shadow:0 25px 60px rgba(0,0,0,0.5); }
.pix-header h2 { font-size:1.4rem; font-weight:800; color:#fff; margin:8px 0 4px; }
.pix-header p { color:rgba(255,255,255,0.5); font-size:0.85rem; margin-bottom:20px; }
.pix-icon { font-size:2rem; }
.pix-qr { background:#fff; border-radius:16px; padding:16px; margin:0 auto 16px; display:inline-block; }
.pix-qr-img { width:220px; height:220px; display:block; }
.pix-code-wrap { display:flex; gap:8px; margin-bottom:16px; }
.pix-code-input { flex:1; padding:12px; border:1px solid rgba(255,255,255,0.15); border-radius:10px; background:rgba(255,255,255,0.05); color:#fff; font-size:0.75rem; font-family:monospace; outline:none; overflow:hidden; text-overflow:ellipsis; }
.pix-copy-btn { padding:12px 16px; background:linear-gradient(135deg,#E8651A,#FF8C42); color:#fff; border:none; border-radius:10px; font-weight:700; cursor:pointer; font-family:inherit; white-space:nowrap; }
.pix-timer { color:rgba(255,255,255,0.4); font-size:0.85rem; margin-bottom:16px; }
.pix-timer span { color:#E8651A; font-weight:700; }
.pix-status { display:flex; align-items:center; justify-content:center; gap:10px; padding:16px; background:rgba(255,255,255,0.03); border-radius:12px; margin-bottom:16px; color:rgba(255,255,255,0.6); font-size:0.9rem; }
.pix-spinner { width:20px; height:20px; border:2px solid rgba(255,255,255,0.1); border-top-color:#E8651A; border-radius:50%; animation:pixSpin 1s linear infinite; }
@keyframes pixSpin { to { transform:rotate(360deg); } }
.pix-cancel-btn { background:none; border:1px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.5); padding:12px 24px; border-radius:10px; cursor:pointer; font-family:inherit; font-size:0.85rem; }
