/**
 * Minimal Font Awesome CSS for Minicart Icons
 * Only includes the cart icons we need
 */

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

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

/* Shopping Cart */
.fa-cart-shopping::before {
	content: "\f07a";
}

/* Shopping Bag */
.fa-bag-shopping::before {
	content: "\f290";
}

/* Basket Shopping */
.fa-basket-shopping::before {
	content: "\f291";
}
