@media print {
  /* Hide everything */
  body * {
    visibility: hidden;
  }

  /* Show only receipt */
  .receipt-card,
  .receipt-card * {
    visibility: visible;
  }

  .receipt-print-wrapper {
    overflow: visible !important;
  }

  .receipt-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0; /* Let @page margin handle it */
    box-shadow: none;
    /* border kept intact for printing */
  }

  /* Hide all non-print elements */
  .no-print,
  .sidebar,
  .hamburger,
  .page-header,
  .toast-container,
  .btn-print-actions,
  .edit-mode-toggle,
  .profit-row {
    display: none !important;
  }

  /* Remove contenteditable styling */
  [contenteditable] {
    border: none !important;
    outline: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  /* Page setup */
  @page {
    size: A4;
    margin: 10mm;
  }
}
