/* Thermal receipt — hidden on screen, shown only when printing */
#printContainer {
  display: none;
}

@media print {
  @page {
    margin: 0;
  }

  body * {
    visibility: hidden;
  }

  #printContainer,
  #printContainer * {
    visibility: visible;
  }

  #printContainer {
    display: block !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
  }

  .thermal-receipt {
    width: 300px;
    max-width: 80mm;
    margin: 0;
    padding: 8px 10px 16px;
    font-family: "Courier New", Courier, monospace, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: #000;
    background: #fff;
    box-sizing: border-box;
  }

  .thermal-receipt__shop {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .thermal-receipt__rule {
    border: none;
    border-top: 1px dashed #000;
    margin: 8px 0;
  }

  .thermal-receipt__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #333;
    margin-bottom: 2px;
  }

  .thermal-receipt__order-id {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .thermal-receipt__type {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .thermal-receipt__section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 6px 0 4px;
  }

  .thermal-receipt__line {
    margin: 2px 0;
    word-break: break-word;
  }

  .thermal-receipt__items {
    margin: 6px 0;
  }

  .thermal-receipt__item {
    margin-bottom: 6px;
  }

  .thermal-receipt__item-line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: baseline;
  }

  .thermal-receipt__item-qty {
    font-weight: 700;
    flex-shrink: 0;
  }

  .thermal-receipt__item-name {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 700;
  }

  .thermal-receipt__item-price {
    margin-left: auto;
    flex-shrink: 0;
    font-weight: 600;
  }

  .thermal-receipt__modifier {
    padding-left: 16px;
    font-size: 12px;
    color: #222;
  }

  .thermal-receipt__row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 2px 0;
  }

  .thermal-receipt__row--total {
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
    padding-top: 4px;
    border-top: 1px solid #000;
  }

  .thermal-receipt__payment {
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
  }

  .thermal-receipt__footer {
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
    color: #333;
  }
}
