:root {
	--fontWeight: 400;
	--fontWeightBolder: 900;
	--spaceDouble: calc(2 * var(--space));
	--spaceTriple: calc(3 * var(--space));
	--spaceQuadruple: calc(4 * var(--space));
	--spaceSixfold: calc(6 * var(--space));
	--spaceTenfold: calc(10 * var(--space));
	--spaceHalf: calc(var(--space) / 2);
	--columnCountMedium: 3;
	--siteWidth: 1200px;
}

@media screen and (    max-width: 800px    ) {
	:root {
		--columnCountMedium: 2;
	}
}

@media screen and (max-width: 600px) {
	:root {
		--columnCountMedium: 1;
	}
}

p, h1, h2, a, body, li, ul {
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: var(--colorText);
}

h1 {
	font-size: var(--fontSizeH1);
	line-height: 1;
}

h2 {
	font-size: var(--fontSizeH2);
	line-height: 1;
}

body {
	font-family: "Roboto", sans-serif;
	background: var(--colorBackground);
	font-size: var(--fontSize);
}

main {
	max-width: var(--siteWidth);
	margin: auto;
	margin-top: 125px;
	box-sizing: border-box;
	padding: var(--spaceQuadruple) 0;
}

.content {
	display: flex;
	flex-direction: column;
	padding: var(--spaceDouble);
	gap: var(--spaceDouble);
}

/* HEADER */
header {
	background: color-mix(in srgb, #000 80%, var(--colorPrimary) 20%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

header .wrapper {
	display: flex;
	max-width: var(--siteWidth);
	margin: auto;
	justify-content: space-between;
	align-items: center;
	padding: var(--spaceDouble);
	box-sizing: border-box;
}

header .title {
	font-weight: bold;
	color: var(--colorText);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space);
	white-space: nowrap;
	font-size: var(--fontSizeH2);
	border-radius: var(--borderRadius);
	background-color: #fff;
	padding: var(--space) var(--spaceDouble);
}

header .title .logo {
	position: relative;
}

header .title .logo img {
	height: 32px;
	max-height: 32px;
	display: block;
}

header .icon-list {
    display: flex;
    gap: var(--space);
}

header .minishop-cart {
    filter: invert(1);
}

header .minishop-cart .notification {
    filter: invert(1);
}

header .minishop-currency .current {
    border-color: #fff !important;
    color: #fff;
}

    /* FOOTER */
footer {
	margin-top: var(--spaceDouble);
	background-color: var(--colorPrimary);
}

footer hr {
	max-width: var(--siteWidth);
	margin: auto;
	opacity: 0.3;
	box-sizing: border-box;
	background-color: #fff;
	height: 1px;
	border: none;
}

footer h2, footer address, footer a, footer li::marker {
	color: #fff;
	opacity: 0.8;
}

footer h2 {
	opacity: 1;
}

footer .wrapper {
	max-width: var(--siteWidth);
	margin: auto;
	padding: var(--spaceSixfold) var(--spaceDouble);
	box-sizing: border-box;
	display: flex;
	gap: var(--spaceSixfold);
	justify-content: start;
}

@media screen and (max-width: 800px) {
	footer .wrapper {
		flex-direction: column;
		align-items: center;
		gap: var(--spaceSixfold);
	}

	footer .wrapper section {
		align-items: center;
		text-align: center;
	}

	footer .wrapper .icon {
		display: none;
	}

	footer ul {
		list-style: none;
	}

	footer ul li {
		margin-left: 0;
	}
}

footer section {
	display: flex;
	flex-direction: column;
	gap: var(--space);
}

footer section .info {
	display: flex;
	gap: var(--space);
	align-items: center;
}

footer section .info img {
	width: 16px;
	height: 16px;
	opacity: 0.8;
}

footer section .info .icon {
	background: #fff;
	width: 16px;
	height: 16px;
	mask-size: contain;
}

footer li {
	margin-left: var(--spaceDouble);
}

footer address {
	font-style: normal;
}

footer .copyright {
	justify-content: end;
	font-size: 0.8rem;
	gap: var(--spaceHalf);
	padding-top: var(--spaceDouble);
	padding-bottom: var(--spaceDouble);
}

footer .payment-methods {
	display: flex;
	gap: var(--space);
}

footer .payment-methods img {
	max-width: 48px;
}

.swiss {
	position: relative;
	width: 15px;
	height: 15px;
	background: red;
}

.swiss::before, .swiss::after {
	content: '';
	position: absolute;
	background: #fff;
}

.swiss::before {
	left: 3px;
	top: 6px;
	height: 3px;
	width: 9px;
}

.swiss::after {
	left: 6px;
	top: 3px;
	height: 9px;
	width: 3px;
}