@media print {


  nav,
  .nav-wrapper,
  .nav-container,
  .hamburger,
  #controls,
  .search-container,
  .breadcrumb,
  footer,
  .btn,
  .btn-back,
  .no-print {
    display: none !important;
  }

  /* Základné nastavenia pre tlač */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.5;
    box-shadow: none !important;
  }

  main {
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* Karty kníh – jednoduchý vzhľad pre tlač */
  #cardGrid {
    display: block !important;
  }

  #cardGrid .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 0;
  }

  /* Obrázky */
  img, .book-image {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Zabraňujeme škaredým zalomeniam */
  h1, h2, h3, h4,
  p, table, blockquote {
    page-break-inside: avoid;
  }

  /* Kapitoly na novej strane (ak ich používaš) */
  .chapter {
    page-break-before: always;
  }

  @page {
    size: A4;
    margin: 2cm;

    @bottom-center {
      content: "Strana " counter(page) " z " counter(pages);
      font-size: 10pt;
      font-family: "Georgia", serif;
      color: #444;
    }
  }
}