@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap");

:root {
	--color-ink: #080808;
	--color-muted: #5f5f5f;
	--color-surface: #f3f4f6;
	--color-surface-soft: rgba(245, 245, 243, 0.78);
	--color-white: #fff;
	--color-line: rgba(8, 8, 8, 0.16);
	--shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.14);
	--container-x: clamp(18px, 3.2vw, 72px);
	--header-height: 82px;
	--font-sans: Helvetica, "Arimo", Arial, sans-serif;
	--font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	background: var(--color-surface);
	color: var(--color-ink);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	background: var(--color-surface);
	color: var(--color-ink);
}

body.has-open-menu {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.site-shell {
	min-height: 100dvh;
	overflow-x: clip;
}

.site-main {
	min-height: 70dvh;
}

body:not(.page-home) .site-main {
	padding-top: var(--header-height);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-ink);
	box-shadow: var(--shadow-soft);
	transform: translateY(-180%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	--site-header-surface: transparent;
	--site-header-shadow: none;
	--site-header-backdrop: none;
	color: var(--color-white);
	transition: color 180ms ease;
}

.site-header::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: "";
	background: var(--site-header-surface);
	opacity: 1;
	transition: opacity 180ms ease, background 180ms ease, box-shadow 180ms ease, bottom 700ms cubic-bezier(0.22, 1, 0.36, 1);
	backdrop-filter: var(--site-header-backdrop);
}

.site-header.is-scrolled,
.site-header.is-open,
body:not(.page-home) .site-header {
	--site-header-surface: rgba(245, 245, 243, 0.58);
	--site-header-shadow: 0 1px 0 rgba(8, 8, 8, 0.08);
	--site-header-backdrop: blur(24px);
	color: var(--color-ink);
}

.site-header.is-scrolled::before,
.site-header.is-open::before,
body:not(.page-home) .site-header::before {
	opacity: 1;
}

.site-header.is-dropdown-open::before {
	bottom: calc(-1 * var(--dropdown-open-height, 0px));
}

.site-header__bar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	min-height: var(--header-height);
	padding: 0 var(--container-x);
	gap: 24px;
}

.site-header__nav,
.site-header__actions {
	display: flex;
	align-items: center;
	gap: clamp(18px, 1.6vw, 42px);
	min-width: 0;
}

.site-header__nav {
	align-self: stretch;
}

.site-header__actions {
	justify-content: flex-end;
	gap: clamp(14px, 1.4vw, 26px);
}

.site-header__nav-item {
	display: inline-flex;
	align-items: center;
	min-height: var(--header-height);
}

.site-header__nav-link {
	font-size: clamp(13.2px, 0.6vw, 13px);
	font-weight: 500;
	line-height: 1.1;
	white-space: nowrap;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
	letter-spacing: 0.3px;
}

.site-header.is-scrolled .site-header__nav-link,
.site-header.is-open .site-header__nav-link,
body:not(.page-home) .site-header__nav-link {
	text-shadow: none;
}

.site-header__nav-link.is-active {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.site-header__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	display: grid;
	grid-template-columns: minmax(0, max-content);
	grid-auto-flow: row;
	align-content: start;
	justify-content: start;
	gap: 8px;
	width: 100%;
	min-height: 0;
	padding: 10px var(--container-x) 20px var(--dropdown-content-x, var(--container-x));
	color: var(--color-white);
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	clip-path: inset(0 0 100% 0);
	transition: opacity 280ms ease, clip-path 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 380ms, background 280ms ease, color 280ms ease;
	pointer-events: none;
	backdrop-filter: none;
}

.site-header__nav-item:hover .site-header__dropdown,
.site-header__nav-item:focus-within .site-header__dropdown {
	opacity: 1;
	visibility: visible;
	clip-path: inset(0);
	transition-delay: 0s;
	pointer-events: auto;
}

.site-header__dropdown-link {
	display: flex;
	align-items: center;
	min-height: 18px;
	padding: 1px 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0.3px;
	white-space: nowrap;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
	width: max-content;
	max-width: min(360px, 100%);
}

.site-header__dropdown-link.is-active {
	font-weight: 700;
}

.site-header.is-scrolled .site-header__dropdown,
body:not(.page-home) .site-header__dropdown {
	color: var(--color-ink);
}

.site-header.is-scrolled .site-header__dropdown-link,
body:not(.page-home) .site-header__dropdown-link {
	text-shadow: none;
}

