/* [2026-02-26][CLX][V5.2-5H] Печатная версия КП — CSS @media print */
/* Вызывается через window.print() → Ctrl+P → PDF / принтер */

@media print {
  /* Скрыть всё лишнее */
  .sidebar,
  .header,
  .back-link,
  .quotes-toolbar,
  .modal-overlay,
  #btn-add-item,
  #btn-save-quote,
  #btn-delete-quote,
  #btn-print-quote,
  .quote-item__remove,
  .quote-item__qty-btn,
  .badge { display: none !important; }

  body {
    background: #fff;
    color: #000;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

  .main-content {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .main-content__body {
    padding: 0 !important;
    max-width: none !important;
  }

  /* ── Шапка КП (генерируется JS) ── */
  .print-header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20pt;
    padding-bottom: 12pt;
    border-bottom: 2pt solid #333;
  }

  .print-header__brand {
    font-size: 14pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .print-header__subtitle {
    font-size: 9pt;
    color: #666;
    letter-spacing: 2px;
  }

  .print-header__contacts {
    text-align: right;
    font-size: 9pt;
    line-height: 1.6;
  }

  .print-header__contacts strong {
    font-size: 10pt;
  }

  /* ── Приветствие ── */
  .print-greeting {
    font-size: 12pt;
    margin: 16pt 0;
  }

  /* ── Заголовок КП ── */
  .print-title {
    font-size: 13pt;
    font-weight: 700;
    text-align: center;
    margin: 16pt 0 12pt;
  }

  /* ── Таблица позиций ── */
  .print-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12pt 0;
    font-size: 10pt;
  }

  .print-table th {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border: 1px solid #999;
    padding: 6pt 8pt;
    text-align: left;
    font-weight: 600;
    font-size: 9pt;
  }

  .print-table td {
    border: 1px solid #ccc;
    padding: 5pt 8pt;
    vertical-align: middle;
  }

  .print-table .text-right {
    text-align: right;
  }

  .print-table .text-center {
    text-align: center;
  }

  /* ── Итого ── */
  .print-total {
    text-align: right;
    font-size: 13pt;
    font-weight: 700;
    margin: 12pt 0;
    padding: 8pt 0;
    border-top: 2pt solid #333;
  }

  /* ── Преимущества ── */
  .print-benefits {
    margin: 20pt 0;
    padding: 12pt 16pt;
    border: 1px solid #ddd;
    border-radius: 4pt;
  }

  .print-benefits__title {
    font-weight: 700;
    margin-bottom: 8pt;
    font-size: 11pt;
  }

  .print-benefits__item {
    margin: 4pt 0;
    padding-left: 16pt;
    position: relative;
  }

  .print-benefits__item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2a7d2e;
    font-weight: 700;
  }

  /* ── Подпись ── */
  .print-footer {
    margin-top: 24pt;
    padding-top: 12pt;
    border-top: 1px solid #ccc;
    font-size: 9pt;
    color: #666;
    display: flex;
    justify-content: space-between;
  }

  /* Скрыть non-print элементы */
  .detail-card {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .quote-edit-grid { display: none !important; }
  .quote-items-header { display: none !important; }
  .quote-total { display: none !important; }

  /* Показать печатные элементы */
  .print-only { display: block !important; }

  /* Разрыв страницы */
  .print-page-break { page-break-before: always; }

  @page {
    size: A4;
    margin: 15mm 20mm;
  }
}
