/**
 * 2023 ThCMS Print
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * @author    Your Name <your.email@example.com>
 * @copyright 2023 Your Name
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
 */

.cms-print-button-container {
}

#cms-print-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

#cms-print-button i {
  font-size: 18px;
}

/* Hide print button when printing */
@media print {
  .cms-print-button-container {
    display: none !important;
  }
  
  /* Hide header, footer and navigation elements when printing */
  header, 
  #header,
  footer,
  #footer,
  #footer > .elementor,
  .header-container,
  .footer-container,
  .nav-bar,
  #nav-bar,
  #wrapper .breadcrumb,
  .block-categories,
  .block-search,
  .block-social,
  .pk-fixed-bottom,
  .hidden-print {
    display: none !important;
  }
  
  /* Ensure content is visible */
  .visible-print {
    display: block !important;
  }
  
  /* Clean background */
  body {
    background: #fff !important;
  }
  
  /* Improve text readability for print */
  .page-content {
    font-size: 12pt;
    line-height: 1.5;
  }
}
