/* ============================
   报价单 (小票风格) 样式
   ============================ */
.receipt {
  width: 380px;
  background: #fafafa;
  color: #1a1a1a;
  font-family: "Courier New", "Menlo", "Consolas", monospace;
  font-size: 13px;
  line-height: 1.5;
  padding: 28px 24px;
  border: 1px dashed #d1d5db;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
}
.receipt::before, .receipt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: radial-gradient(circle at 4px 4px, white 4px, transparent 4.5px) repeat-x;
  background-size: 16px 8px;
}
.receipt::before { top: -4px; }
.receipt::after { bottom: -4px; transform: rotate(180deg); }
.receipt-header {
  text-align: center;
  margin-bottom: 12px;
}
.receipt-shop {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.receipt-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.receipt-url {
  font-size: 10px;
  color: #6b7280;
}
.receipt-divider {
  border: none;
  border-top: 1px dashed #9ca3af;
  margin: 10px 0;
}
.receipt-info {
  font-size: 12px;
  line-height: 1.7;
}
.receipt-info .row {
  display: flex;
  justify-content: space-between;
}
.receipt-info .label { color: #6b7280; }
.receipt-items { margin: 8px 0; }
.receipt-item {
  margin-bottom: 10px;
  font-size: 12px;
}
.receipt-item-name {
  font-weight: 700;
  margin-bottom: 2px;
  word-break: break-word;
}
.receipt-item-detail {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
}
.receipt-totals { font-size: 12px; }
.receipt-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}
.receipt-totals .total {
  font-size: 16px;
  font-weight: 800;
  border-top: 1px solid #1a1a1a;
  border-bottom: 3px double #1a1a1a;
  padding: 6px 0;
  margin-top: 6px;
}
.receipt-footer {
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  margin-top: 12px;
  line-height: 1.7;
}
.receipt-footer strong { color: #1a1a1a; }
.receipt-note {
  background: rgba(0,0,0,0.04);
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 11px;
  margin: 8px 0;
  line-height: 1.6;
}
.receipt-thanks {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 3px;
}
