/* ============================================
   PRINT — Impression minimale
   ============================================ */

@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
	}

	body {
		font-size: 12pt;
		line-height: 1.5;
	}

	/* Masquer navigation, footer, carrousel, boutons */
	.site-header,
	.site-footer,
	.menu-toggle,
	.site-nav,
	.carousel__arrow,
	.carousel__dots,
	.card__readmore,
	.section__link,
	.post-nav,
	.single_add_to_cart_button,
	.wc-proceed-to-checkout,
	.woocommerce-tabs,
	.skip-link {
		display: none !important;
	}

	/* Images raisonnables */
	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	/* Pas de coupure dans les articles */
	article,
	.single-coulisse,
	.card {
		page-break-inside: avoid;
	}

	/* Afficher les URLs des liens */
	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		color: #666;
	}

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