/* Thermal-slip receipt. Renders on white inside the modal and prints alone. */

#print-root { display: none; }

.receipt {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: #fff;
  color: #111;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}
.receipt .r-head { text-align: center; }
.receipt .r-logo { width: 54px; height: 54px; object-fit: cover; border-radius: 6px; margin-bottom: 4px; }
.receipt h1 { font-size: 17px; margin: 0 0 2px; letter-spacing: 0.03em; font-weight: 800; }
.receipt .r-head p { margin: 0; font-size: 12px; }
.receipt .r-rule { border-top: 1px dashed #444; margin: 8px 0; }
/* Sized to be legible across a counter on 58mm thermal paper. */
.receipt .r-invoice {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2px 0 6px;
}
.receipt .r-invoice b { font-size: 26px; font-weight: 800; letter-spacing: 0.02em; }
.receipt .r-provisional {
  margin: 0 0 6px;
  padding: 4px 6px;
  border: 1px dashed #444;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
.receipt .r-meta { font-size: 12px; }
.receipt .r-meta div { display: flex; justify-content: space-between; gap: 8px; }
.receipt .r-customer { margin: 7px 0; }
.receipt .r-customer strong { font-size: 14px; }
.receipt .r-customer small { color: #444; font-size: 11px; }

.receipt .r-items { width: 100%; border-collapse: collapse; margin-top: 6px; }
.receipt .r-items th {
  text-align: left; font-size: 12px; font-weight: 700;
  border-bottom: 1px solid #111; padding: 3px 0;
}
.receipt .r-items td { padding: 4px 0; border-bottom: 1px dotted #bbb; }
.receipt .r-items .qty { text-align: center; width: 34px; }
.receipt .r-items .amt { text-align: right; width: 66px; }

.receipt .r-line { display: flex; justify-content: space-between; font-size: 12px; padding: 2px 0; }
.receipt .r-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 16px; font-weight: 800; padding: 5px 0;
  border-top: 1px solid #111; border-bottom: 1px solid #111; margin: 5px 0;
}
.receipt .r-foot { text-align: center; font-size: 11px; margin: 9px 0 2px; }
.receipt .r-credit { text-align: center; font-size: 10px; color: #555; margin: 0; }

@media print {
  @page { margin: 4mm; }
  body > *:not(#print-root) { display: none !important; }
  #print-root { display: block !important; }
  .receipt { max-width: none; width: 100%; }
}
