/* WooCommerce header icon styles (shopping cart + account profile).
 * Loaded conditionally when WooCommerce is active. */

/* Shopping Cart */
.gg-shopping-cart {
	display: block;
	box-sizing: border-box;
	position: relative;
	transform: scale(var(--ggs,1));
	width: 20px;
	height: 21px;
	background:
		linear-gradient(to left,currentColor 12px,transparent 0) no-repeat -1px 6px/18px 2px,
		linear-gradient(to left,currentColor 12px,transparent 0) no-repeat 6px 14px/11px 2px,
		linear-gradient(to left,currentColor 12px,transparent 0) no-repeat 0 2px/4px 2px,
		radial-gradient(circle,currentColor 60%,transparent 40%) no-repeat 12px 17px/4px 4px,
		radial-gradient(circle,currentColor 60%,transparent 40%) no-repeat 6px 17px/4px 4px;
}
.gg-shopping-cart::after,
.gg-shopping-cart::before {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
	width: 2px;
	height: 14px;
	background: currentColor;
	top: 2px;
	left: 4px;
	transform: skew(12deg);
}
.gg-shopping-cart::after {
	height: 10px;
	top: 6px;
	left: 16px;
	transform: skew(-12deg);
}

/* My Account */
.gg-profile,
.gg-profile::after,
.gg-profile::before {
	display: block;
	box-sizing: border-box;
	border: 2px solid;
	border-radius: 100px;
}
.gg-profile {
	overflow: hidden;
	transform: scale(var(--ggs,1));
	width: 22px;
	height: 22px;
	position: relative;
}
.gg-profile::after,
.gg-profile::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 5px;
	width: 8px;
	height: 8px;
}
.gg-profile::after {
	border-radius: 200px;
	top: 11px;
	left: 0;
	width: 18px;
	height: 18px;
}
