/* ═══════════════════════════════════════════════════════════
   Print Styles — Clean print output
   ═══════════════════════════════════════════════════════════ */

@media print {
  .site-header,
  .site-trustbar,
  .site-footer,
  .nav-toggle,
  .nav-menu,
  .header-actions,
  .header-more,
  .language-picker,
  .search-box,
  .hero-actions,
  .catalog-filters,
  .catalog-toolbar,
  .print-button,
  .skip-link,
  .hero-visual,
  .catalog-result-card img,
  .product-card img {
    display: none !important;
  }

  body {
    font-size: 11pt !important;
    color: #000 !important;
    background: #fff !important;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    break-after: avoid;
  }

  .catalog-result-card,
  .product-card,
  .category-overview-card {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }

  a {
    color: #000 !important;
    text-decoration: underline !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

  .hero h1 {
    font-size: 20pt !important;
  }

  .legal-main {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .legal-section {
    margin-bottom: 1rem !important;
  }

  @page {
    margin: 2cm;
  }
}
