/* print.css */
@page { margin: 15mm; }

@media print {
	
  body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff !important;
  }
  a::after {
    content: "" !important; /* supprime l'URL affichée après le lien */
  }
  /* En-tête imprimé */
  .print-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #00B98E;
    padding-bottom: 10px;
  }
  .print-header .logo-print { max-height: 50px; }
  .print-header .print-date { font-size: .9rem; color: #555; }

  /* Bloc lightbox */
  .lightbox-content {
    display: block !important;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
  }
  .lightbox-image-container { text-align: center; margin-bottom: 20px; }
  .lightbox-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
  }

  .details { margin-top: 15px; }
  .detail-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 6px 0;
  }
  .detail-label { font-weight: 600; color: #555; }
  .detail-value { color: #000; }
  .description-text { margin-top: 20px; font-size: .95rem; color: #444; }

  /* Masquer le chrome de l'app à l'impression */
  header, footer, nav, .contact-info, .back-to-top,
  .slider-controls, .slider-dots, #printLightbox, .btn {
    display: none !important;
  }
}
