/* ===== Local Icon System ===== */
/* Lightweight replacement for the small Font Awesome subset used by HEAVENLY. */
.fa,
.fas,
.far {
	display: inline-grid;
	place-items: center;
	width: 1em;
	height: 1em;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	text-rendering: geometricPrecision;
}

.fa::before,
.fas::before,
.far::before {
	display: block;
	font-family: var(--font-ui);
	font-size: 1em;
	line-height: 1;
}

.fa-bars::before { content: "☰"; }
.fa-times::before { content: "×"; }
.fa-plus::before { content: "+"; }
.fa-check::before { content: "✓"; }
.fa-envelope::before { content: "✉"; }
.fa-phone::before { content: "☎"; }
.fa-map-marker-alt::before { content: "⌖"; }
.fa-trash::before { content: "×"; }
.fa-star::before { content: "★"; }
.fa-star-half-alt::before { content: "★"; }
.far.fa-star::before { content: "☆"; }

.fa-shopping-basket {
	position: relative;
	width: 1.1em;
	height: 1em;
}

.fa-shopping-basket::before {
	content: "";
	position: absolute;
	left: 0.14em;
	right: 0.14em;
	bottom: 0.08em;
	height: 0.58em;
	border: 0.09em solid currentColor;
	border-radius: 0.12em 0.12em 0.2em 0.2em;
}

.fa-shopping-basket::after {
	content: "";
	position: absolute;
	left: 0.34em;
	top: 0.08em;
	width: 0.42em;
	height: 0.34em;
	border: 0.09em solid currentColor;
	border-bottom: 0;
	border-radius: 0.4em 0.4em 0 0;
}
