/* ── Receipt Lookup Modal Styles ───────────────────────── */
.receipt-lookup-result { background:var(--surface); border-radius:12px; padding:20px; border:1px solid var(--line); }
.receipt-lookup-result .result-header { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.receipt-lookup-result .result-header i { font-size:24px; color:var(--gold); }
.receipt-lookup-result .result-invoice { font-size:16px; font-weight:800; color:var(--gold); letter-spacing:0.5px; }
.receipt-lookup-result .result-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:13px; }
.receipt-lookup-result .result-row:last-child { border-bottom:none; }
.receipt-lookup-result .result-label { color:var(--muted); }
.receipt-lookup-result .result-value { font-weight:700; }
.receipt-lookup-result .result-actions { display:flex; gap:8px; margin-top:16px; }
.receipt-lookup-result .result-actions button { flex:1; }
.receipt-lookup-error { text-align:center; padding:20px; color:#ff6b6b; }
.receipt-lookup-error i { font-size:32px; margin-bottom:8px; display:block; }
.receipt-lookup-loading { text-align:center; padding:20px; color:var(--muted); }
.receipt-lookup-loading i { font-size:24px; display:block; margin-bottom:8px; }

/* ── Dashboard Receipt Styles ──────────────────────────── */
.receipt-inner { font-family:inherit; }
.receipt-header { text-align:center; border-bottom:2px solid var(--gold); padding-bottom:20px; margin-bottom:20px; }
.receipt-store-name { font-size:20px; font-weight:800; color:var(--gold); }
.receipt-store-tagline { font-size:11px; color:var(--muted); margin-top:2px; }
.receipt-invoice-title { margin-top:8px; font-size:12px; color:var(--muted); }
.receipt-invoice-title span { display:block; font-size:11px; letter-spacing:2px; }
.receipt-invoice-number { font-size:18px; font-weight:800; color:var(--fg); letter-spacing:1px; margin-top:2px; display:block; }
.receipt-section { margin-bottom:16px; }
.receipt-section-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--gold); margin-bottom:8px; border-bottom:1px solid var(--line); padding-bottom:4px; }
.receipt-row { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px solid rgba(255,255,255,0.04); font-size:13px; }
.receipt-label { color:var(--muted); }
.receipt-value { font-weight:600; text-align:end; }
.receipt-amount { font-size:20px; color:var(--gold); font-weight:900; }
.receipt-buyer-info { display:flex; align-items:center; gap:12px; padding:8px 0; }
.receipt-buyer-avatar { width:36px; height:36px; border-radius:50%; background:var(--surface); display:flex; align-items:center; justify-content:center; overflow:hidden; flex-shrink:0; }
.receipt-buyer-avatar img { width:100%; height:100%; object-fit:cover; }
.receipt-buyer-avatar i { font-size:18px; color:var(--gold); }
.receipt-buyer-details { flex:1; }
.receipt-buyer-name { font-weight:700; font-size:13px; }
.receipt-buyer-email { font-size:11px; color:var(--muted); }
.receipt-client-label { font-size:11px; color:var(--muted); margin-top:2px; }
.receipt-refund-box { margin-top:12px; padding:12px; background:rgba(255,107,107,0.08); border:1px solid rgba(255,107,107,0.2); border-radius:8px; }
.receipt-footer { text-align:center; margin-top:20px; padding-top:16px; border-top:2px dashed var(--line); }
.receipt-legal { font-size:11px; color:var(--muted); }
.receipt-legal-small { font-size:10px; color:var(--quiet); margin-top:4px; }