.site-header__brand {
	font-family: var(--font-display);
	font-size: clamp(30px, 4vw, 72px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
	text-align: center;
	text-shadow: 0 1px 24px rgba(0, 0, 0, 0.28);
}

.site-header__brand img {
	width: auto;
	height: clamp(35px, 4vw, 45px);
	max-width: min(248px, 27vw);
	object-fit: contain;
	filter: brightness(0) invert(1) drop-shadow(0 1px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-scrolled .site-header__brand,
.site-header.is-open .site-header__brand,
body:not(.page-home) .site-header__brand {
	text-shadow: none;
}

.site-header.is-scrolled .site-header__brand img,
.site-header.is-open .site-header__brand img,
body:not(.page-home) .site-header__brand img {
	filter: none;
}

.site-header__icon-link,
.site-header__menu-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
}

.site-header__icon-link svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header__cart {
	position: relative;
}

.site-header__cart-count {
	position: absolute;
	top: 57%;
	left: 50%;
	display: grid;
	align-items: center;
	justify-items: center;
	width: 16px;
	height: 10px;
	max-width: 16px;
	overflow: hidden;
	font-size: 8px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	pointer-events: none;
}

.site-header__menu-button {
	display: none;
	flex-direction: column;
	gap: 7px;
}

.site-header__menu-button span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.site-header.is-open .site-header__menu-button span:first-child {
	transform: translateY(4.5px) rotate(45deg);
}

.site-header.is-open .site-header__menu-button span:last-child {
	transform: translateY(-4.5px) rotate(-45deg);
}

.site-header__mobile-panel {
	display: none;
	position: fixed;
	top: var(--header-height);
	right: 0;
	bottom: 0;
	left: 0;
	height: calc(100vh - var(--header-height));
	height: calc(100dvh - var(--header-height));
	padding: 0 var(--container-x) max(28px, env(safe-area-inset-bottom));
	overflow-y: auto;
	overscroll-behavior: contain;
	color: var(--color-ink);
	background: var(--site-header-surface);
	backdrop-filter: var(--site-header-backdrop);
	-webkit-overflow-scrolling: touch;
}

.site-header__mobile-nav {
	display: grid;
	gap: 4px;
	padding-top: 10px;
}

.site-header__mobile-link {
	display: block;
	padding: 15px 0;
	font-size: 18px;
	border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.site-header__mobile-group {
	border-bottom: 1px solid rgba(8, 8, 8, 0.08);
}

.site-header__mobile-group .site-header__mobile-link {
	border-bottom: 0;
}

.site-header__mobile-subnav {
	display: grid;
	gap: 2px;
	padding: 0 0 12px 18px;
}

.site-header__mobile-sublink {
	display: flex;
	align-items: center;
	min-height: 44px;
	font-size: 15px;
	line-height: 1.25;
}

.site-header__mobile-link.is-active,
.site-header__mobile-sublink.is-active {
	font-weight: 700;
	color: var(--color-ink);
}

.site-footer {
	position: relative;
	z-index: 1;
	padding-top: 0;
	color: var(--color-ink);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 85px;
	padding: 28px var(--container-x);
}

.site-footer__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px clamp(18px, 2vw, 36px);
	font-size: 12px;
}

.site-footer__country {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.site-footer__copyright {
	flex: 0 0 auto;
	margin: 0;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.cookie-consent {
	position: fixed;
	left: max(18px, env(safe-area-inset-left));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 900;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	width: min(520px, calc(100vw - 36px));
	padding: 16px 16px 16px 18px;
	border: 1px solid rgba(8, 8, 8, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-ink);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-consent__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--color-muted);
}

.cookie-consent__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--color-ink);
	border-radius: 999px;
	background: var(--color-ink);
	color: var(--color-white);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.cookie-consent__button[aria-busy="true"] {
	opacity: 0.72;
	cursor: wait;
}

@media (hover: hover) {

	.site-header a:hover,
	.site-footer a:hover {
		text-decoration: underline;
		text-underline-offset: 6px;
	}

	.site-header__dropdown-link:hover {
		text-decoration: none;
	}

	.site-header__icon-link:hover,
	.site-header__menu-button:hover {
		background: rgba(255, 255, 255, 0.16);
	}

	.site-header.is-scrolled .site-header__icon-link:hover,
	.site-header.is-open .site-header__icon-link:hover,
	.site-header.is-open .site-header__menu-button:hover {
		background: rgba(8, 8, 8, 0.07);
	}

	.cookie-consent__button:hover {
		background: transparent;
		color: var(--color-ink);
	}
}

@media (max-width: 1100px) {
	.site-header__nav {
		display: none;
	}

	.site-header__bar {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.site-header__brand {
		justify-self: start;
	}

	.site-header__actions {
		justify-self: end;
	}

	.site-header__menu-button {
		display: inline-flex;
	}

	.site-header.is-open .site-header__mobile-panel {
		display: block;
	}
}

@media (max-width: 640px) {
	:root {
		--header-height: 68px;
	}

	.site-header__bar {
		gap: 12px;
	}

	.site-header__actions {
		gap: 14px;
	}

	.site-header__brand {
		font-size: clamp(24px, 7vw, 32px);
		white-space: normal;
	}

	.site-header__brand img {
		height: 34px;
		max-width: min(148px, 48vw);
	}

	.site-header__icon-link {
		width: 32px;
		height: 40px;
	}

	.site-header__menu-button {
		width: 32px;
		height: 40px;
	}

	.site-header__icon-link svg {
		width: 21px;
		height: 21px;
	}

	.site-header__icon-link:not(.site-header__cart) {
		display: none;
	}

	.site-footer {
		margin-top: 0;
	}

	.site-footer__inner {
		display: grid;
		align-items: start;
		min-height: 0;
		padding-top: 30px;
		padding-bottom: 34px;
		border-top-left-radius: 22px;
		border-top-right-radius: 22px;
	}

	.site-footer__links {
		display: grid;
		gap: 12px;
	}

	.site-footer__copyright {
		white-space: normal;
	}

	.cookie-consent {
		left: max(14px, env(safe-area-inset-left));
		right: max(14px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
		grid-template-columns: 1fr;
		width: auto;
		padding: 15px;
	}

	.cookie-consent__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}