.site-header {
	display: flex;
	flex-direction: column;
	background: white;
	width: 100%;
}

.site-branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	gap: 0.5rem;
}

.ozsm-logo {
	width: 6rem;
	height: 6rem;
	transition: 0.25s;

	&:hover {
		scale: 1.2;
	}
}

.site-branding-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;

	h1 {
		font-weight: bold;
		color: black;
		font-size: 2.5rem;
		margin: 0;
	}

	p {
		font-size: 0.7rem;
		color: rgba(120, 120, 120, 0.8);
		margin: 0;
	}
}

.cart {
	position: absolute;
	top: 2rem;
	right: 3rem;

	button {
		background: transparent;
		span {
			font-size: 1.5rem;
		}
	}
}

.cart-counter {
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: 2rem;
	right: 2.5rem;

	background: var(--accent-color);
	border-radius: 50%;
	font-weight: bold;
	text-align: center;
}
