@font-face {
	font-family: "Ink Free";
	src: url("/font/inkfree.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
}

#categoryHeader {
	position: relative;
	width: 100%;
}
#categoryHeader h1 {
	z-index: 1;
	position: relative;
	font-size: 3em;
	margin: 0.66em 12px;
	text-align: center;
	color: white;
}
#categoryHeader img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}
@media (min-width: 700px) {
	#categoryHeader h1 {
		font-size: 6em;
	}
}

#content {
	margin-bottom: 2em;
}

#brands {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 0.5em 0.75em;
	margin: 1em 0;
	font-family: "Ink Free";
	font-size: 40px;
	font-weight: bold;

	padding: 0.4em 1.2em;
	background-color: #333;
	background-image:
		radial-gradient(circle closest-side at 25% 25%,#00000028 0% 50%, #0000 80%),
		radial-gradient(circle closest-side at 75% 75%,#00000028 0% 50%, #0000 80%)
	;
	background-size: 8px 8px;
	background-repeat: repeat;
	color: var(--background-color);
	border-radius: 0.25em;
	box-shadow: inset 0 0 25px #222;
}
#brands span {
	text-align: center;
}
#brands .star-icon {
	display: block;
	position: absolute;
	top: 0.7em;
}
#brands .star-icon.left {
	left: 0.2em;
}
#brands .star-icon.right {
	right: 0.2em;
}
#brands .star-icon svg {
	display: block;
	height: 0.6em;
	width: 0.6em;
	fill: var(--highlight-color);
}
@media (min-width: 600px) {
	#brands {
		padding: 0.4em 1.6em;
	}
	#brands .star-icon.left {
		left: 0.4em;
	}
	#brands .star-icon.right {
		right: 0.4em;
	}
}

#values {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2em;
	padding: 0;
	margin: 0;
}
@media (min-width: 650px) {
	#values {
		margin: 0 2em;
	}
}
@media (min-width: 900px) {
	#values {
		margin: 0 5em;
	}
	#values li {
		max-width: 600px;
	}
	#values li:nth-of-type(2n) {
		align-self: end;
	}
}
#values li h2 {
	margin: 0;
}
#values li svg {
	display: inline-block;
	height: 1.2em;
	margin-bottom: 0.4em;
	vertical-align: middle;
	fill: var(--highlight-color);
}
