/*
 * Minimal Font Awesome 6 subset — only icons actually used on this site.
 * Replaces cdnjs all.min.css (14.8 KiB) to cut unused CSS.
 *
 * Icons included:
 *   \f015  fa-house          — breadcrumb home
 *   \f053  fa-chevron-left   — pagination prev
 *   \f054  fa-chevron-right  — pagination next
 *   \f5fd  fa-layer-group    — product category badge
 *   \f2d2  fa-window-restore — .top-newslist .btn::after (mobile) & menu::after
 */

@font-face {
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2") format("woff2"),
	     url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.ttf") format("truetype");
}

.fa-solid,
.fas {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.fa-house::before       { content: "\f015"; }
.fa-chevron-left::before  { content: "\f053"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-layer-group::before   { content: "\f5fd"; }
.fa-window-restore::before { content: "\f2d2"; }
