/* Print Styles */

@media print {
  /* Hide non-essential elements */
  .site-header,
  .site-footer,
  .cookie-consent,
  .btn,
  .mobile-menu-toggle,
  .modal-overlay {
    display: none !important;
  }
  
  /* Optimize typography */
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: #000;
  }
  
  /* Show URLs for links */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }
  
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  
  /* Optimize images */
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
  
  /* Page breaks */
  p, li {
    orphans: 3;
    widows: 3;
  }
  
  /* Tables */
  table {
    page-break-inside: avoid;
  }
  
  /* Cards */
  .card {
    page-break-inside: avoid;
    border: 1px solid #ccc;
  }
  
  /* Remove shadows and colors */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}
