:root {
	--cex-color-text: #161616;
	--cex-color-muted: #6b6b6b;
	--cex-color-background: #ffffff;
	--cex-color-surface: #f4f4f1;
	--cex-color-accent: #1c5bff;
	--cex-color-accent-hover: #0f3fbd;
	--cex-container: 1800px;
	--cex-gutter: clamp(20px, 3.125vw, 60px);
	--cex-radius: 4px;
	--cex-transition: 240ms cubic-bezier(.22, .61, .36, 1);
	--cex-mobile-heading: clamp(28px, 7.7vw, 32px);
	--cex-mobile-heading-prominent: clamp(30px, 8vw, 34px);
	--cex-mobile-card-heading: clamp(20px, 5.9vw, 24px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cex-color-background);
	color: var(--cex-color-text);
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body.menu-open {
	overflow: hidden;
}

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

button,
a {
	transition: color var(--cex-transition), background-color var(--cex-transition), border-color var(--cex-transition), opacity var(--cex-transition), transform var(--cex-transition);
}

button {
	font: inherit;
}

.site-header,
.site-footer {
	position: relative;
	z-index: 10;
}

.site-header {
	background: var(--cex-color-background);
}

.container,
.site-header__inner,
.site-footer__inner {
	width: 100%;
	max-width: calc(var(--cex-container) + (var(--cex-gutter) * 2));
	margin-inline: auto;
	padding-inline: var(--cex-gutter);
}

.site-header__inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.custom-logo-link {
	display: inline-flex;
	flex: 0 0 auto;
	line-height: 0;
}

.custom-logo {
	max-width: min(240px, 42vw);
	height: auto;
}

.site-navigation {
	margin-left: auto;
}

.site-menu {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 48px);
	list-style: none;
}

.site-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--cex-color-text);
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a {
	color: var(--cex-color-accent);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 9px;
	border: 0;
	border-radius: var(--cex-radius);
	background: transparent;
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	margin-block: 5px;
	background: currentColor;
	transition: transform var(--cex-transition), opacity var(--cex-transition);
}

.site-main {
	min-height: 40vh;
}

.site-footer {
	padding-block: 48px;
	background: var(--cex-color-surface);
}

.site-menu--footer {
	flex-wrap: wrap;
	gap: 16px 28px;
}

.site-footer__navigation:empty {
	display: none;
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid var(--cex-color-accent);
	border-radius: var(--cex-radius);
	background: var(--cex-color-accent);
	color: #fff;
	cursor: pointer;
}

.button:hover,
button.button:hover {
	border-color: var(--cex-color-accent-hover);
	background: var(--cex-color-accent-hover);
	color: #fff;
}

.button--arrow-outline,
.button--arrow-outline:hover {
	min-height: 60px;
	padding: 0;
	border: 0;
	border-radius: 0;
	gap: 25px;
	background: transparent;
	color: #000;
}

.button--arrow-outline .button__icon {
	display: grid;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	place-items: center;
}

.button--arrow-outline .button__icon-svg {
	display: block;
	width: 60px;
	height: 60px;
	transition: transform var(--cex-transition), opacity var(--cex-transition);
}

.button--arrow-outline:hover {
	color: var(--cex-color-accent-hover);
}

.button--arrow-outline:hover .button__icon-svg {
	transform: translate(3px, -3px);
}

.has-js [data-accordion-panel] {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 420ms cubic-bezier(.22, .61, .36, 1), opacity 260ms ease;
}

.has-js [data-accordion-item].is-open [data-accordion-panel] {
	opacity: 1;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 860px) {
	.site-header__inner {
		min-height: 72px;
	}

	.menu-toggle {
		display: block;
		position: relative;
		z-index: 2;
	}

	.site-navigation {
		position: fixed;
		inset: 72px 0 0;
		padding: 28px var(--cex-gutter) 40px;
		background: var(--cex-color-background);
		transform: translateY(-10px);
		visibility: hidden;
		opacity: 0;
		transition: opacity var(--cex-transition), transform var(--cex-transition), visibility var(--cex-transition);
		overflow-y: auto;
	}

	.site-navigation.is-open {
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
	}

	.site-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 4px;
	}

	.site-menu a {
		width: 100%;
		min-height: 52px;
	}
}

@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;
	}
}

/* Dealer CTA */
.dealer-cta {
	padding: 60px 0;
	background: #fff;
}

.dealer-cta__card {
	position: relative;
	width: 100%;
	aspect-ratio: 1800 / 666;
	overflow: hidden;
	border-radius: 20px;
	background: #171717;
	box-shadow: 0 4px 20px rgba(6, 37, 91, .1), 0 6px 20px 6px rgba(24, 44, 73, .12);
}

.dealer-cta__media,
.dealer-cta__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.dealer-cta__media {
	overflow: hidden;
}

.dealer-cta__image {
	position: absolute;
	left: .02%;
	top: -61.91%;
	display: block;
	width: 116.99%;
	max-width: none;
	height: 183.26%;
}

.dealer-cta__overlay {
	background: linear-gradient(128.154deg, rgba(0, 0, 0, .8) 31.999%, rgba(0, 0, 0, 0) 61.138%), linear-gradient(90deg, rgba(0, 0, 0, .47) 0%, rgba(0, 0, 0, .47) 100%);
}

.dealer-cta__content {
	position: absolute;
	z-index: 1;
	left: 40px;
	top: 40px;
	max-width: 792px;
}

.dealer-cta__title {
	margin: 0;
	color: #fff;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 100px;
	text-transform: uppercase;
}

.dealer-cta__description {
	position: absolute;
	left: 0;
	top: 210px;
	max-width: 619px;
	margin: 0;
	color: #cecece;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.dealer-cta__link,
.dealer-cta__link:hover {
	position: absolute;
	z-index: 1;
	left: 40px;
	bottom: 40px;
	color: #ebc811;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.dealer-cta__link-icon {
	position: relative;
}

.dealer-cta__link-icon-svg {
	position: absolute;
	inset: 0;
	width: 60px;
	height: 60px;
	transition: opacity var(--cex-transition);
}

.dealer-cta__link-icon-svg--hover {
	opacity: 0;
}

.dealer-cta__link:hover,
.dealer-cta__link:focus-visible {
	color: #fff;
}

.dealer-cta__link:hover .dealer-cta__link-icon-svg,
.dealer-cta__link:focus-visible .dealer-cta__link-icon-svg {
	transform: none;
}

.dealer-cta__link:hover .dealer-cta__link-icon-svg--default,
.dealer-cta__link:focus-visible .dealer-cta__link-icon-svg--default {
	opacity: 0;
}

.dealer-cta__link:hover .dealer-cta__link-icon-svg--hover,
.dealer-cta__link:focus-visible .dealer-cta__link-icon-svg--hover {
	opacity: 1;
}

.dealer-cta__link:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.has-js .dealer-cta[data-animate] .dealer-cta__content,
.has-js .dealer-cta[data-animate] .dealer-cta__link {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 540ms cubic-bezier(.22, .61, .36, 1), transform 540ms cubic-bezier(.22, .61, .36, 1), color var(--cex-transition);
}

.has-js .dealer-cta[data-animate].is-visible .dealer-cta__content,
.has-js .dealer-cta[data-animate].is-visible .dealer-cta__link {
	opacity: 1;
	transform: translateY(0);
}

.has-js .dealer-cta[data-animate].is-visible .dealer-cta__link {
	transition-delay: 110ms;
}

@media (max-width: 1080px) {
	.dealer-cta__card {
		min-height: 590px;
	}

	.dealer-cta__title {
		font-size: clamp(52px, 7vw, 70px);
		line-height: 1.05;
	}

	.dealer-cta__description {
		top: 188px;
		font-size: 22px;
		line-height: 1.18;
	}
}

@media (max-width: 640px) {
	.dealer-cta {
		padding: 36px 0;
	}

	.dealer-cta__card {
		aspect-ratio: auto;
		min-height: clamp(460px, 128vw, 500px);
		border-radius: 16px;
	}

	.dealer-cta__image {
		left: 50%;
		top: 0;
		width: auto;
		height: 100%;
		transform: translateX(-50%);
	}

	.dealer-cta__overlay {
		background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .74) 64%, rgba(0, 0, 0, .9) 100%), linear-gradient(90deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .12) 100%);
	}

	.dealer-cta__content {
		left: 26px;
		top: 28px;
		right: 26px;
		max-width: none;
	}

	.dealer-cta__title {
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.06;
	}

	.dealer-cta__description {
		position: static;
		max-width: 300px;
		margin-top: 26px;
		font-size: 18px;
		line-height: 1.2;
	}

	.dealer-cta__link,
	.dealer-cta__link:hover {
		left: 26px;
		bottom: 26px;
		gap: 18px;
		font-size: 17px;
	}

	.dealer-cta__link .button__icon,
	.dealer-cta__link .dealer-cta__link-icon-svg {
		flex-basis: 52px;
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dealer-cta__link-icon-svg,
	.dealer-cta__content,
	.dealer-cta__link {
		transition: none;
	}
}

/* Homepage hero: Figma node 81:1424. */
:is(.home, .has-hero-header) {
	background: #000;
	font-family: Inter, Arial, sans-serif;
}

:is(.home, .has-hero-header) .site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	color: #fff;
}

:is(.home, .has-hero-header) .site-header__inner {
	position: relative;
	width: calc(100% - 120px);
	max-width: 1800px;
	height: 148px;
	min-height: 0;
	margin: 29px auto 0;
	padding: 0;
}

:is(.home, .has-hero-header) .custom-logo-link {
	position: absolute;
	top: 0;
	left: -26px;
	display: flex;
	align-items: center;
	width: 240px;
	height: 148px;
}

:is(.home, .has-hero-header) .custom-logo {
	width: 240px;
	max-width: none;
	height: auto;
	transform: translateY(14px);
}

:is(.home, .has-hero-header) .site-navigation {
	position: absolute;
	top: 0;
	left: 50%;
	display: flex;
	align-items: center;
	width: min(61.1%, 1110px);
	height: 69px;
	margin: 0;
	padding: 18px 40px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 100px;
	background: rgba(0, 0, 0, .1);
	transform: translateX(-50%);
}

:is(.home, .has-hero-header) .site-menu {
	width: 100%;
	justify-content: space-between;
	gap: 20px;
}

:is(.home, .has-hero-header) .site-menu a {
	min-height: 24px;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
}

:is(.home, .has-hero-header) .site-menu a:hover,
:is(.home, .has-hero-header) .site-menu .current-menu-item > a,
:is(.home, .has-hero-header) .site-menu .current-menu-ancestor > a {
	color: #ebc811;
}

:is(.home, .has-hero-header) .site-menu .menu-item-has-children > a::after {
	width: 8px;
	height: 8px;
	margin-left: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	content: '';
	transform: translateY(-2px) rotate(45deg);
}

:is(.home, .has-hero-header) .site-menu .menu-item-has-children {
	position: relative;
}

:is(.home, .has-hero-header) .site-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -20px;
	display: flex;
	width: max-content;
	min-width: 180px;
	margin: 0;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 18px;
	background: rgba(0, 0, 0, .88);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--cex-transition), transform var(--cex-transition), visibility var(--cex-transition);
}

:is(.home, .has-hero-header) .site-menu .menu-item-has-children:hover > .sub-menu,
:is(.home, .has-hero-header) .site-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

:is(.home, .has-hero-header) .site-menu .sub-menu a {
	width: 100%;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 14px;
	text-transform: none;
}

:is(.home, .has-hero-header) .site-menu .sub-menu a:hover,
:is(.home, .has-hero-header) .site-menu .sub-menu .current-menu-item > a {
	background: rgba(255, 255, 255, .1);
}

:is(.home, .has-hero-header) .site-header__tools {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 10px;
}

.header-tool {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 69px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 100px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	cursor: pointer;
}

.header-tool:hover,
.header-tool:focus-visible {
	background: rgba(255, 255, 255, .2);
	color: #ebc811;
}

.header-tool--search {
	width: 69px;
}

.header-tool__icon {
	width: 30px;
	height: 30px;
}

.header-language,
.header-language-menu > .menu-item {
	position: relative;
}

.header-language-menu,
.header-language-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-language-menu > .menu-item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 69px;
	gap: 11px;
	border: 1px solid rgba(0, 0, 0, .18);
	border-radius: 100px;
	background: rgba(0, 0, 0, .04);
	color: var(--cex-color-text);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.header-language-menu > .menu-item > a::after {
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	content: '';
	transform: translateY(-2px) rotate(45deg);
	transition: transform var(--cex-transition);
}

.header-language-menu > .menu-item:hover > a,
.header-language-menu > .menu-item:focus-within > a,
.header-language-menu > .menu-item.is-open > a {
	background: rgba(0, 0, 0, .08);
	color: var(--cex-color-accent);
}

:is(.home, .has-hero-header) .header-language-menu > .menu-item > a {
	border-color: rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

:is(.home, .has-hero-header) .header-language-menu > .menu-item:hover > a,
:is(.home, .has-hero-header) .header-language-menu > .menu-item:focus-within > a,
:is(.home, .has-hero-header) .header-language-menu > .menu-item.is-open > a {
	background: rgba(255, 255, 255, .2);
	color: #ebc811;
}

.header-language-menu > .menu-item.is-open > a::after {
	transform: translateY(2px) rotate(225deg);
}

.header-language-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 2;
	display: grid;
	width: 100px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 18px;
	background: rgba(0, 0, 0, .88);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	pointer-events: none;
	transition: opacity var(--cex-transition), transform var(--cex-transition), visibility var(--cex-transition);
}

.header-language-menu .sub-menu::before {
	position: absolute;
	top: -11px;
	right: 0;
	left: 0;
	height: 11px;
	content: '';
}

.header-language-menu > .menu-item:hover > .sub-menu,
.header-language-menu > .menu-item:focus-within > .sub-menu,
.header-language-menu > .menu-item.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header-language-menu .sub-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px;
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
}

.header-language-menu .sub-menu a:hover,
.header-language-menu .sub-menu a:focus-visible,
.header-language-menu .sub-menu .current-menu-item > a {
	background: rgba(255, 255, 255, .1);
	color: #ebc811;
}

.menu-toggle {
	position: absolute;
	top: 12px;
	right: 0;
	z-index: 3;
}

:is(.home, .has-hero-header) .menu-toggle {
	color: #fff;
}

.site-search-panel {
	position: absolute;
	top: 108px;
	left: 50%;
	z-index: 4;
	width: min(1400px, calc(100% - 40px));
	padding: 20px;
	border-radius: 12px;
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	transform: translateX(-50%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.site-search-panel .search-form {
	display: block;
	width: min(100%, 1360px);
	margin-inline: auto;
}

.site-search__field {
	display: flex;
	align-items: center;
	width: 100%;
	height: 62px;
	padding: 8px 8px 8px 16px;
	border-radius: 100px;
	background: #f2f2f2;
}

.site-search__input-icon,
.site-search-result__search-icon {
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.site-search-panel .search-field {
	min-width: 0;
	flex: 1;
	height: 100%;
	padding: 0 10px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #000;
	font-size: 20px;
	line-height: 1;
}

.site-search-panel .search-field::-webkit-search-cancel-button {
	display: none;
}

.site-search-panel .search-submit {
	display: grid;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #000;
	cursor: pointer;
}

.site-search__submit-icon {
	display: block;
	width: 46px;
	height: 46px;
}

.site-search__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 19px;
	margin-top: 16px;
}

.site-search__actions:has(.site-search__clear[hidden]),
.site-search__results[hidden] {
	display: none;
}

.site-search__clear {
	padding: 0;
	border: 0;
	background: transparent;
	color: #4c4c4c;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: -.02em;
	cursor: pointer;
}

.site-search__clear:hover,
.site-search__clear:focus-visible {
	color: #000;
}

.site-search__results {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.site-search-result {
	display: flex;
	align-items: center;
	height: 45px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d0d0d0;
	gap: 10px;
	color: #000;
}

.site-search-result:hover,
.site-search-result:focus-visible {
	color: #000;
}

.site-search-result__search {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
}

.site-search-result__title {
	min-width: 0;
	flex: 1;
	font-size: 20px;
	line-height: 1;
}

.site-search-result__close {
	display: grid;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	place-items: center;
}

.site-search-result__close-icon {
	display: block;
	width: 13px;
	height: 13px;
}

@media (max-width: 1024px) {
	.site-search-panel {
		top: 88px;
		right: 20px;
		left: 20px;
		width: auto;
		padding: 20px;
		transform: none;
	}
}

@media (max-width: 860px) {
	.site-search-panel {
		top: 72px;
		right: 20px;
		left: 20px;
		width: auto;
		padding: 20px;
	}

	.site-search__field {
		height: 54px;
		padding-left: 14px;
	}

	.site-search-panel .search-field,
	.site-search-result__title {
		font-size: 16px;
	}

	.site-search-panel .search-submit,
	.site-search__submit-icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.site-search-result__search {
		flex-basis: 32px;
		width: 32px;
	}
}

@media (min-width: 1025px) {
	.site-navigation {
		position: relative;
	}

	.site-menu > .menu-item--mega {
		position: static;
	}

	:is(.home, .has-hero-header) .site-menu > .menu-item--mega {
		position: static;
	}

	.site-menu > .menu-item--mega > .mega-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: 50%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: min(1400px, calc(100vw - 40px));
		min-height: 559px;
		margin: 0;
		padding: 20px 717px 20px 20px;
		border: 0;
		border-radius: 20px;
		background: #fff;
		box-shadow: 0 4px 20px rgba(6, 37, 91, .1), 0 6px 20px 6px rgba(24, 44, 73, .12);
		gap: 8px;
		list-style: none;
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, -8px);
		transition: opacity var(--cex-transition), transform var(--cex-transition), visibility var(--cex-transition);
	}

	.site-menu > .menu-item--mega > .mega-menu::before {
		position: absolute;
		right: 0;
		bottom: 100%;
		left: 0;
		height: 10px;
		content: '';
	}

	.site-menu > .menu-item--mega:hover > .mega-menu,
	.site-menu > .menu-item--mega.is-open > .mega-menu,
	:is(.home, .has-hero-header) .site-menu > .menu-item--mega:hover > .mega-menu,
	:is(.home, .has-hero-header) .site-menu > .menu-item--mega.is-open > .mega-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}

	.site-menu > .menu-item--mega:not(:hover):not(.is-open):focus-within > .mega-menu,
	:is(.home, .has-hero-header) .site-menu > .menu-item--mega:not(:hover):not(.is-open):focus-within > .mega-menu {
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, -8px);
	}

	.site-menu > .menu-item--mega > .mega-menu > .menu-item {
		flex: 0 0 auto;
		max-width: 100%;
	}

	.site-menu > .menu-item--mega > .mega-menu > .menu-item > a {
		display: flex;
		align-items: center;
		width: max-content;
		max-width: 611px;
		min-height: 0;
		padding: 10px;
		border-bottom: 2px solid transparent;
		gap: 10px;
		color: #cbcbcb;
		font-size: 28px;
		font-weight: 500;
		line-height: normal;
		text-transform: uppercase;
		white-space: normal;
	}

	.site-menu > .menu-item--mega > .mega-menu > .menu-item > a:hover,
	.site-menu > .menu-item--mega > .mega-menu > .menu-item > a:focus-visible,
	.site-menu > .menu-item--mega > .mega-menu > .menu-item.is-active > a,
	.site-menu > .menu-item--mega > .mega-menu > .current-menu-item > a {
		min-height: 61px;
		border-bottom-color: #ebc811;
		background: transparent;
		color: #333;
	}

	.mega-menu__link-icon {
		display: none;
		flex: 0 0 20px;
		width: 20px;
		height: 20px;
		transform: rotate(45deg);
	}

	.site-menu > .menu-item--mega > .mega-menu > .menu-item:hover .mega-menu__link-icon,
	.site-menu > .menu-item--mega > .mega-menu > .menu-item:focus-within .mega-menu__link-icon,
	.site-menu > .menu-item--mega > .mega-menu > .menu-item.is-active .mega-menu__link-icon,
	.site-menu > .menu-item--mega > .mega-menu > .current-menu-item .mega-menu__link-icon {
		display: block;
	}

	.site-menu > .menu-item--mega > .mega-menu > .mega-menu__visual {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 609px;
		height: 467px;
		overflow: hidden;
		border-radius: 20px;
		pointer-events: none;
	}

	.mega-menu__image {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 1024px) {
	.mega-menu__visual,
	.mega-menu__link-icon {
		display: none;
	}
}

:is(.home, .has-hero-header) .site-main {
	min-height: 0;
}

.hero-section {
	position: relative;
	height: 100vh;
	min-height: 400px;
	max-height: 900px;
	overflow: hidden;
	background: #000;
	color: #fff;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
	height: 100%;
}

.hero-swiper {
	position: relative;
}

.hero-slide {
	position: relative;
	overflow: hidden;
}

.hero-section__media,
.hero-section__video,
.hero-section__scrim {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-section__video {
	display: block;
	object-fit: cover;
	object-position: center center;
}

.hero-section__scrim {
	background: rgba(0, 0, 0, .43);
}

.hero-section__inner {
	position: relative;
	z-index: 2;
	width: calc(100% - 120px);
	max-width: 1800px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	padding-top: clamp(48px, min(55.43vh, calc(100vh - 402px)), 500px);
}

.hero-section__copy {
	display: flex;
	align-items: end;
	justify-content: space-between;
	width: 100%;
	min-height: 200px;
}

.hero-section__title {
	max-width: 928px;
	margin: 0 -100px 0 0;
	font-size: clamp(48px, 4.01vw, 77px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-section__aside {
	display: flex;
	flex: 0 0 583px;
	flex-direction: column;
	justify-content: space-between;
	min-height: 144px;
	align-items: flex-start;
}

.hero-section__description {
	max-width: 583px;
	margin: 0;
	color: #b0b0b0;
	font-size: clamp(20px, 1.46vw, 28px);
	font-weight: 400;
	line-height: 1.2;
}

.hero-section__contact {
	display: inline-flex;
	align-items: center;
	gap: 25px;
	color: #ebc811;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero-section__contact:hover,
.hero-section__contact:focus-visible {
	color: #fff;
}

.hero-section__contact-icon {
	width: 59px;
	height: 59px;
}

.hero-section__finder-wrap {
	position: static;
	display: flex;
	width: min(681px, calc(100% - 48px));
	margin: 46px auto 0;
}

.hero-finder {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	height: 98px;
	overflow: hidden;
	border-radius: 100px;
	background: #fff;
}

.hero-finder__copy {
	display: flex;
	align-self: stretch;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
	flex: 1;
	padding: 20px 48px 0 0;
	color: #000;
	transition: color var(--cex-transition);
}

a.hero-finder__copy:hover,
a.hero-finder__copy:focus-visible {
	color: #ebc811;
}

a.hero-finder__copy:focus-visible {
	border-radius: 4px;
	outline: 2px solid #fff;
	outline-offset: 6px;
}

.hero-finder__eyebrow {
	display: block;
	margin-bottom: 6px;
	color: #9c9c9c;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}

.hero-finder__title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.hero-finder__title {
	color: currentColor;
	font-size: 28px;
	font-weight: 500;
	line-height: 34px;
	white-space: nowrap;
}

.hero-finder__arrow {
	width: 32px;
	height: 15px;
	flex: 0 0 auto;
}

.hero-swiper__pagination.swiper-pagination {
	position: absolute;
	bottom: 25px;
	left: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: auto;
	height: 6px;
	transform: translateX(-50%);
}

.hero-swiper__pagination .swiper-pagination-bullet {
	flex: 0 0 auto;
	display: block;
	width: 6px;
	height: 6px;
	padding: 0;
	margin: 0 !important;
	border: 0;
	border-radius: 100px;
	background: rgba(255, 255, 255, .6);
	opacity: 1;
	cursor: pointer;
	will-change: width, background-color;
	transition: width 520ms cubic-bezier(.22, .61, .36, 1), background-color 260ms ease;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
	width: 81px;
	background: #fff;
}

.hero-swiper__pagination .swiper-pagination-bullet:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 4px;
}

.has-js [data-animate] .hero-section__copy,
.has-js [data-animate] .hero-section__finder-wrap {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, .61, .36, 1);
}

.has-js [data-animate].is-visible .hero-section__copy,
.has-js [data-animate].is-visible .hero-section__finder-wrap {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1600px) and (min-width: 1025px) {
	:is(.home, .has-hero-header) .site-navigation {
		width: min(60%, 980px);
		padding-inline: 28px;
	}

	:is(.home, .has-hero-header) .site-menu a {
		font-size: 15px;
	}

	.hero-section__title {
		font-size: clamp(48px, 4vw, 68px);
	}
}

@media (max-width: 1200px) and (min-width: 1025px) {
	.hero-section__inner {
		width: calc(100% - 80px);
		padding-top: clamp(32px, min(270px, calc(100vh - 460px)), 270px);
	}

	.hero-section__copy {
		display: block;
		min-height: 0;
	}

	.hero-section__title {
		max-width: 760px;
		margin-right: 0;
		font-size: clamp(48px, 4.5vw, 60px);
		line-height: 1.12;
	}

	.hero-section__aside {
		min-height: 0;
		margin-top: 24px;
		gap: 18px;
	}

	.hero-section__description {
		font-size: clamp(20px, 2.4vw, 24px);
	}

	.hero-section__finder-wrap {
		width: min(681px, 100%);
		margin-top: 24px;
	}
}

@media (max-width: 1024px) {
	:is(.home, .has-hero-header) .site-header__inner {
		width: calc(100% - 40px);
		height: 72px;
		margin-top: 16px;
	}

	:is(.home, .has-hero-header) .custom-logo-link {
		left: 0;
		width: 128px;
		height: 72px;
	}

	:is(.home, .has-hero-header) .custom-logo {
		width: 128px;
		transform: none;
	}

	:is(.home, .has-hero-header) .site-header__tools {
		display: none;
	}

	:is(.home, .has-hero-header) .menu-toggle {
		display: block;
	}

	:is(.home, .has-hero-header) .site-navigation {
		top: 72px;
		right: 0;
		bottom: auto;
		left: 0;
		width: 100%;
		height: auto;
		min-height: 0;
		padding: 20px;
		border: 1px solid rgba(255, 255, 255, .15);
		border-radius: 24px;
		background: rgba(0, 0, 0, .88);
		transform: translateY(-10px);
		visibility: hidden;
		opacity: 0;
		transition: opacity var(--cex-transition), transform var(--cex-transition), visibility var(--cex-transition);
	}

	:is(.home, .has-hero-header) .site-navigation.is-open {
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
	}

	:is(.home, .has-hero-header) .site-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	:is(.home, .has-hero-header) .site-menu a {
		min-height: 48px;
		font-size: 16px;
	}

	:is(.home, .has-hero-header) .site-menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		min-width: 0;
		padding: 0 0 0 16px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	:is(.home, .has-hero-header) .site-menu .sub-menu a {
		font-size: 14px;
	}

	:is(.home, .has-hero-header) .site-navigation:not(.is-open) .site-menu > .menu-item--mega > .mega-menu {
		display: none;
	}

	.hero-section__inner {
		width: calc(100% - 40px);
	}

	.hero-section__inner {
		padding-top: clamp(32px, min(240px, calc(100vh - 460px)), 240px);
	}

	.hero-section__copy {
		display: block;
		min-height: 0;
	}

	.hero-section__title {
		max-width: none;
		margin-right: 0;
		font-size: clamp(48px, 5.5vw, 56px);
		line-height: 1.12;
	}

	.hero-section__aside {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		min-height: 0;
		margin-top: 24px;
		gap: 22px;
	}

	.hero-section__description {
		font-size: clamp(20px, 3vw, 26px);
	}

	.hero-section__finder-wrap {
		width: min(681px, calc(100% - 40px));
		margin-top: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.has-js [data-animate] .hero-section__copy,
	.has-js [data-animate] .hero-section__finder-wrap {
		transition: none;
		transform: none;
	}

}

@media (max-width: 600px) {
	.hero-section__inner {
		padding-top: clamp(32px, min(185px, calc(100vh - 400px)), 185px);
	}

	.hero-section__title {
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.1;
	}

	.hero-section__aside {
		margin-top: 18px;
		gap: 16px;
	}

	.hero-section__description {
		font-size: 17px;
		line-height: 1.2;
	}

	.hero-section__contact {
		gap: 12px;
		font-size: 16px;
	}

	.hero-section__contact-icon {
		width: 42px;
		height: 42px;
	}

	.hero-finder {
		flex-direction: row;
		gap: 0;
		height: 70px;
		min-height: 70px;
		border-radius: 40px;
		align-items: center;
	}

	.hero-section .hero-finder .catalog-category-switcher {
		flex: 0 0 52%;
		width: 52%;
		height: 70px;
		padding: 8px;
	}

	.hero-section .hero-finder .catalog-category-switcher__inner {
		padding: 8px 10px;
	}

	.hero-section .hero-finder .catalog-category-switcher__item {
		flex-basis: clamp(26px, 7.66vw, 32px);
		width: clamp(26px, 7.66vw, 32px);
		height: clamp(26px, 7.66vw, 32px);
	}

	.hero-section .hero-finder .catalog-category-switcher__item + .catalog-category-switcher__item::before {
		left: -13px;
		height: 16px;
	}

	.hero-section .hero-finder .catalog-category-switcher__icon {
		max-width: clamp(26px, 7.66vw, 32px);
		max-height: clamp(26px, 7.66vw, 32px);
	}

	.hero-finder__copy {
		align-self: stretch;
		width: auto;
		padding: 0 6px 0 10px;
		justify-content: center;
		text-align: left;
	}

	.hero-finder__eyebrow {
		margin-bottom: 2px;
		font-size: 12px;
		line-height: 14px;
	}

	.hero-finder__title-row {
		gap: 4px;
	}

	.hero-finder__title {
		font-size: clamp(12px, 3.4vw, 14px);
		line-height: 20px;
	}

	.hero-finder__arrow {
		width: 20px;
		height: 10px;
	}
}

/* WooCommerce catalog hero: Figma node 116:3476. */
.has-hero-header .site-menu .current-menu-item > a,
.has-hero-header .site-menu .current-menu-ancestor > a {
	color: #fff;
}

.has-hero-header .site-menu .current-menu-item > a:hover,
.has-hero-header .site-menu .current-menu-item > a:focus-visible,
.has-hero-header .site-menu .current-menu-ancestor > a:hover,
.has-hero-header .site-menu .current-menu-ancestor > a:focus-visible {
	color: #ebc811;
}

.catalog-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.catalog-hero__media,
.catalog-hero__image,
.catalog-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.catalog-hero__image {
	object-fit: cover;
	object-position: center;
}

.woocommerce .catalog-hero__image,
.woocommerce-page .catalog-hero__image {
	height: 100%;
}

.catalog-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

/* News archive hero: Figma node 153:6195. */
.news-archive-hero {
	position: relative;
	min-height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.news-archive-hero__media,
.news-archive-hero__image,
.news-archive-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.news-archive-hero__image {
	object-fit: cover;
	object-position: center;
}

.news-archive-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

.news-archive-hero__inner {
	position: relative;
	z-index: 1;
	min-height: 638px;
}

.news-archive-hero__title {
	position: absolute;
	top: 406px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.news-archive-tabs {
	position: absolute;
	top: 554px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px;
	border: 1px solid #fff;
	border-radius: 62px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
	transform: translateX(-50%);
}

.news-archive-tabs__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 46px;
	color: #000;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color var(--cex-transition), color var(--cex-transition);
}

.news-archive-tabs__link:hover,
.news-archive-tabs__link:focus-visible,
.news-archive-tabs__link.is-active {
	background: #000;
	color: #fff;
}

.news-archive-tabs__link:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.has-js .news-archive-hero[data-animate] .news-archive-hero__title,
.has-js .news-archive-hero[data-animate] .news-archive-tabs {
	opacity: 0;
	transform: translate(-50%, 18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .news-archive-hero[data-animate] .news-archive-tabs {
	transition-delay: 90ms;
}

.has-js .news-archive-hero[data-animate].is-visible .news-archive-hero__title,
.has-js .news-archive-hero[data-animate].is-visible .news-archive-tabs {
	opacity: 1;
	transform: translate(-50%, 0);
}

.news-archive {
	padding: 50px 0 120px;
	background: #f9f9f9;
}

.news-archive-breadcrumbs {
	padding-top: 50px;
	background: #f9f9f9;
}

.news-archive-breadcrumbs__nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.news-archive-breadcrumbs__nav a {
	color: #9e9e9e;
	text-decoration: none;
}

.news-archive-breadcrumbs__nav a:hover,
.news-archive-breadcrumbs__nav a:focus-visible {
	color: #000;
}

.news-archive-breadcrumbs__nav a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.news-archive-breadcrumbs__separator,
.news-archive-breadcrumbs__icon {
	display: block;
	width: 16px;
	height: 16px;
}

.news-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.news-archive__card {
	min-width: 0;
}

.news-archive__link {
	position: relative;
	display: block;
	min-height: 100%;
	aspect-ratio: 1 / 1.16;
	overflow: hidden;
	border: 1px solid #9f9f9f;
	background: #202020;
	color: #fff;
	text-decoration: none;
}

.news-archive__media,
.news-archive__image,
.news-archive__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.news-archive__image {
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.22, .61, .36, 1);
}

.news-archive__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .72) 14%, rgba(0, 0, 0, .06) 61%);
	transition: background var(--cex-transition);
}

.news-archive__link:hover .news-archive__image,
.news-archive__link:focus-visible .news-archive__image {
	transform: scale(1.035);
}

.news-archive__link:hover .news-archive__overlay,
.news-archive__link:focus-visible .news-archive__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .8) 12%, rgba(0, 0, 0, 0) 64%);
}

.news-archive__category {
	position: absolute;
	z-index: 1;
	top: 24px;
	left: 24px;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 46px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
	color: #161616;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
}

.news-archive__details {
	position: absolute;
	z-index: 1;
	right: 88px;
	bottom: 28px;
	left: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-transform: uppercase;
}

.news-archive__date {
	color: #d0d0d0;
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1;
}

.news-archive__title {
	font-family: Inter, Arial, sans-serif;
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 600;
	line-height: 1;
}

.news-archive__arrow {
	position: absolute;
	z-index: 1;
	right: 24px;
	bottom: 24px;
	width: 59px;
	height: 59px;
}

.news-archive__arrow-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.news-archive__link:focus-visible {
	outline: 3px solid #ebc811;
	outline-offset: 3px;
}

.news-archive__pagination {
	margin-top: 48px;
}

.news-archive__pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-archive__pagination a,
.news-archive__pagination span {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	text-decoration: none;
}

.news-archive__pagination .current,
.news-archive__pagination a:hover,
.news-archive__pagination a:focus-visible {
	background: #000;
	color: #fff;
}

/* News detail: Figma nodes 153:6711 and 2051:5168. */
.news-article-hero {
	position: relative;
	min-height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.news-article-hero__media,
.news-article-hero__image,
.news-article-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.news-article-hero__image {
	object-fit: cover;
	object-position: center;
}

.news-article-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

.news-article-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 638px;
	padding-bottom: 56px;
}

.news-article-hero__date,
.news-article-hero__title {
	margin: 0;
}

.news-article-hero__date {
	color: #eaeaea;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 24px;
}

.news-article-hero__title {
	width: min(100%, 1450px);
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.has-js .news-article-hero[data-animate] .news-article-hero__date,
.has-js .news-article-hero[data-animate] .news-article-hero__title {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .news-article-hero[data-animate] .news-article-hero__title {
	transition-delay: 90ms;
}

.has-js .news-article-hero[data-animate].is-visible .news-article-hero__date,
.has-js .news-article-hero[data-animate].is-visible .news-article-hero__title {
	opacity: 1;
	transform: translateY(0);
}

.news-article {
	padding: 50px 0 120px;
	background: #f9f9f9;
	color: #000;
}

.news-article__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.news-article__breadcrumbs a {
	color: #9e9e9e;
	text-decoration: none;
}

.news-article__breadcrumbs a:hover,
.news-article__breadcrumbs a:focus-visible {
	color: #000;
}

.news-article__breadcrumbs a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.news-article__breadcrumb-separator,
.news-article__breadcrumb-icon {
	display: block;
	width: 16px;
	height: 16px;
}

.news-article__entry {
	margin-top: 50px;
}

.news-article__intro {
	max-width: 1345px;
	margin-bottom: 42px;
}

.news-article__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	color: #5e5e5e;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.news-article__category {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 46px;
	background: #000;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
	color: #fff;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	text-transform: none;
}

.news-article__title {
	margin: 30px 0 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.news-article__excerpt {
	margin: 30px 0 0;
	color: #5e5e5e;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.news-article__content {
	color: #5e5e5e;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.news-article__content > :first-child {
	margin-top: 0;
}

.news-article__content > * {
	margin-top: 40px;
	margin-bottom: 0;
}

.news-article__content .wp-block-image,
.news-article__content .wp-block-gallery {
	margin-right: 0;
	margin-left: 0;
}

.news-article__content .wp-block-image img {
	display: block;
	width: 100%;
	max-height: 547px;
	object-fit: cover;
}

.news-article__content h2,
.news-article__content h3 {
	margin-bottom: 24px;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	line-height: 1;
	text-transform: uppercase;
}

.news-article__content h2 {
	font-size: 34px;
	font-weight: 600;
}

.news-article__content h3 {
	font-size: 28px;
	font-weight: 500;
}

.news-article__content p {
	margin-top: 24px;
	margin-bottom: 0;
}

.news-article__content .wp-block-columns {
	gap: 21px;
	margin-top: 40px;
	margin-bottom: 0;
}

.news-article__content .wp-block-column {
	margin: 0;
}

.news-article__content .wp-block-column .wp-block-image {
	margin: 0;
}

.news-article__content .wp-block-column .wp-block-image img {
	height: 406px;
	max-height: none;
}

.news-article:has(.news-article__catalog-cta) {
	padding-bottom: 50px;
}

.news-article__catalog-cta {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.news-article__catalog-link,
.news-article__catalog-link:hover {
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.news-article__catalog-link:hover {
	color: var(--cex-color-accent-hover);
}

.news-article__catalog-link:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.news-article-hero,
	.news-article-hero__inner {
		min-height: 560px;
	}

	.news-article-hero__inner { padding-bottom: 50px; }
	.news-article-hero__title { font-size: clamp(48px, 7.5vw, 64px); }
	.news-article { padding: 42px 0 80px; }
	.news-article__entry { margin-top: 42px; }
	.news-article__content { font-size: 20px; }
	.news-article__content .wp-block-image img { max-height: 460px; }
	.news-article__content .wp-block-column .wp-block-image img { height: 300px; }
}

@media (max-width: 600px) {
	.news-article-hero,
	.news-article-hero__inner { min-height: 500px; }
	.news-article-hero__inner { padding-bottom: 38px; }
	.news-article-hero__date { font-size: 16px; margin-bottom: 18px; }
	.news-article-hero__title { width: calc(100% - (var(--cex-gutter) * 2)); font-size: var(--cex-mobile-heading-prominent); line-height: 1.05; }
	.news-article { padding: 32px 0 56px; }
	.news-article__breadcrumbs { flex-wrap: nowrap; overflow-x: auto; font-size: 15px; white-space: nowrap; }
	.news-article__entry { margin-top: 32px; }
	.news-article__meta { gap: 14px; font-size: 15px; }
	.news-article__category { min-height: 38px; font-size: 16px; }
	.news-article__title { margin-top: 24px; font-size: var(--cex-mobile-heading); line-height: 1.05; }
	.news-article__excerpt,
	.news-article__content { font-size: 18px; line-height: 1.25; }
	.news-article__excerpt { margin-top: 24px; }
	.news-article__content > * { margin-top: 30px; }
	.news-article__content h2 { font-size: 28px; }
	.news-article__content h3 { font-size: 22px; }
	.news-article__content .wp-block-image img,
	.news-article__content .wp-block-column .wp-block-image img { height: auto; max-height: 380px; }
	.news-article__content .wp-block-columns { gap: 14px; }
	.news-article__catalog-cta { margin-top: 36px; }
	.news-article__catalog-link,
	.news-article__catalog-link:hover { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.has-js .news-article-hero[data-animate] .news-article-hero__date,
	.has-js .news-article-hero[data-animate] .news-article-hero__title { transition: none; }
}

@media (max-width: 1024px) {
	.news-archive-hero,
	.news-archive-hero__inner {
		min-height: 560px;
	}

	.news-archive-hero__title {
		top: 285px;
		font-size: clamp(48px, 7.5vw, 64px);
	}

	.news-archive-tabs {
		top: 420px;
	}

	.news-archive {
		padding: 42px 0 80px;
	}

	.news-archive-breadcrumbs {
		padding-top: 42px;
	}

	.news-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 600px) {
	.news-archive-hero,
	.news-archive-hero__inner {
		min-height: 500px;
	}

	.news-archive-hero__image {
		object-position: 50% 56%;
	}

	.news-archive-hero__title {
		top: 210px;
		width: calc(100% - (var(--cex-gutter) * 2));
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.05;
	}

	.news-archive-tabs {
		top: 315px;
		max-width: calc(100% - (var(--cex-gutter) * 2));
		overflow-x: auto;
		justify-content: flex-start;
	}

	.news-archive-tabs__link {
		min-height: 40px;
		font-size: 16px;
	}

	.news-archive {
		padding: 32px 0 56px;
	}

	.news-archive-breadcrumbs {
		padding-top: 32px;
	}

	.news-archive-breadcrumbs__nav {
		font-size: 15px;
	}

	.news-archive__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.news-archive__link {
		aspect-ratio: 1 / 1.1;
	}

	.news-archive__category {
		top: 18px;
		left: 18px;
		min-height: 38px;
		padding: 7px 12px;
		font-size: 16px;
	}

	.news-archive__details {
		right: 74px;
		bottom: 24px;
		left: 18px;
		gap: 10px;
	}

	.news-archive__date {
		font-size: 15px;
	}

	.news-archive__title {
		font-size: 24px;
		line-height: 1.05;
	}

	.news-archive__arrow {
		right: 18px;
		bottom: 18px;
		width: 50px;
		height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-archive-tabs__link,
	.news-archive__image,
	.news-archive__overlay,
	.has-js .news-archive-hero[data-animate] .news-archive-hero__title,
	.has-js .news-archive-hero[data-animate] .news-archive-tabs {
		transition: none;
	}
}

/* Delivery and payment hero: Figma node 152:5666. */
.delivery-payment-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.delivery-payment-hero__media,
.delivery-payment-hero__image,
.delivery-payment-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.delivery-payment-hero__image {
	object-fit: cover;
	object-position: center;
}

.delivery-payment-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

/* Privacy policy hero and content: Figma node 2051:5175. */
.privacy-policy-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.privacy-policy-hero__media,
.privacy-policy-hero__image,
.privacy-policy-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.privacy-policy-hero__image {
	object-fit: cover;
	object-position: center;
}

.privacy-policy-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

/* Contacts hero: Figma node 154:7099. */
.contacts-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.contacts-hero__media,
.contacts-hero__image,
.contacts-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.contacts-hero__image {
	object-fit: cover;
	object-position: 50% 80.2%;
}

.contacts-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

/* Brands directory: Figma nodes 141:5955 and 141:6034. */
.brands-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #050708;
	color: #fff;
}

.brands-hero__media,
.brands-hero__image,
.brands-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.brands-hero__image {
	object-fit: cover;
	object-position: 50% 64.2%;
}

.brands-hero__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, rgba(0, 0, 0, 0) 50%), rgba(0, 0, 0, .4);
}

.brands-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
}

.brands-hero__title {
	position: absolute;
	top: 384px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.brands-hero__finder {
	position: absolute;
	top: 510px;
	left: 50%;
	display: flex;
	width: 548px;
	height: 98px;
	padding: 12px;
	border-radius: 100px;
	background: #fff;
	color: #000;
	transform: translateX(-50%);
}

.brands-hero__switcher.catalog-category-switcher {
	position: static;
	flex: 0 0 263px;
	width: 263px;
	height: 74px;
	padding: 0;
	background: transparent;
	transform: none;
}

.brands-hero__alphabet {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 0 13px 0 20px;
}

.brands-hero__search-label {
	color: #9c9c9c;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1;
	white-space: nowrap;
}

.brands-hero__search-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 17px;
	margin-top: 5px;
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
}

.brands-hero__search-link:focus-visible {
	border-radius: 4px;
	outline: 2px solid #ebc811;
	outline-offset: 4px;
}

.brands-hero__search-icon {
	display: block;
	width: 32px;
	height: 16px;
}

.brands-directory {
	padding: 30px 0 87px;
	background: #f9f9f9;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.brands-directory__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	margin-bottom: 52px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.brands-directory__breadcrumbs a {
	color: #9e9e9e;
}

.brands-directory__breadcrumbs a:hover,
.brands-directory__breadcrumbs a:focus-visible {
	color: #000;
}

.brands-directory__breadcrumbs a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.brands-directory__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #9e9e9e;
}

.brands-directory__separator-icon {
	width: 16px;
	height: 16px;
}

.brands-directory__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.brands-directory__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 196px;
	padding: 32px 38px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #fff;
}

.brands-directory__logo {
	display: block;
	width: 100%;
	max-width: 280px;
	max-height: 113px;
	object-fit: contain;
}

/* Editorial brand hero: Figma node 141:6298. */
.brand-detail-hero {
	position: relative;
	height: 638px;
	overflow: hidden;
	background: #000;
	color: #fff;
}

.brand-detail-hero__media,
.brand-detail-hero__overlay {
	position: absolute;
	inset: 0;
}

.brand-detail-hero__background {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.brand-detail-hero__overlay {
	background: linear-gradient(29.106deg, rgba(0, 0, 0, .7) 30.512%, rgba(0, 0, 0, 0) 45.055%), rgba(0, 0, 0, .3);
}

.brand-detail-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	padding-bottom: 29px;
}

.brand-detail-hero__logo {
	display: block;
	width: min(540px, calc(100% - 40px));
	height: 73px;
	object-fit: contain;
}

.brands-directory__card--link {
	transition: background-color var(--cex-transition), box-shadow var(--cex-transition);
}

.brands-directory__card--link:hover {
	background: #f5f5f5;
}

.brands-directory__card--link:focus-visible {
	position: relative;
	z-index: 1;
	outline: 2px solid #ebc811;
	outline-offset: -3px;
}

/* Editorial brand about block: Figma node 141:6234. */
.brand-about {
	padding: 30px 0 60px;
	background: #f9f9f9;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.brand-about__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.brand-about__breadcrumbs a:first-child {
	color: #9e9e9e;
}

.brand-about__breadcrumbs a:hover,
.brand-about__breadcrumbs a:focus-visible {
	color: #000;
}

.brand-about__breadcrumbs a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.brand-about__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #9e9e9e;
}

.brand-about__separator-icon {
	width: 16px;
	height: 16px;
}

.brand-about__header,
.brand-about__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 20px;
}

.brand-about__header {
	margin-top: 50px;
}

.brand-about__eyebrow {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.brand-about__title {
	margin: 28px 0 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.brand-about__summary {
	padding-top: 42px;
}

.brand-about__lead,
.brand-about__intro,
.brand-about__copy {
	font-weight: 400;
}

.brand-about__lead {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.brand-about__intro,
.brand-about__copy {
	color: #5e5e5e;
	font-size: 20px;
	line-height: 1.2;
}

.brand-about__lead p,
.brand-about__intro p,
.brand-about__copy p {
	margin: 0;
}

.brand-about__intro {
	margin-top: 23px;
}

.brand-about__content {
	margin-top: 97px;
}

.brand-about__left-column {
	max-width: 766px;
}

.brand-about__small-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 738px;
	max-width: 100%;
	gap: 24px;
}

.brand-about__small-image {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.brand-about__copy--first {
	width: 738px;
	max-width: 100%;
	margin-top: 41px;
}

.brand-about__copy--second {
	width: 766px;
	max-width: 100%;
	margin-top: 24px;
}

.brand-about__feature-media {
	position: relative;
	height: 505px;
	overflow: hidden;
	background: #fff;
}

.brand-about__feature-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.has-js .brand-about[data-animate] .brand-about__heading,
.has-js .brand-about[data-animate] .brand-about__summary,
.has-js .brand-about[data-animate] .brand-about__left-column,
.has-js .brand-about[data-animate] .brand-about__feature-media {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .brand-about[data-animate].is-visible .brand-about__heading,
.has-js .brand-about[data-animate].is-visible .brand-about__summary,
.has-js .brand-about[data-animate].is-visible .brand-about__left-column,
.has-js .brand-about[data-animate].is-visible .brand-about__feature-media {
	opacity: 1;
	transform: translateY(0);
}

.has-js .brands-hero[data-animate] .brands-hero__title,
.has-js .brands-hero[data-animate] .brands-hero__finder,
.has-js .brands-directory[data-animate] .brands-directory__grid,
.has-js .brand-detail-hero[data-animate] .brand-detail-hero__logo {
	opacity: 0;
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .brands-hero[data-animate] .brands-hero__title,
.has-js .brands-hero[data-animate] .brands-hero__finder {
	transform: translate(-50%, 18px);
}

.has-js .brand-detail-hero[data-animate] .brand-detail-hero__logo {
	transform: translateY(18px);
}

.has-js .brands-directory[data-animate] .brands-directory__grid {
	transform: translateY(18px);
}

.has-js .brands-hero[data-animate].is-visible .brands-hero__title,
.has-js .brands-hero[data-animate].is-visible .brands-hero__finder {
	opacity: 1;
	transform: translate(-50%, 0);
}

.has-js .brand-detail-hero[data-animate].is-visible .brand-detail-hero__logo {
	opacity: 1;
	transform: translateY(0);
}

.has-js .brands-directory[data-animate].is-visible .brands-directory__grid {
	opacity: 1;
	transform: translateY(0);
}

/* Editorial brand quote block: Figma node 141:6339. */
.brand-quote {
	position: relative;
	min-height: 626px;
	overflow: hidden;
	background: #282828;
	color: #fff;
	font-family: Inter, Arial, sans-serif;
}

.brand-quote__decor,
.brand-quote__container {
	position: absolute;
	inset: 0;
}

.brand-quote__decor {
	pointer-events: none;
}

.brand-quote__tyre {
	position: absolute;
	top: -85px;
	left: calc(50% - 1897px);
	display: block;
	width: 2751px;
	max-width: none;
	height: 1572px;
	opacity: .1;
}

.brand-quote__wordmark {
	position: absolute;
	top: -7px;
	left: 7.29%;
	width: 93.74%;
	height: 227.5px;
}

.brand-quote__wordmark-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.brand-quote__container {
	display: flex;
	align-items: flex-start;
	padding-top: 146px;
}

.brand-quote__text {
	width: 844px;
	max-width: calc(50% - 10px);
	margin: 0 0 0 calc(50% + 10px);
	font-size: 34px;
	font-weight: 400;
	line-height: 1.28;
	text-transform: uppercase;
}

.has-js .brand-quote[data-animate] .brand-quote__text {
	opacity: 0;
	transition: opacity 680ms ease, transform 680ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .brand-quote[data-animate] .brand-quote__text {
	transform: translateY(18px);
}

.has-js .brand-quote[data-animate].is-visible .brand-quote__text {
	opacity: 1;
	transform: translateY(0);
}

/* Editorial brand geography and statistics: Figma node 142:6664. */
.brand-geography {
	position: relative;
	min-height: 989px;
	overflow: hidden;
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.brand-geography__visual {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1920px;
	height: 989px;
	transform: translateX(-50%);
	transform-origin: top center;
	pointer-events: none;
}

.brand-geography__map {
	position: absolute;
	top: 102px;
	left: 163px;
	display: block;
	width: 1594.694px;
	height: 786.001px;
}

.brand-geography__route,
.brand-geography__route img {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-geography__route {
	overflow: visible;
}

.brand-geography__route img {
	max-width: none;
}

.brand-geography__route--one {
	top: 296.55px;
	left: 599px;
	width: 557.548px;
	height: 114.876px;
}

.brand-geography__route--one img {
	width: 557.28px;
	height: 60.629px;
	transform: rotate(-173.29deg);
}

.brand-geography__route--two {
	top: 270px;
	left: 964.28px;
	width: 205.261px;
	height: 114.655px;
}

.brand-geography__route--two img {
	width: 213.374px;
	height: 33.579px;
	transform: rotate(-155.79deg);
}

.brand-geography__route--three {
	top: 334.7px;
	left: 619.4px;
	width: 529.102px;
	height: 345.57px;
}

.brand-geography__route--three img {
	width: 554.256px;
	height: 95.513px;
	transform: rotate(151.41deg);
}

.brand-geography__route--four {
	top: 305.25px;
	left: 1178.48px;
	width: 91.723px;
	height: 94.383px;
}

.brand-geography__route--four img {
	width: 104.936px;
	height: 36.458px;
	transform: scaleY(-1) rotate(-46.48deg);
}

.brand-geography__route--five {
	top: 406.58px;
	left: 961px;
	width: 218.489px;
	height: 111.52px;
}

.brand-geography__route--five img {
	width: 227.691px;
	height: 35.07px;
	transform: rotate(157.34deg);
}

.brand-geography__point {
	position: absolute;
	top: 402px;
	left: 1185px;
	display: block;
	width: 18px;
	height: 18px;
}

.brand-geography__point-svg {
	display: block;
	width: 18px;
	height: 18px;
}

.brand-geography__container {
	position: relative;
	z-index: 1;
	padding-top: 750px;
}

.brand-geography__statistics {
	display: grid;
	grid-template-columns: 474px 419px 618px;
	justify-content: space-between;
	gap: 30px;
}

.brand-geography__statistic {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.brand-geography__value,
.brand-geography__description {
	margin: 0;
	font-weight: 400;
}

.brand-geography__value {
	font-size: 110px;
	line-height: .75;
	letter-spacing: -.03em;
	white-space: nowrap;
}

.brand-geography__description {
	color: #5e5e5e;
	font-size: 24px;
	line-height: 26px;
}

.brand-geography__statistic:nth-child(3) .brand-geography__description {
	width: 339px;
}

.has-js .brand-geography[data-animate] .brand-geography__map,
.has-js .brand-geography[data-animate] .brand-geography__routes,
.has-js .brand-geography[data-animate] .brand-geography__point,
.has-js .brand-geography[data-animate] .brand-geography__statistics {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 680ms ease, transform 680ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .brand-geography[data-animate].is-visible .brand-geography__map,
.has-js .brand-geography[data-animate].is-visible .brand-geography__routes,
.has-js .brand-geography[data-animate].is-visible .brand-geography__point,
.has-js .brand-geography[data-animate].is-visible .brand-geography__statistics {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1600px) {
	.brand-geography {
		min-height: 820px;
	}

	.brand-geography__visual {
		transform: translateX(-50%) scale(.8);
	}

	.brand-geography__container {
		padding-top: 620px;
		padding-bottom: 60px;
	}

	.brand-geography__statistics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 32px;
	}

	.brand-geography__statistic {
		gap: 24px;
	}

	.brand-geography__value {
		font-size: clamp(52px, 5.5vw, 80px);
	}

	.brand-geography__description {
		font-size: 20px;
		line-height: 1.2;
	}

	.brand-geography__statistic:nth-child(3) .brand-geography__description {
		width: auto;
	}
}

@media (max-width: 1200px) {
	.brand-about__header,
	.brand-about__content {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 42px;
	}

	.brand-about__header {
		margin-top: 42px;
	}

	.brand-about__summary {
		padding-top: 0;
	}

	.brand-about__content {
		margin-top: 52px;
	}

	.brand-about__left-column {
		max-width: none;
	}

	.brand-about__small-media {
		width: 100%;
	}

	.brand-about__small-image {
		height: calc((100vw - (var(--cex-gutter) * 2) - 24px) * .280112);
	}

	.brand-about__feature-media {
		height: auto;
		aspect-ratio: 890 / 505;
	}
}

@media (max-width: 1024px) {
	.brand-about {
		padding: 28px 0 56px;
	}

	.brand-about__header,
	.brand-about__content {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 42px;
	}

	.brand-about__header {
		margin-top: 42px;
	}

	.brand-about__summary {
		padding-top: 0;
	}

	.brand-about__content {
		margin-top: 52px;
	}

	.brand-about__left-column {
		max-width: none;
	}

	.brand-about__small-media {
		width: 100%;
	}

	.brand-about__small-image {
		height: calc((100vw - (var(--cex-gutter) * 2) - 24px) * .280112);
	}

	.brand-about__feature-media {
		height: auto;
		aspect-ratio: 890 / 505;
	}

	.brand-quote {
		min-height: 500px;
	}

	.brand-quote__tyre {
		top: -52px;
		left: -505px;
		width: 1880px;
		height: auto;
	}

	.brand-quote__wordmark {
		left: 3%;
		width: 120%;
		height: 152px;
	}

	.brand-quote__container {
		position: relative;
		min-height: 500px;
		padding-top: 106px;
		padding-bottom: 48px;
	}

	.brand-quote__text {
		width: min(640px, calc(60% - 10px));
		max-width: none;
		margin-left: calc(40% + 10px);
		font-size: clamp(27px, 3.3vw, 34px);
	}

	.brand-geography {
		min-height: 700px;
	}

	.brand-geography__visual {
		transform: translateX(-50%) scale(.65);
	}

	.brand-geography__container {
		padding-top: 505px;
		padding-bottom: 54px;
	}

	.brand-geography__statistics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}

	.brand-geography__statistic {
		gap: 18px;
	}

	.brand-geography__value {
		font-size: clamp(38px, 5.2vw, 70px);
	}

	.brand-geography__description {
		font-size: 18px;
		line-height: 1.2;
	}

	.brand-geography__statistic:nth-child(3) .brand-geography__description {
		width: auto;
	}

	.brand-detail-hero {
		height: 560px;
	}

	.brand-detail-hero__inner {
		padding-bottom: 28px;
	}

	.brand-detail-hero__logo {
		width: min(440px, calc(100% - 40px));
		height: 60px;
	}

	.brands-hero {
		height: 560px;
	}

	.brands-hero__title {
		top: 285px;
		font-size: clamp(48px, 7.5vw, 64px);
	}

	.brands-hero__finder {
		top: 390px;
	}

	.brands-directory {
		padding-bottom: 60px;
	}

	.brands-directory__breadcrumbs {
		margin-bottom: 42px;
	}

	.brands-directory__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.brands-directory__card {
		min-height: 170px;
	}
}

@media (max-width: 600px) {
	.brand-about {
		padding: 28px 0 44px;
	}

	.brand-about__breadcrumbs {
		font-size: 15px;
	}

	.brand-about__header {
		margin-top: 32px;
	}

	.brand-about__eyebrow {
		font-size: 15px;
	}

	.brand-about__title {
		margin-top: 18px;
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.08;
	}

	.brand-about__lead {
		font-size: 21px;
		line-height: 1.2;
	}

	.brand-about__intro,
	.brand-about__copy {
		font-size: 17px;
		line-height: 1.35;
	}

	.brand-about__intro {
		margin-top: 22px;
	}

	.brand-about__content {
		margin-top: 38px;
		row-gap: 38px;
	}

	.brand-about__small-media {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.brand-about__small-image {
		height: calc((100vw - (var(--cex-gutter) * 2)) * .560224);
	}

	.brand-about__copy--first {
		margin-top: 24px;
	}

	.brand-about__copy--second {
		margin-top: 20px;
	}

	.brand-quote {
		min-height: 470px;
	}

	.brand-quote__tyre {
		top: -24px;
		left: 50%;
		width: 980px;
		height: auto;
		transform: translateX(-58%);
	}

	.brand-quote__wordmark {
		top: 0;
		left: -48%;
		width: 196%;
		height: 94px;
	}

	.brand-quote__container {
		position: relative;
		display: flex;
		align-items: flex-end;
		min-height: 470px;
		padding-top: 0;
		padding-bottom: 40px;
	}

	.brand-quote__text {
		width: 100%;
		max-width: 100%;
		margin: 0;
		font-size: clamp(23px, 6.35vw, 28px);
		line-height: 1.22;
	}

	.brand-geography {
		min-height: 0;
	}

	.brand-geography__visual {
		transform: translateX(-50%) scale(.4);
	}

	.brand-geography__container {
		padding-top: 310px;
		padding-bottom: 42px;
	}

	.brand-geography__statistics {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.brand-geography__statistic {
		gap: 12px;
	}

	.brand-geography__value {
		font-size: clamp(48px, 14vw, 70px);
	}

	.brand-geography__description {
		font-size: 18px;
		line-height: 1.25;
	}

	.brand-detail-hero {
		height: 500px;
	}

	.brand-detail-hero__inner {
		padding-bottom: 26px;
	}

	.brand-detail-hero__logo {
		width: min(320px, calc(100% - 40px));
		height: 44px;
	}

	.brands-hero {
		height: 500px;
	}

	.brands-hero__image {
		object-position: 50% 56%;
	}

	.brands-hero__title {
		top: 225px;
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.05;
	}

	.brands-hero__finder {
		top: 300px;
		width: min(548px, calc(100% - 40px));
		height: 86px;
		padding: 9px;
	}

	.brands-hero__switcher.catalog-category-switcher {
		flex-basis: 176px;
		width: 176px;
		height: 68px;
	}

	.brands-hero__switcher .catalog-category-switcher__inner {
		padding: 10px 14px;
	}

	.brands-hero__switcher .catalog-category-switcher__item {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.brands-hero__switcher .catalog-category-switcher__item + .catalog-category-switcher__item::before {
		left: -7px;
		height: 18px;
	}

	.brands-hero__switcher .catalog-category-switcher__icon {
		max-width: 38px;
		max-height: 38px;
	}

	.brands-hero__alphabet {
		padding: 0 8px 0 14px;
	}

	.brands-hero__search-label {
		font-size: 13px;
	}

	.brands-hero__search-link {
		gap: 10px;
		margin-top: 4px;
		font-size: 20px;
	}

	.brands-hero__search-icon {
		width: 24px;
		height: 12px;
	}

	.brands-directory {
		padding: 28px 0 44px;
	}

	.brands-directory__breadcrumbs {
		margin-bottom: 30px;
		font-size: 15px;
	}

	.brands-directory__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brands-directory__card {
		min-height: 122px;
		padding: 22px;
	}

	.brands-directory__logo {
		max-height: 74px;
	}
}

.catalog-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
}

.contacts-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
}

.delivery-payment-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
}

.privacy-policy-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
}

.catalog-hero__title {
	position: absolute;
	top: 384px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.contacts-hero__title {
	position: absolute;
	top: 505px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.delivery-payment-hero__title {
	position: absolute;
	top: 505px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.privacy-policy-hero__title {
	position: absolute;
	top: 505px;
	left: 50%;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.catalog-category-switcher {
	position: absolute;
	top: 510px;
	left: 50%;
	width: 285px;
	height: 98px;
	padding: 12px;
	border-radius: 100px;
	background: #fff;
	transform: translateX(-50%);
}

.catalog-category-switcher__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 13px 20px 14px;
	border-radius: 100px;
	background: #000;
}

.catalog-category-switcher__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 47px;
	width: 47px;
	height: 47px;
	color: #fff;
	opacity: .5;
}

.catalog-category-switcher__item + .catalog-category-switcher__item::before {
	position: absolute;
	top: 50%;
	left: -20px;
	width: 1px;
	height: 21px;
	background: #727272;
	content: '';
	transform: translate(-50%, -50%);
}

.catalog-category-switcher__item:hover,
.catalog-category-switcher__item:focus-visible,
.catalog-category-switcher__item.is-active {
	opacity: 1;
}

.catalog-category-switcher__item:focus-visible {
	border-radius: 8px;
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.catalog-category-switcher__icon {
	display: block;
	width: auto;
	max-width: 47px;
	height: auto;
	max-height: 47px;
	filter: brightness(2);
}

.has-js .catalog-hero[data-animate] .catalog-hero__title,
.has-js .catalog-hero[data-animate] .catalog-category-switcher {
	opacity: 0;
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .contacts-hero[data-animate] .contacts-hero__title {
	opacity: 0;
	transform: translate(-50%, 18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .delivery-payment-hero[data-animate] .delivery-payment-hero__title {
	opacity: 0;
	transform: translate(-50%, 18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .catalog-hero[data-animate] .catalog-hero__title {
	transform: translate(-50%, 18px);
}

.has-js .catalog-hero[data-animate] .catalog-category-switcher {
	transform: translate(-50%, 18px);
	transition-delay: 90ms;
}

.has-js .catalog-hero[data-animate].is-visible .catalog-hero__title,
.has-js .catalog-hero[data-animate].is-visible .catalog-category-switcher {
	opacity: 1;
	transform: translate(-50%, 0);
}

.has-js .contacts-hero[data-animate].is-visible .contacts-hero__title {
	opacity: 1;
	transform: translate(-50%, 0);
}

.has-js .delivery-payment-hero[data-animate].is-visible .delivery-payment-hero__title {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Homepage finder: the exact same catalog switcher is placed in the Figma search pill. */
.hero-finder .catalog-category-switcher {
	position: static;
	flex: 0 0 auto;
	transform: none;
}

.catalog-products {
	padding: 60px 0;
	background: #f9f9f9;
}

/* Product-category archive: Figma nodes 133:5127, 196:3854 and 2040:3447. */
.catalog-hero--category .catalog-hero__image {
	object-position: 50% 31%;
}

.catalog-hero--category .catalog-hero__title {
	width: min(100%, 1500px);
	text-align: center;
	white-space: normal;
}

.product-category-archive {
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.category-breadcrumbs {
	padding-top: 74px;
	padding-bottom: 54px;
}

.category-breadcrumbs__nav,
.category-breadcrumbs__nav > span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.category-breadcrumbs__nav {
	min-height: 22px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.category-breadcrumbs__nav a {
	color: #9e9e9e;
}

.category-breadcrumbs__nav a:hover,
.category-breadcrumbs__nav a:focus-visible {
	color: #000;
}

.category-breadcrumbs__nav a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.category-breadcrumbs__separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #9e9e9e;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
}

.category-brands {
	padding-bottom: 80px;
}

.category-brands__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

/* Delivery and payment details: Figma node 152:5630. */
.delivery-payment {
	padding: 30px 0 60px;
	background: #f9f9f9;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.delivery-payment__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.delivery-payment__breadcrumbs a {
	color: #9e9e9e;
}

.delivery-payment__breadcrumbs a:hover,
.delivery-payment__breadcrumbs a:focus-visible {
	color: #000;
}

.delivery-payment__breadcrumbs a:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.delivery-payment__breadcrumbs-separator,
.delivery-payment__breadcrumbs-icon {
	display: block;
	width: 16px;
	height: 16px;
}

.delivery-payment__layout {
	display: grid;
	grid-template-columns: minmax(340px, 403px) minmax(0, 890px);
	justify-content: space-between;
	min-height: 762px;
	margin-top: 60px;
}

.delivery-payment__aside {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	align-items: flex-start;
}

.delivery-payment__tabs {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.delivery-payment__tab {
	display: inline-flex;
	align-items: center;
	min-height: 61px;
	padding: 10px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #cbcbcb;
	font-family: Inter, Arial, sans-serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

.delivery-payment__tab-arrow {
	display: none;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-right: 0;
	place-items: center;
}

.delivery-payment__tab-arrow-icon {
	display: block;
	width: 16px;
	height: 16px;
	transform: rotate(45deg);
}

.delivery-payment__tab.is-active {
	gap: 10px;
	border-bottom-color: #ebc811;
	color: #000;
}

.delivery-payment__tab.is-active .delivery-payment__tab-arrow {
	display: grid;
}

.delivery-payment__tab:hover:not(:disabled),
.delivery-payment__tab:focus-visible:not(:disabled) {
	color: #000;
}

.delivery-payment__tab:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.delivery-payment__tab:disabled {
	cursor: default;
	opacity: 1;
}

.delivery-payment__catalog {
	margin-top: auto;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.delivery-payment__panel {
	max-width: 890px;
}

.delivery-payment__eyebrow {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.delivery-payment__title {
	max-width: 686px;
	margin: 20px 0 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1.22;
	text-transform: uppercase;
}

.delivery-payment__description {
	max-width: 890px;
	margin: 30px 0 0;
	color: #5e5e5e;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.delivery-payment__steps {
	display: grid;
	gap: 30px;
	margin: 58px 0 0;
	padding: 0;
	list-style: none;
}

.delivery-payment__step {
	display: grid;
	grid-template-columns: 47px minmax(0, 1fr);
	align-items: start;
}

.delivery-payment__step-number {
	color: #eee;
	font-size: 73px;
	font-weight: 500;
	line-height: .73;
}

.delivery-payment__step-text {
	margin: 40px 0 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.has-js .delivery-payment[data-animate] .delivery-payment__aside,
.has-js .delivery-payment[data-animate] .delivery-payment__panel {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .delivery-payment[data-animate].is-visible .delivery-payment__aside,
.has-js .delivery-payment[data-animate].is-visible .delivery-payment__panel {
	opacity: 1;
	transform: translateY(0);
}

.privacy-policy {
	padding: 30px 0 80px;
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.privacy-policy__breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 22px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.privacy-policy__breadcrumbs a {
	color: #9e9e9e;
}

.privacy-policy__breadcrumbs a:hover,
.privacy-policy__breadcrumbs a:focus-visible {
	color: #000;
}

.privacy-policy__breadcrumbs a:focus-visible,
.privacy-policy__link:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.privacy-policy__breadcrumbs-separator,
.privacy-policy__breadcrumbs-icon {
	display: block;
	width: 16px;
	height: 16px;
}

.privacy-policy__layout {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	margin-top: 50px;
}

.privacy-policy__aside {
	display: flex;
	position: sticky;
	top: 120px;
	flex: 0 0 487px;
	width: 487px;
	align-self: start;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.privacy-policy__link {
	display: flex;
	width: 100%;
	align-items: center;
	min-height: 47px;
	padding: 10px;
	border-left: 2px solid transparent;
	color: #828282;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.22;
	text-transform: uppercase;
	white-space: normal;
}

.privacy-policy__link:hover,
.privacy-policy__link.is-active {
	border-left-color: #ebc811;
	color: #000;
}

.privacy-policy__content {
	flex: 0 1 1193px;
	min-width: 0;
	width: 1193px;
}

.privacy-policy__intro {
	display: grid;
	gap: 30px;
}

.privacy-policy__intro h2,
.privacy-policy__section h3 {
	margin: 0;
	text-transform: uppercase;
}

.privacy-policy__intro h2 {
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.privacy-policy__intro p,
.privacy-policy__copy {
	margin: 0;
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	opacity: .7;
}

.privacy-policy__sections {
	display: grid;
	gap: 40px;
	margin-top: 50px;
}

.privacy-policy__section {
	scroll-margin-top: 145px;
}

.privacy-policy__section h3 {
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.privacy-policy__copy {
	margin-top: 30px;
}

.privacy-policy__copy > :first-child {
	margin-top: 0;
}

.privacy-policy__copy > :last-child {
	margin-bottom: 0;
}

.privacy-policy__copy p {
	margin: 0 0 24px;
}

.privacy-policy__copy ul,
.privacy-policy__copy ol {
	margin: 0 0 24px;
	padding-left: 27px;
}

.privacy-policy__copy li + li {
	margin-top: 12px;
}

.has-js .privacy-policy[data-animate] .privacy-policy__aside,
.has-js .privacy-policy[data-animate] .privacy-policy__content {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .privacy-policy[data-animate].is-visible .privacy-policy__aside,
.has-js .privacy-policy[data-animate].is-visible .privacy-policy__content {
	opacity: 1;
	transform: translateY(0);
}

.has-js .privacy-policy-hero[data-animate] .privacy-policy-hero__title {
	opacity: 0;
	transform: translate(-50%, 24px);
	transition: opacity 700ms ease 120ms, transform 700ms cubic-bezier(.22, .61, .36, 1) 120ms;
}

.has-js .privacy-policy-hero[data-animate].is-visible .privacy-policy-hero__title {
	opacity: 1;
	transform: translate(-50%, 0);
}

.category-brands__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 197px;
	padding: 32px 38px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #fff;
}

.category-brands__card::after {
	position: absolute;
	inset: 7px;
	border: 2px solid transparent;
	pointer-events: none;
	content: '';
	transition: border-color var(--cex-transition);
}

.category-brands__card:hover,
.category-brands__card:focus-visible,
.category-brands__card.is-active {
	background: #f5f5f5;
}

.category-brands__card:focus-visible {
	outline: none;
}

.category-brands__card:focus-visible::after,
.category-brands__card.is-active::after {
	border-color: #161616;
}

.category-brands__logo {
	display: block;
	width: 100%;
	max-width: 250px;
	max-height: 112px;
	object-fit: contain;
	transition: transform 420ms cubic-bezier(.22, .61, .36, 1);
}

.category-brands__card:hover .category-brands__logo,
.category-brands__card:focus-visible .category-brands__logo {
	transform: scale(1.035);
}

.product-category-filter-root {
	position: relative;
	transition: opacity var(--cex-transition);
}

.product-category-filter-root.is-loading {
	opacity: .48;
	pointer-events: none;
}

.category-products {
	padding: 0 0 120px;
}

.category-products__active-filters {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	min-height: 50px;
	margin-bottom: 30px;
}

.category-products__chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.category-products__chip {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	min-height: 50px;
	padding: 12px 20px;
	border-radius: 100px;
	background: #f2f2f2;
	font-size: 18px;
	line-height: 1;
}

.category-products__chip:hover,
.category-products__chip:focus-visible {
	background: #e6e6e6;
}

.category-products__chip:focus-visible,
.category-products__clear:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.category-products__chip-remove {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
}

.category-products__chip-remove::before,
.category-products__chip-remove::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1px;
	background: #000;
	content: '';
}

.category-products__chip-remove::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.category-products__chip-remove::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.category-products__clear {
	flex: 0 0 auto;
	margin-top: 13px;
	color: #757575;
	font-size: 20px;
	line-height: 1.2;
}

.category-products__clear:hover,
.category-products__clear:focus-visible {
	color: #000;
}

.category-products__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}

.category-products__layout.has-attribute-filters {
	grid-template-columns: 435px minmax(0, 1fr);
	align-items: start;
}

.category-products__filters-toggle,
.category-products__filters-backdrop,
.category-products__sidebar-header {
	display: none;
}

body.category-filters-popup-open {
	overflow: hidden;
}

.category-products__sidebar {
	display: grid;
	gap: 10px;
}

.category-attribute-filter {
	min-width: 0;
}

.category-attribute-filter__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 50px;
	padding: 13px 20px;
	border: 0;
	border-radius: 100px;
	background: #f2f2f2;
	color: inherit;
	font: inherit;
	font-size: 18px;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
}

.category-attribute-filter__summary:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.category-attribute-filter__chevron {
	position: relative;
	display: block;
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
}

.category-attribute-filter__chevron::before {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 7px;
	height: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	content: '';
	transform: rotate(45deg);
	transition: transform var(--cex-transition);
}

.category-attribute-filter.is-open .category-attribute-filter__chevron::before {
	transform: translateY(4px) rotate(225deg);
}

.category-attribute-filter__panel {
	margin-top: 4px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(6, 37, 91, .1), 0 6px 20px rgba(24, 44, 73, .12);
}

.category-attribute-filter__panel[hidden] {
	display: none;
}

.category-attribute-filter__panel-inner {
	display: grid;
	gap: 17px;
	padding: 20px;
}

.category-attribute-filter__search {
	display: flex;
	align-items: center;
	gap: 17px;
	min-width: 0;
	height: 44px;
	padding: 6px 12px;
	border-radius: 100px;
	background: #f2f2f2;
}

.category-attribute-filter__search:focus-within {
	outline: 2px solid #ebc811;
	outline-offset: 2px;
}

.category-attribute-filter__search-icon {
	display: block;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

.category-attribute-filter__search-input {
	width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #000;
	font: inherit;
	font-size: 18px;
	line-height: 1.35;
	letter-spacing: -.02em;
}

.category-attribute-filter__search-input::placeholder {
	color: #5e5e5e;
	opacity: 1;
}

.category-attribute-filter__search-input::-webkit-search-cancel-button {
	display: none;
}

.category-attribute-filter__options {
	display: grid;
	gap: 16px;
	max-height: 412px;
	margin: 0;
	padding: 0 18px 0 0;
	overflow-y: auto;
	list-style: none;
	scrollbar-color: #000 #a9a9a9;
	scrollbar-width: thin;
}

.category-attribute-filter__options::-webkit-scrollbar {
	width: 2px;
}

.category-attribute-filter__options::-webkit-scrollbar-track,
.category-attribute-filter__options::-webkit-scrollbar-thumb {
	border-radius: 6px;
}

.category-attribute-filter__options::-webkit-scrollbar-track {
	background: #a9a9a9;
}

.category-attribute-filter__options::-webkit-scrollbar-thumb {
	background: #000;
}

.category-attribute-filter__options > li[hidden] {
	display: none;
}

.category-attribute-filter__option {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	line-height: 1.2;
}

.category-attribute-filter__option:focus-visible {
	border-radius: 2px;
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.category-attribute-filter__checkbox {
	position: relative;
	display: block;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border: 1px solid #969696;
	border-radius: 4px;
	background: #fff;
}

.category-attribute-filter__option.is-selected .category-attribute-filter__checkbox {
	border-color: #000;
	background: #000;
}

.category-attribute-filter__option.is-selected .category-attribute-filter__checkbox::after {
	position: absolute;
	top: 4px;
	left: 7px;
	width: 6px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	content: '';
	transform: rotate(45deg);
}

.category-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.has-attribute-filters .category-products__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-products__empty {
	position: relative;
	display: grid;
	place-items: center;
	gap: 24px;
	min-height: 360px;
	padding: 48px 32px;
	overflow: hidden;
	border-radius: 20px;
	background: #f2f2f2;
	text-align: center;
}

.category-products__empty::before,
.category-products__empty::after {
	position: absolute;
	width: 230px;
	aspect-ratio: 1;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 50%;
	content: '';
	pointer-events: none;
}

.category-products__empty::before {
	top: -144px;
	left: -102px;
}

.category-products__empty::after {
	right: -124px;
	bottom: -156px;
}

.category-products__empty-mark {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 76px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #1b1b1b;
	box-shadow: inset 0 0 0 9px #ebc811;
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
}

.category-products__empty-copy {
	position: relative;
	z-index: 1;
	max-width: 540px;
}

.category-products__empty-title,
.category-products__empty-description {
	margin: 0;
}

.category-products__empty-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -.03em;
}

.category-products__empty-description {
	margin-top: 12px;
	color: #686868;
	font-size: 18px;
	line-height: 1.4;
}

.category-products__pagination {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.category-products__pagination .woocommerce-pagination ul.page-numbers {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.category-products__pagination .woocommerce-pagination ul.page-numbers li {
	margin: 0;
	border: 0;
}

.category-products__pagination .page-numbers a,
.category-products__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 50%;
	background: #fff;
	color: #000;
	font-size: 18px;
	line-height: 1;
}

.category-products__pagination .page-numbers a:hover,
.category-products__pagination .page-numbers a:focus-visible,
.category-products__pagination .page-numbers .current {
	border-color: #000;
	background: #000;
	color: #fff;
}

.category-products__pagination .page-numbers a:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

@media (max-width: 1400px) {
	.category-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.has-attribute-filters .category-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-products__layout.has-attribute-filters {
		grid-template-columns: minmax(280px, 32vw) minmax(0, 1fr);
	}
}

@media (max-width: 1024px) {
	.category-breadcrumbs {
		padding-top: 56px;
		padding-bottom: 42px;
	}

	.category-brands {
		padding-bottom: 60px;
	}

	.category-brands__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.category-brands__card {
		min-height: 170px;
	}

	.category-products {
		padding-bottom: 90px;
	}

	.category-products__layout.has-attribute-filters {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.category-products__sidebar {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.category-attribute-filter__panel {
		position: relative;
		z-index: 2;
	}
}

@media (max-width: 720px) {
	.category-attribute-filter {
		position: static;
	}

	.category-attribute-filter__panel {
		position: static;
		z-index: auto;
		margin-top: 4px;
	}

	.catalog-hero--category .catalog-hero__title {
		padding-inline: 16px;
	}

	.category-breadcrumbs {
		padding-top: 38px;
		padding-bottom: 30px;
	}

	.category-breadcrumbs__nav {
		font-size: 15px;
	}

	.category-brands {
		padding-bottom: 44px;
	}

	.category-brands__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-brands__card {
		min-height: 122px;
		padding: 22px;
	}

	.category-brands__logo {
		max-height: 74px;
	}

	.category-products {
		padding-bottom: 64px;
	}

	.category-products__active-filters {
		flex-direction: column;
		min-height: 0;
		margin-bottom: 24px;
	}

	.category-products__clear {
		margin-top: 0;
		font-size: 17px;
	}

	.category-products__chip {
		min-height: 42px;
		padding: 10px 16px;
		font-size: 16px;
	}

	.category-products__sidebar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 100;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		max-height: min(78svh, 720px);
		padding: 20px var(--cex-gutter) calc(24px + env(safe-area-inset-bottom));
		overflow-y: auto;
		border-radius: 24px 24px 0 0;
		background: #fff;
		box-shadow: 0 -18px 45px rgba(0, 0, 0, .18);
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(100%);
		transition: opacity var(--cex-transition), transform 360ms cubic-bezier(.22, .61, .36, 1), visibility var(--cex-transition);
	}

	.category-products__sidebar.is-open {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.category-products__sidebar-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		padding-bottom: 10px;
	}

	.category-products__sidebar-header h2 {
		margin: 0;
		font-size: 26px;
		font-weight: 500;
		line-height: 1;
		text-transform: uppercase;
	}

	.category-products__filters-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		padding: 12px 24px;
		border: 1px solid #000;
		border-radius: 100px;
		background: #000;
		color: #fff;
		font: inherit;
		font-size: 18px;
		font-weight: 500;
		line-height: 1;
		margin-bottom: 24px;
		cursor: pointer;
	}

	.category-products__filters-toggle:focus-visible,
	.category-products__filters-close:focus-visible {
		outline: 2px solid #ebc811;
		outline-offset: 3px;
	}

	.category-products__filters-backdrop {
		position: fixed;
		inset: 0;
		z-index: 99;
		width: 100%;
		padding: 0;
		border: 0;
		background: rgba(0, 0, 0, .48);
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--cex-transition);
	}

	.category-products__filters-backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	.category-products__filters-close {
		display: grid;
		flex: 0 0 42px;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid #d0d0d0;
		border-radius: 50%;
		background: #fff;
		place-items: center;
		cursor: pointer;
	}

	.category-products__filters-close-icon {
		display: block;
		width: 14px;
		height: 14px;
	}

	.category-products__grid,
	.has-attribute-filters .category-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.category-products__pagination {
		margin-top: 40px;
	}

	.category-products__pagination .page-numbers a,
	.category-products__pagination .page-numbers span {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.category-products__empty {
		min-height: 300px;
		padding: 40px 24px;
	}

	.category-products__empty-mark {
		width: 68px;
		font-size: 25px;
	}

	.category-products__empty-title {
		font-size: 28px;
	}
}

@media (max-width: 1024px) {
	.privacy-policy {
		padding-block: 32px 60px;
	}

	.privacy-policy__layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
		margin-top: 42px;
	}

	.privacy-policy__aside {
		flex: 0 1 auto;
		position: static;
		display: grid;
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-self: auto;
		gap: 4px 24px;
	}

	.privacy-policy__link {
		white-space: normal;
	}

	.privacy-policy__content {
		max-width: 900px;
		width: 100%;
	}

	.delivery-payment {
		padding-block: 32px 52px;
	}

	.delivery-payment__layout {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
		gap: 56px;
		margin-top: 48px;
	}

	.delivery-payment__aside {
		min-height: 0;
	}

	.delivery-payment__catalog {
		margin-top: 40px;
		margin-bottom: 0;
	}

	.delivery-payment__panel {
		max-width: 760px;
	}
}

@media (max-width: 600px) {
	.privacy-policy {
		padding-block: 24px 48px;
	}

	.privacy-policy__breadcrumbs {
		font-size: 15px;
	}

	.privacy-policy__layout {
		gap: 34px;
		margin-top: 32px;
	}

	.privacy-policy__aside {
		display: none;
	}

	.privacy-policy__link {
		min-height: 42px;
		padding: 8px;
		font-size: 18px;
	}

	.privacy-policy__intro {
		gap: 22px;
	}

	.privacy-policy__intro h2 {
		font-size: clamp(26px, 7vw, 30px);
		line-height: 1.08;
		letter-spacing: -.02em;
		white-space: normal;
	}

	.privacy-policy__intro p,
	.privacy-policy__copy {
		font-size: 18px;
		line-height: 1.25;
	}

	.privacy-policy__sections {
		gap: 34px;
		margin-top: 42px;
	}

	.privacy-policy__section {
		scroll-margin-top: 92px;
	}

	.privacy-policy__section h3 {
		font-size: 25px;
		line-height: 1.12;
	}

	.privacy-policy__copy {
		margin-top: 20px;
	}

	.privacy-policy__copy p,
	.privacy-policy__copy ul,
	.privacy-policy__copy ol {
		margin-bottom: 18px;
	}

	.delivery-payment {
		padding-block: 24px 44px;
	}

	.delivery-payment__breadcrumbs {
		font-size: 15px;
	}

	.delivery-payment__layout {
		gap: 42px;
		margin-top: 34px;
	}

	.delivery-payment__tabs {
		gap: 4px;
	}

	.delivery-payment__tab {
		min-height: 48px;
		padding: 8px 0;
		font-size: clamp(20px, 6vw, 28px);
	}

	.delivery-payment__tab.is-active {
		gap: 7px;
	}

	.delivery-payment__tab-arrow {
		flex-basis: 16px;
		width: 16px;
		height: 16px;
	}

	.delivery-payment__tab-arrow-icon {
		width: 13px;
		height: 13px;
	}

	.delivery-payment__catalog {
		margin-top: 32px;
		font-size: 16px;
	}

	.delivery-payment__title {
		margin-top: 14px;
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.08;
	}

	.delivery-payment__description {
		margin-top: 22px;
		font-size: 18px;
		line-height: 1.25;
	}

	.delivery-payment__steps {
		gap: 20px;
		margin-top: 38px;
	}

	.delivery-payment__step {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.delivery-payment__step-number {
		font-size: 58px;
	}

	.delivery-payment__step-text {
		margin-top: 30px;
		font-size: 18px;
		line-height: 1.25;
	}
}

@media (prefers-reduced-motion: reduce) {
	.has-js [data-accordion-panel] {
		transition: none;
	}

	.category-brands__logo,
	.product-category-filter-root,
	.category-attribute-filter__chevron::before {
		transition: none;
	}

	.has-js .delivery-payment[data-animate] .delivery-payment__aside,
	.has-js .delivery-payment[data-animate] .delivery-payment__panel {
		transition: none;
	}
}

@media (max-width: 1024px) {
	.privacy-policy-hero {
		height: 560px;
	}

	.privacy-policy-hero__title {
		top: 340px;
		width: calc(100% - (var(--cex-gutter) * 2));
		font-size: clamp(48px, 7.5vw, 64px);
		line-height: 1.05;
		white-space: normal;
	}

	.catalog-hero {
		height: 560px;
	}

	.catalog-hero__title {
		top: 285px;
		font-size: clamp(48px, 7.5vw, 64px);
	}

	.contacts-hero {
		height: 560px;
	}

	.delivery-payment-hero {
		height: 560px;
	}

	.contacts-hero__title {
		top: 340px;
		font-size: clamp(48px, 7.5vw, 64px);
	}

	.delivery-payment-hero__title {
		top: 340px;
		font-size: clamp(48px, 7.5vw, 64px);
	}

	.catalog-category-switcher {
		top: 390px;
	}
}

@media (max-width: 600px) {
	.privacy-policy-hero {
		height: 500px;
	}

	.privacy-policy-hero__image {
		object-position: 50% 56%;
	}

	.privacy-policy-hero__title {
		top: 295px;
		width: calc(100% - (var(--cex-gutter) * 2));
		font-size: clamp(26px, 7vw, 30px);
		line-height: 1.05;
		letter-spacing: -.02em;
		white-space: normal;
	}

	.catalog-hero {
		height: 500px;
	}

	.catalog-hero__image {
		object-position: 50% 56%;
	}

	.catalog-hero__title {
		top: 225px;
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.05;
	}

	.contacts-hero {
		height: 500px;
	}

	.delivery-payment-hero {
		height: 500px;
	}

	.contacts-hero__image {
		object-position: 50% 82%;
	}

	.delivery-payment-hero__image {
		object-position: 50% 56%;
	}

	.contacts-hero__title {
		top: 295px;
		width: calc(100% - (var(--cex-gutter) * 2));
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.05;
		white-space: normal;
	}

	.delivery-payment-hero__title {
		top: 295px;
		width: calc(100% - (var(--cex-gutter) * 2));
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.05;
		white-space: normal;
	}

	.catalog-category-switcher {
		top: 300px;
		width: 246px;
		height: 82px;
		padding: 9px;
	}

	.catalog-category-switcher__inner {
		padding: 10px 16px;
	}

	.catalog-category-switcher__item {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.catalog-category-switcher__item + .catalog-category-switcher__item::before {
		left: -18px;
		height: 18px;
	}

	.catalog-category-switcher__icon {
		max-width: 40px;
		max-height: 40px;
	}

	.catalog-products {
		padding: 36px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.has-js .catalog-hero[data-animate] .catalog-hero__title,
	.has-js .catalog-hero[data-animate] .catalog-category-switcher {
		transition: none;
	}

	.has-js .contacts-hero[data-animate] .contacts-hero__title {
		transition: none;
	}

	.has-js .delivery-payment-hero[data-animate] .delivery-payment-hero__title {
		transition: none;
	}
}

/* Homepage tyre categories: Figma node 81:1678. */
.tyre-categories {
	padding: 60px 0;
	background: #f9f9f9;
	color: #000;
}

.tyre-categories__heading {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.tyre-categories__grid {
	--tyre-categories-grid-width: min(calc(100vw - (var(--cex-gutter) * 2)), var(--cex-container));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 91fr)) repeat(2, minmax(0, 89fr));
	grid-auto-flow: row;
	grid-auto-rows: calc(var(--tyre-categories-grid-width) * .2105556);
	margin-top: 44px;
}

.tyre-categories__media {
	position: relative;
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
	background: #101010;
}

.tyre-categories__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tyre-categories__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(16px, 1.02vw, 20px);
	overflow: hidden;
	border: 1px solid #bababa;
	border-radius: 20px;
	background: #f9f9f9;
	color: #000;
	transition: background-color var(--cex-transition), border-color var(--cex-transition), box-shadow var(--cex-transition);
}

.tyre-categories__card:nth-of-type(5) {
	grid-column: span 2;
}

.tyre-categories__number {
	align-self: flex-start;
	margin-top: clamp(5px, .42vw, 8px);
	color: #9c9c9c;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: clamp(21px, 1.354vw, 26px);
	font-weight: 500;
	line-height: 1;
}

.tyre-categories__arrow {
	position: absolute;
	top: clamp(16px, 1.02vw, 20px);
	right: clamp(20px, 1.56vw, 30px);
	display: block;
	width: clamp(48px, 3.073vw, 59px);
	height: clamp(48px, 3.073vw, 59px);
	transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.tyre-categories__arrow-icon {
	display: block;
	width: 100%;
	height: 100%;
}

.tyre-categories__name {
	align-self: flex-start;
	width: calc(100% - 21px);
	max-width: none;
	margin-top: auto;
	font-size: clamp(27px, 1.771vw, 34px);
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	overflow-wrap: normal;
}

.tyre-categories__card:nth-of-type(5) .tyre-categories__name {
	width: 94%;
}

.tyre-categories__card:nth-of-type(7) .tyre-categories__name {
	width: 86%;
}

.tyre-categories__card:hover,
.tyre-categories__card:focus-visible {
	border-color: #000;
	background: #f1f1ed;
	box-shadow: inset 0 0 0 1px #000;
}

.tyre-categories__card:hover .tyre-categories__arrow,
.tyre-categories__card:focus-visible .tyre-categories__arrow {
	transform: translate(3px, -3px);
}

.tyre-categories__card:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: -5px;
}

.has-js .tyre-categories[data-animate] .tyre-categories__heading,
.has-js .tyre-categories[data-animate] .tyre-categories__media,
.has-js .tyre-categories[data-animate] .tyre-categories__card {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1), background-color var(--cex-transition), border-color var(--cex-transition), box-shadow var(--cex-transition);
}

.has-js .tyre-categories[data-animate].is-visible .tyre-categories__heading,
.has-js .tyre-categories[data-animate].is-visible .tyre-categories__media,
.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card {
	opacity: 1;
	transform: translateY(0);
}

.has-js .tyre-categories[data-animate].is-visible .tyre-categories__media {
	transition-delay: 80ms;
}

.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card:nth-of-type(1),
.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card:nth-of-type(2) {
	transition-delay: 130ms;
}

.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card:nth-of-type(3),
.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card:nth-of-type(4) {
	transition-delay: 180ms;
}

.has-js .tyre-categories[data-animate].is-visible .tyre-categories__card:nth-of-type(n+5) {
	transition-delay: 230ms;
}

@media (max-width: 1024px) {
	.tyre-categories {
		padding-block: 52px;
	}

	.tyre-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
		margin-top: 36px;
	}

	.tyre-categories__media {
		grid-column: 1 / -1;
		grid-row: auto;
		aspect-ratio: 910 / 560;
	}

	.tyre-categories__card {
		min-height: 250px;
	}
}

@media (max-width: 640px) {
	.tyre-categories {
		padding-block: 42px;
	}

	.tyre-categories__heading {
		font-size: 15px;
	}

	.tyre-categories__grid {
		grid-template-columns: minmax(0, 1fr);
		margin-top: 28px;
	}

	.tyre-categories__media {
		grid-column: auto;
		aspect-ratio: 350 / 260;
		border-radius: 16px;
	}

	.tyre-categories__card,
	.tyre-categories__card:nth-of-type(5) {
		grid-column: auto;
		min-height: 170px;
		aspect-ratio: auto;
		border-radius: 16px;
	}

	.tyre-categories__number {
		margin-top: 3px;
		font-size: 18px;
	}

	.tyre-categories__arrow {
		top: 14px;
		right: 14px;
		width: 44px;
		height: 44px;
	}

	.tyre-categories__name {
		width: calc(100% - 8px);
		font-size: var(--cex-mobile-card-heading);
		line-height: 1.12;
	}

	.tyre-categories__card:nth-of-type(5) .tyre-categories__name,
	.tyre-categories__card:nth-of-type(7) .tyre-categories__name {
		width: calc(100% - 8px);
	}
}

/* Homepage popular brands: source screenshot supplied with the section. */
.popular-brands {
	padding: 80px 0;
	background: #f9f9f9;
	color: #000;
}

.popular-brands__panel {
	overflow: hidden;
	border: 1px solid #d1d1d1;
}

.popular-brands__heading {
	display: grid;
	min-height: 65px;
	padding: 18px 24px;
	margin: 0;
	place-items: center;
	border-bottom: 1px solid #d1d1d1;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.popular-brands__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	background: #d1d1d1;
}

.popular-brands__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 203px;
	padding: 28px 36px;
	background: #f9f9f9;
}

.popular-brands__logo {
	display: block;
	width: 100%;
	max-width: 280px;
	max-height: 92px;
	object-fit: contain;
	transition: transform 420ms cubic-bezier(.22, .61, .36, 1), opacity var(--cex-transition);
}

.popular-brands__card:hover,
.popular-brands__card:focus-visible {
	background: #fff;
}

.popular-brands__card:hover .popular-brands__logo,
.popular-brands__card:focus-visible .popular-brands__logo {
	transform: scale(1.035);
}

.popular-brands__card:focus-visible {
	position: relative;
	z-index: 1;
	outline: 2px solid #ebc811;
	outline-offset: -3px;
}

.popular-brands__catalog-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.button--catalog,
.button--catalog:hover {
	min-height: 61px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.button--catalog .button__label {
	padding-right: 22px;
}

.button--catalog .button__icon {
	display: grid;
	flex: 0 0 61px;
	width: 61px;
	height: 61px;
	place-items: center;
	border-inline: 1px solid currentColor;
}

.button--catalog .button__icon-svg {
	display: block;
	width: 59px;
	height: 59px;
	transform: rotate(-90deg) scale(1.35);
}

.button--catalog .button__icon-svg rect {
	display: none;
}

.button--catalog .button__icon-svg path {
	transform: none;
}

.button--catalog:hover {
	color: #ebc811;
}

.button--catalog:hover .button__icon-svg path {
	stroke: #ebc811;
}

.has-js .popular-brands[data-animate] .popular-brands__panel,
.has-js .popular-brands[data-animate] .popular-brands__catalog-wrap {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .popular-brands[data-animate].is-visible .popular-brands__panel,
.has-js .popular-brands[data-animate].is-visible .popular-brands__catalog-wrap {
	opacity: 1;
	transform: translateY(0);
}

.has-js .popular-brands[data-animate].is-visible .popular-brands__catalog-wrap {
	transition-delay: 100ms;
}

/* Homepage company slider: Figma node 81:1392. */
.company-about {
	overflow: hidden;
	padding: 60px 0 120px;
	background: #f9f9f9;
}

.company-about__intro {
	position: relative;
	padding-top: 0;
}

.company-about__intro-copy {
	max-width: 1327px;
}

.company-about__eyebrow {
	margin: 0;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.company-about__title {
	max-width: 1327px;
	margin: 25px 0 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.company-about__description {
	max-width: 967px;
	margin: 45px 0 0;
	color: #5e5e5e;
	font-size: 24px;
	line-height: 1;
}

.company-about__link {
	position: absolute;
	top: 42px;
	right: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.company-about__slider-shell {
	position: relative;
	margin-top: 111px;
}

.company-about__controls {
	position: absolute;
	bottom: calc(100% + 20px);
	left: 50%;
	width: min(100%, var(--cex-container));
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 2;
}

.company-about__counter {
	margin: 0 0 0 calc(50% - 42px);
	font-size: 26px;
	line-height: 1;
}

.company-about__counter span:last-child {
	color: #9c9c9c;
	font-size: 19px;
}

.company-about__navigation {
	position: absolute;
	right: 156px;
	bottom: -4px;
	width: 89px;
	height: 32px;
	pointer-events: auto;
}

.company-about__nav {
	position: absolute;
	top: -7px;
	width: 43px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.company-about__nav--prev {
	left: 0;
}

.company-about__nav--next {
	right: 0;
}

.company-about__nav:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.company-about__navigation-icon {
	display: block;
	width: 89px;
	height: 32px;
	pointer-events: none;
}

.company-about__navigation-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.company-about__viewport {
	overflow: hidden;
}

.company-about__swiper {
	overflow: visible;
}

.company-about__swiper .swiper-wrapper {
	transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.company-about__slide {
	width: 439px;
	transition: width 620ms cubic-bezier(.22, .61, .36, 1), opacity 420ms ease;
}

.company-about__media {
	position: relative;
	height: 375px;
	margin: 0;
	overflow: hidden;
	background: #fff;
	transition: height 620ms cubic-bezier(.22, .61, .36, 1);
}

.company-about__media::after {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .49);
	content: '';
	transition: opacity 360ms ease;
}

.company-about__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-about__slide-description {
	max-width: 787px;
	max-height: 0;
	margin: 0;
	overflow: hidden;
	color: #5e5e5e;
	font-size: 24px;
	line-height: 1;
	opacity: 0;
	transform: translateY(-8px);
	transition: max-height 620ms cubic-bezier(.22, .61, .36, 1), margin 620ms cubic-bezier(.22, .61, .36, 1), opacity 360ms ease 150ms, transform 360ms ease 150ms;
}

.company-about__slide.swiper-slide-active {
	width: 787px;
}

.company-about__slide.swiper-slide-active .company-about__media {
	height: 601px;
}

.company-about__slide.swiper-slide-active .company-about__media::after {
	opacity: 0;
}

.company-about__slide.swiper-slide-active .company-about__slide-description {
	max-height: 130px;
	margin-top: 20px;
	opacity: 1;
	transform: translateY(0);
}

.has-js .company-about[data-animate] .company-about__intro-copy,
.has-js .company-about[data-animate] .company-about__link,
.has-js .company-about[data-animate] .company-about__slider-shell {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .company-about[data-animate].is-visible .company-about__intro-copy,
.has-js .company-about[data-animate].is-visible .company-about__link,
.has-js .company-about[data-animate].is-visible .company-about__slider-shell {
	opacity: 1;
	transform: translateY(0);
}

.has-js .company-about[data-animate].is-visible .company-about__link {
	transition-delay: 80ms;
}

.has-js .company-about[data-animate].is-visible .company-about__slider-shell {
	transition-delay: 140ms;
}

/* Homepage statistics: Figma node 81:1411. */
.statistics-section {
	position: relative;
	min-height: 809px;
	overflow: hidden;
	background: #171717;
	color: #fff;
}

.statistics-section__media,
.statistics-section__overlay {
	position: absolute;
	inset: 0;
}

.statistics-section__media {
	pointer-events: none;
}

.statistics-section__background-image {
	position: absolute;
	top: -41.86%;
	left: -5.57%;
	display: block;
	width: 111.13%;
	height: 175.46%;
	max-width: none;
	object-fit: cover;
}

.statistics-section__overlay {
	background: rgba(0, 0, 0, .47);
}

.statistics-section__container {
	position: relative;
	z-index: 1;
	padding-top: 60px;
}

.statistics-section__content {
	width: min(900px, 50%);
	margin-left: 50%;
}

.statistics-section__title {
	max-width: 822px;
	margin: 0;
	font-size: 77px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.statistics-section__description {
	margin: 56px 0 0;
	font-size: 24px;
	line-height: 1;
}

.statistics-section__items {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 36px;
	margin-top: 242px;
	padding-bottom: 29px;
}

.statistics-section__item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.statistics-section__value,
.statistics-section__label {
	margin: 0;
}

.statistics-section__value {
	font-size: 156px;
	font-weight: 400;
	line-height: .78;
	letter-spacing: -.04em;
	white-space: nowrap;
}

.statistics-section__suffix {
	letter-spacing: 0;
}

.statistics-section__superscript {
	position: relative;
	top: -.38em;
	font-size: 100px;
	line-height: 1;
}

.statistics-section__label {
	font-size: 24px;
	line-height: 22px;
}

.has-js .statistics-section[data-animate] .statistics-section__background-image {
	transform: scale(1.045);
	transition: transform 1200ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .statistics-section[data-animate] .statistics-section__content,
.has-js .statistics-section[data-animate] .statistics-section__item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .statistics-section[data-animate].is-visible .statistics-section__background-image {
	transform: scale(1);
}

.has-js .statistics-section[data-animate].is-visible .statistics-section__content,
.has-js .statistics-section[data-animate].is-visible .statistics-section__item {
	opacity: 1;
	transform: translateY(0);
}

.has-js .statistics-section[data-animate].is-visible .statistics-section__item:nth-child(1) {
	transition-delay: 100ms;
}

.has-js .statistics-section[data-animate].is-visible .statistics-section__item:nth-child(2) {
	transition-delay: 180ms;
}

.has-js .statistics-section[data-animate].is-visible .statistics-section__item:nth-child(3) {
	transition-delay: 260ms;
}

@media (max-width: 1024px) {
	.statistics-section {
		min-height: 700px;
	}

	.statistics-section__background-image {
		top: -20%;
		left: -14%;
		width: 128%;
		height: 145%;
	}

	.statistics-section__content {
		width: min(620px, 62%);
		margin-left: 38%;
	}

	.statistics-section__title {
		font-size: clamp(50px, 7.5vw, 68px);
	}

	.statistics-section__description {
		margin-top: 38px;
		font-size: 20px;
	}

	.statistics-section__items {
		margin-top: 195px;
	}

	.statistics-section__value {
		font-size: clamp(92px, 13vw, 128px);
	}

	.statistics-section__superscript {
		font-size: clamp(62px, 8.4vw, 84px);
	}

	.statistics-section__label {
		font-size: 20px;
	}
}

@media (max-width: 640px) {
	.statistics-section {
		min-height: 0;
	}

	.statistics-section__background-image {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-position: 30% center;
	}

	.statistics-section__container {
		padding-top: 68px;
		padding-bottom: 56px;
	}

	.statistics-section__content {
		width: auto;
		margin-left: 0;
	}

	.statistics-section__title {
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1.04;
	}

	.statistics-section__description {
		margin-top: 28px;
		font-size: 18px;
		line-height: 1.16;
	}

	.statistics-section__items {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 38px;
		margin-top: 72px;
		padding: 0;
	}

	.statistics-section__item {
		gap: 15px;
	}

	.statistics-section__value {
		font-size: clamp(84px, 24vw, 104px);
	}

	.statistics-section__superscript {
		font-size: clamp(54px, 15.2vw, 66px);
	}

	.statistics-section__label {
		font-size: 18px;
		line-height: 1.15;
	}
}

@media (prefers-reduced-motion: reduce) {
	.company-about__slide,
	.company-about__media,
	.company-about__slide-description,
	.statistics-section__background-image,
	.statistics-section__content,
	.statistics-section__item {
		transition: none;
	}
}

@media (max-width: 1024px) {
	.company-about {
		padding-block: 52px 80px;
	}

	.company-about__title {
		max-width: 78%;
		font-size: clamp(38px, 5.1vw, 50px);
	}

	.company-about__description {
		max-width: 70%;
		font-size: 20px;
	}

	.company-about__slider-shell {
		margin-top: 88px;
	}

	.company-about__counter {
		margin-left: max(0px, calc(50% - 130px));
	}

	.company-about__navigation {
		right: 0;
	}

	.company-about__slide,
	.company-about__slide.swiper-slide-active {
		width: min(72vw, 620px);
	}

	.company-about__media,
	.company-about__slide.swiper-slide-active .company-about__media {
		height: min(50vw, 430px);
	}
}

@media (max-width: 640px) {
	.company-about {
		padding-block: 42px 58px;
	}

	.company-about__eyebrow {
		font-size: 15px;
	}

	.company-about__title {
		max-width: none;
		margin-top: 19px;
		font-size: var(--cex-mobile-heading);
		line-height: 1.04;
	}

	.company-about__description {
		max-width: none;
		margin-top: 24px;
		font-size: 17px;
		line-height: 1.18;
	}

	.company-about__link {
		position: static;
		min-height: 48px;
		margin-top: 28px;
		gap: 16px;
		font-size: 15px;
	}

	.company-about__link .button__icon,
	.company-about__link .button__icon-svg {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
	}

	.company-about__slider-shell {
		margin-top: 100px;
	}

	.company-about__controls {
		bottom: calc(100% + 34px);
		padding-inline: var(--cex-gutter);
	}

	.company-about__counter {
		margin: 0;
		font-size: 20px;
	}

	.company-about__counter span:last-child {
		font-size: 15px;
	}

	.company-about__navigation {
		right: var(--cex-gutter);
		bottom: -6px;
		transform: scale(.68);
		transform-origin: right bottom;
	}

	.company-about__viewport {
		padding-inline: var(--cex-gutter);
	}

	.company-about__swiper {
		overflow: hidden;
	}

	.company-about__slide,
	.company-about__slide.swiper-slide-active {
		width: 100%;
	}

	.company-about__media,
	.company-about__slide.swiper-slide-active .company-about__media {
		height: auto;
		aspect-ratio: 1.24;
	}

	.company-about__slide-description,
	.company-about__slide.swiper-slide-active .company-about__slide-description {
		font-size: 17px;
		line-height: 1.18;
	}

	.company-about__slide.swiper-slide-active .company-about__slide-description {
		max-height: 180px;
		margin-top: 14px;
	}
}

@media (max-width: 1024px) {
	.popular-brands {
		padding-block: 60px;
	}

	.popular-brands__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.popular-brands__card {
		min-height: 180px;
	}
}

@media (max-width: 640px) {
	.popular-brands {
		padding-block: 52px;
	}

	.popular-brands__heading {
		min-height: 58px;
		padding: 16px;
		font-size: 15px;
	}

	.popular-brands__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.popular-brands__card {
		min-height: 145px;
		padding: 20px;
	}

	.popular-brands__logo {
		max-height: 68px;
	}

	.popular-brands__catalog-wrap {
		margin-top: 24px;
	}

	.button--catalog,
	.button--catalog:hover {
		min-height: 54px;
		font-size: 16px;
	}

	.button--catalog .button__label {
		padding-right: 16px;
	}

	.button--catalog .button__icon {
		flex-basis: 54px;
		width: 54px;
		height: 54px;
	}

	.button--catalog .button__icon-svg {
		width: 59px;
		height: 59px;
		transform: rotate(-90deg) scale(1.2);
	}
}

/* Shared footer */
.site-footer {
	position: relative;
	min-height: 678px;
	padding: 80px 0 124px;
	overflow: hidden;
	background: #282828;
	color: #f4f4f4;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 606px 480px 494px minmax(0, 1fr);
	min-height: 365px;
}

.site-footer__brand,
.site-footer__navigation,
.site-footer__catalog,
.site-footer__contacts {
	min-width: 0;
}

.site-footer .custom-logo-link,
:is(.home, .has-hero-header) .site-footer .custom-logo-link {
	position: static;
	display: inline-flex;
	width: 160px;
	line-height: 0;
	transform: none;
}

.site-footer .custom-logo,
:is(.home, .has-hero-header) .site-footer .custom-logo {
	display: block;
	width: 160px;
	max-width: none;
	height: auto;
	transform: translateY(-30px) scale(1.375);
	transform-origin: top left;
}

.site-footer__copyright {
	max-width: 420px;
	margin: 28px 0 0;
	color: rgba(244, 244, 244, .9);
	font-size: 21px;
	line-height: 1.3;
}

.site-footer__title {
	margin: 0 0 34px;
	color: rgba(244, 244, 244, .5);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-footer .site-menu--footer,
:is(.home, .has-hero-header) .site-footer .site-menu--footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .site-menu--footer a,
:is(.home, .has-hero-header) .site-footer .site-menu--footer a,
.site-footer__link-list a,
.site-footer__contact-link {
	display: inline;
	min-height: 0;
	color: rgba(244, 244, 244, .9);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.55;
}

.site-footer .site-menu--footer a:hover,
.site-footer .site-menu--footer .current-menu-item > a,
.site-footer .site-menu--footer .current-menu-ancestor > a,
.site-footer__link-list a:hover,
.site-footer__contact-link:hover {
	color: #ebc811;
}

.site-footer__link-list,
.site-footer__socials {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__link-list {
	display: grid;
	gap: 13px;
}

.site-footer__address {
	max-width: 220px;
	margin-bottom: 19px;
	color: rgba(244, 244, 244, .9);
	font-size: 20px;
	line-height: 1.23;
}

.site-footer__contact-link {
	display: block;
	width: max-content;
	max-width: 100%;
	margin-top: 12px;
}

.site-footer__contacts .site-footer__contact-link + .site-footer__contact-link {
	margin-top: 13px;
}

.site-footer__socials {
	display: grid;
	gap: 13px;
	margin-top: 60px;
}

.site-footer__socials a {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: rgba(244, 244, 244, .42);
	font-size: 20px;
	line-height: 1.2;
}

.site-footer__socials a:hover {
	color: #ebc811;
}

.site-footer__social-arrow {
	width: 18px;
	height: 15px;
	flex: 0 0 auto;
	transform: rotate(-45deg);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 606px 480px minmax(0, 1fr);
	align-items: center;
	min-height: 44px;
	margin-top: 65px;
}

.site-footer__legal-link {
	width: max-content;
	max-width: 100%;
	color: rgba(244, 244, 244, .45);
	font-size: 20px;
	line-height: 1.25;
}

.site-footer__legal-link:hover {
	color: #ebc811;
}

.site-footer__developer {
	justify-self: end;
	display: block;
	width: 147px;
	height: 43px;
	padding: 8px 9px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .035);
	color: rgba(244, 244, 244, .55);
	transition: background-color var(--cex-transition), color var(--cex-transition);
}

.site-footer__developer-content {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 27px;
}

.site-footer__developer-text {
	position: absolute;
	left: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
	transition: opacity 260ms cubic-bezier(.22, .61, .36, 1), transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.site-footer__developer-text--default {
	opacity: 1;
	transform: translateY(0);
}

.site-footer__developer-text--hover,
.site-footer__developer-heart {
	opacity: 0;
	pointer-events: none;
}

.site-footer__developer-text--hover {
	transform: translateY(7px);
}

.site-footer__developer-heart {
	position: absolute;
	right: 31px;
	width: 14px;
	height: 14px;
	transform: translateY(5px) scale(.7);
	transition: opacity 220ms ease 65ms, transform 360ms cubic-bezier(.22, .61, .36, 1) 25ms;
}

.site-footer__developer-heart::before {
	display: block;
	color: #ff9db6;
	font-size: 14px;
	line-height: 1;
	content: "\2764";
}

.site-footer__developer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 27px;
	margin-left: auto;
	transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
}

.site-footer__developer-logo-image {
	display: block;
	width: 25px;
	height: 27px;
	object-fit: contain;
}

.site-footer__developer:hover,
.site-footer__developer:focus-visible {
	background: rgba(255, 255, 255, .075);
	color: rgba(244, 244, 244, .9);
}

.site-footer__developer:hover .site-footer__developer-text--default,
.site-footer__developer:focus-visible .site-footer__developer-text--default {
	opacity: 0;
	transform: translateY(-7px);
}

.site-footer__developer:hover .site-footer__developer-text--hover,
.site-footer__developer:focus-visible .site-footer__developer-text--hover {
	opacity: 1;
	transform: translateY(0);
}

.site-footer__developer:hover .site-footer__developer-heart,
.site-footer__developer:focus-visible .site-footer__developer-heart {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.site-footer__developer:hover .site-footer__developer-logo,
.site-footer__developer:focus-visible .site-footer__developer-logo {
	transform: translateX(1px);
}

.site-footer__decoration {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.site-footer__decoration--wheel {
	top: -45px;
	left: calc(50% - 282px);
	width: 1297px;
	height: 553px;
	overflow: hidden;
}

.site-footer__decoration--wordmark {
	bottom: -17px;
	width: 1603px;
	height: 124px;
	opacity: .2;
	filter: grayscale(1);
}

.site-footer__decoration--wordmark-left {
	left: -1002px;
}

.site-footer__decoration--wordmark-right {
	right: -334px;
}

.site-footer__wheel-icon,
.site-footer__wordmark-icon {
	display: block;
	width: 100%;
	height: 100%;
}

.site-footer__wheel-icon {
	overflow: hidden;
}

.site-footer__wordmark-icon path {
	fill: #353535 !important;
	stroke: #353535 !important;
}

@media (max-width: 1879px) {
	.site-footer__grid,
	.site-footer__bottom {
		column-gap: clamp(24px, 2vw, 38px);
		grid-template-columns: minmax(280px, 1.25fr) minmax(210px, .85fr) minmax(300px, 1.1fr) minmax(220px, .75fr);
	}

	.site-footer__bottom {
		grid-template-columns: minmax(280px, 1.25fr) minmax(210px, .85fr) minmax(0, 1.85fr);
	}
}

@media (max-width: 1120px) {
	.site-footer {
		min-height: 0;
		padding-block: 64px 88px;
	}

	.site-footer__grid {
		grid-template-columns: minmax(260px, 1fr) minmax(230px, 1fr) minmax(230px, 1fr);
		gap: 48px 32px;
		min-height: 0;
	}

	.site-footer__brand {
		grid-row: span 2;
	}

	.site-footer__contacts {
		grid-column: 2 / -1;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr 1fr auto;
		margin-top: 56px;
	}

	.site-footer__socials {
		margin-top: 34px;
	}

	.site-footer__decoration--wheel {
		left: 20%;
	}
}

@media (max-width: 760px) {
	.site-footer {
		padding: 48px 0 72px;
	}

	.site-footer__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 20px;
	}

	.site-footer__brand {
		grid-row: auto;
		grid-column: 1 / -1;
	}

	.site-footer .custom-logo-link,
	:is(.home, .has-hero-header) .site-footer .custom-logo-link,
	.site-footer .custom-logo,
	:is(.home, .has-hero-header) .site-footer .custom-logo {
		width: 136px;
	}

	.site-footer .custom-logo,
	:is(.home, .has-hero-header) .site-footer .custom-logo {
		transform: none;
	}

	.site-footer__copyright {
		max-width: 320px;
		margin-top: 20px;
		font-size: 16px;
	}

	.site-footer__title {
		margin-bottom: 21px;
		font-size: 15px;
	}

	.site-footer .site-menu--footer {
		gap: 9px;
	}

	.site-footer .site-menu--footer a,
	:is(.home, .has-hero-header) .site-footer .site-menu--footer a,
	.site-footer__link-list a {
		font-size: 16px;
		line-height: 1.35;
	}

	.site-footer__contact-link,
	.site-footer__address {
		font-size: 16px;
		line-height: 1.35;
	}

	.site-footer__link-list {
		gap: 9px;
	}

	.site-footer__contacts {
		grid-column: 1 / -1;
	}

	.site-footer__address {
		max-width: 260px;
		margin-bottom: 16px;
	}

	.site-footer__contact-link {
		margin-top: 9px;
	}

	.site-footer__contacts .site-footer__contact-link + .site-footer__contact-link {
		margin-top: 10px;
	}

	.site-footer__socials {
		gap: 9px;
		margin-top: 27px;
	}

	.site-footer__socials a,
	.site-footer__legal-link {
		font-size: 16px;
	}

	.site-footer__bottom {
		grid-template-columns: minmax(0, 1fr);
		justify-items: start;
		gap: 20px;
		margin-top: 42px;
	}

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

	.site-footer__decoration--wheel {
		top: 35%;
		left: -490px;
		opacity: .5;
	}

	.site-footer__decoration--wordmark {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-footer__developer,
	.site-footer__developer-text,
	.site-footer__developer-heart,
	.site-footer__developer-logo {
		transition: none;
	}
}

/* Homepage advantages: Figma node 81:1487. */
.advantages-section {
	overflow: hidden;
	padding: 60px 0;
	background: #f9f9f9;
}

.advantages-section__header {
	position: relative;
}

.advantages-section__eyebrow {
	margin: 0;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.advantages-section__title {
	margin: 25px 0 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.advantages-section__link {
	position: absolute;
	top: 42px;
	right: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.advantages-section__items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}

.advantages-section__item {
	display: grid;
	grid-template-columns: 125px minmax(0, 238px);
	align-items: center;
	gap: 20px;
	flex: 0 1 383px;
	min-width: 0;
}

.advantages-section__icon,
.advantages-section__icon-svg {
	display: block;
	width: 125px;
	height: 329px;
}

.advantages-section__item-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
	min-width: 0;
}

.advantages-section__item-title,
.advantages-section__item-description {
	margin: 0;
}

.advantages-section__item-title {
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.advantages-section__item-description {
	max-width: 224px;
	color: #5e5e5e;
	font-size: 24px;
	line-height: 1;
}

.advantages-section__divider,
.advantages-section__divider-svg {
	display: block;
	flex: 0 0 1px;
	width: 1px;
	height: 222px;
}

.has-js .advantages-section[data-animate] .advantages-section__header,
.has-js .advantages-section[data-animate] .advantages-section__item,
.has-js .advantages-section[data-animate] .advantages-section__divider {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .advantages-section[data-animate].is-visible .advantages-section__header,
.has-js .advantages-section[data-animate].is-visible .advantages-section__item,
.has-js .advantages-section[data-animate].is-visible .advantages-section__divider {
	opacity: 1;
	transform: translateY(0);
}

.has-js .advantages-section[data-animate].is-visible .advantages-section__divider {
	transition-delay: 60ms;
}

.has-js .advantages-section[data-animate].is-visible .advantages-section__item:nth-of-type(2) {
	transition-delay: 80ms;
}

.has-js .advantages-section[data-animate].is-visible .advantages-section__item:nth-of-type(3) {
	transition-delay: 160ms;
}

.has-js .advantages-section[data-animate].is-visible .advantages-section__item:nth-of-type(4) {
	transition-delay: 240ms;
}

@media (max-width: 1500px) {
	.advantages-section__items {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 64px;
	}

	.advantages-section__item {
		grid-template-columns: 112px minmax(0, 238px);
		gap: 18px;
	}

	.advantages-section__icon,
	.advantages-section__icon-svg {
		width: 112px;
		height: 295px;
	}

	.advantages-section__divider {
		display: none;
	}
}

@media (max-width: 860px) {
	.advantages-section {
		padding: 44px 0;
	}

	.advantages-section__title {
		max-width: 560px;
		font-size: clamp(34px, 6vw, 46px);
	}

	.advantages-section__link {
		top: 40px;
		font-size: 17px;
	}

	.advantages-section__items {
		margin-top: 46px;
		gap: 34px 40px;
	}

	.advantages-section__item {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 16px;
	}

	.advantages-section__icon,
	.advantages-section__icon-svg {
		width: 88px;
		height: 232px;
	}

	.advantages-section__item-copy {
		gap: 18px;
	}

	.advantages-section__item-title {
		font-size: 23px;
	}

	.advantages-section__item-description {
		font-size: 19px;
	}
}

@media (max-width: 640px) {
	.advantages-section {
		padding: 36px 0 42px;
	}

	.advantages-section__header {
		display: flex;
		flex-direction: column;
		gap: 26px;
	}

	.advantages-section__eyebrow {
		font-size: 14px;
	}

	.advantages-section__title {
		margin-top: 18px;
		font-size: var(--cex-mobile-heading);
	}

	.advantages-section__link {
		position: static;
		align-self: flex-start;
		font-size: 16px;
	}

	.advantages-section__link .button__icon,
	.advantages-section__link .button__icon-svg {
		width: 52px;
		height: 52px;
	}

	.advantages-section__items {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
		margin-top: 38px;
	}

	.advantages-section__item {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 16px;
	}

	.advantages-section__icon,
	.advantages-section__icon-svg {
		width: 72px;
		height: 190px;
	}

	.advantages-section__item-copy {
		gap: 14px;
	}

	.advantages-section__item-title {
		font-size: 20px;
	}

	.advantages-section__item-description {
		max-width: 100%;
		font-size: 18px;
		line-height: 1.1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.advantages-section__header,
	.advantages-section__item,
	.advantages-section__divider {
		transition: none;
	}
}

/* Reusable WooCommerce product card and homepage product showcase: Figma node 81:1203. */
.cex-product-card {
	position: relative;
	min-width: 0;
	aspect-ratio: 435 / 444;
	overflow: hidden;
	background: #f5f5f5;
}

.cex-product-card--featured {
	aspect-ratio: 890 / 908;
}

.cex-product-card__link {
	display: block;
	height: 100%;
	color: #000;
}

.cex-product-card__link:focus-visible {
	outline: 3px solid #ebc811;
	outline-offset: -3px;
}

.cex-product-card__media,
.cex-product-card__shadow,
.cex-product-card__details,
.cex-product-card__badge,
.cex-product-card__brand {
	position: absolute;
}

.cex-product-card__media {
	inset: 0;
	margin: 0;
	overflow: hidden;
	pointer-events: none;
}

.cex-product-card__shadow {
	z-index: 1;
	display: block;
	left: calc(50% + 1.264%);
	top: 50%;
	width: 74.483%;
	height: 15.541%;
	transform: translateX(-50%);
}

.cex-product-card__shadow-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cex-product-card__image {
	position: absolute;
	z-index: 2;
	display: block;
	left: 8.505%;
	top: -1.856%;
	width: 83.218%;
	height: 72.387%;
	object-fit: fill;
	transform-origin: 50% 68%;
	transition: transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.cex-product-card__badge {
	z-index: 3;
	top: 3.604%;
	left: 3.678%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 37px;
	padding: 8px 14px;
	border: 1px solid #b4b4b4;
	border-radius: 100px;
	background: rgba(245, 245, 245, .86);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
}

.cex-product-card__brand {
	z-index: 3;
	top: 4.054%;
	right: 4.598%;
	display: block;
	width: 23.908%;
	height: 6.982%;
}

.cex-product-card__brand-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right top;
}

.cex-product-card__details {
	z-index: 3;
	inset: 0;
	pointer-events: none;
}

.cex-product-card__article,
.cex-product-card__title,
.cex-product-card__availability {
	position: absolute;
	margin: 0;
}

.cex-product-card__article {
	top: 68.693%;
	left: 3.678%;
	color: #5e5e5e;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

.cex-product-card__title {
	top: 75.225%;
	left: 3.678%;
	right: 14.253%;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.cex-product-card--lead .cex-product-card__title {
	font-size: 26px;
}

.cex-product-card__availability {
	top: 91.667%;
	left: 3.678%;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

.cex-product-card__availability-dot,
.cex-product-card__availability-dot-svg {
	display: block;
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
}

.cex-product-card--featured .cex-product-card__shadow {
	left: 50%;
	top: 63.436%;
	width: 53.483%;
	height: 9.581%;
}

.cex-product-card--featured .cex-product-card__image {
	left: 1.91%;
	top: -4.747%;
	width: 96.18%;
	height: 83.5%;
}

.cex-product-card--featured .cex-product-card__badge {
	top: 2.863%;
	left: 2.247%;
	min-height: 44px;
	font-size: 20px;
}

.cex-product-card--featured .cex-product-card__brand {
	top: 2.203%;
	right: 2.247%;
	width: 20.899%;
	height: 6.057%;
}

.cex-product-card--featured .cex-product-card__article {
	top: 73.238%;
	left: 2.247%;
	font-size: 24px;
}

.cex-product-card--featured .cex-product-card__title {
	top: 78.414%;
	left: 2.247%;
	right: 18.09%;
	font-size: 52px;
}

.cex-product-card--featured .cex-product-card__availability {
	top: 94.824%;
	left: 2.247%;
	font-size: 24px;
}

.cex-product-card--featured .cex-product-card__availability-dot,
.cex-product-card--featured .cex-product-card__availability-dot-svg {
	flex-basis: 10px;
	width: 10px;
	height: 10px;
}

.cex-product-card__link:hover .cex-product-card__image {
	transform: translateY(-5px) scale(1.015);
}

.product-showcase {
	padding: 60px 0 59px;
	background: #fff;
}

.product-showcase__header {
	position: relative;
}

.product-showcase__eyebrow {
	margin: 0;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
}

.product-showcase__title {
	margin: 25px 0 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.product-showcase__tabs {
	position: absolute;
	top: 45px;
	right: 0;
	display: inline-flex;
	gap: 4px;
	padding: 6px;
	border: 1px solid #fff;
	border-radius: 62px;
	background: #161616;
}

.product-showcase__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 14px;
	border: 0;
	border-radius: 46px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
}

.product-showcase__tab.is-active {
	background: #fff;
	color: #161616;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
}

.product-showcase__tab:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 2px;
}

.product-showcase__panels {
	margin-top: 48px;
}

.product-showcase__grid {
	display: grid;
	grid-template-columns: minmax(0, 890fr) minmax(0, 435fr) minmax(0, 435fr);
	grid-template-rows: repeat(2, 444px);
	gap: 20px;
}

.product-showcase__grid > .cex-product-card--featured {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.product-showcase__grid > .cex-product-card--lead {
	grid-column: 2;
	grid-row: 1;
}

.product-showcase__catalog-wrap {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.product-showcase__catalog {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.has-js .product-showcase[data-animate] .product-showcase__header,
.has-js .product-showcase[data-animate] .product-showcase__panel,
.has-js .product-showcase[data-animate] .product-showcase__catalog-wrap {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .product-showcase[data-animate].is-visible .product-showcase__header,
.has-js .product-showcase[data-animate].is-visible .product-showcase__panel,
.has-js .product-showcase[data-animate].is-visible .product-showcase__catalog-wrap {
	opacity: 1;
	transform: translateY(0);
}

.has-js .product-showcase[data-animate].is-visible .product-showcase__panel {
	transition-delay: 100ms;
}

.has-js .product-showcase[data-animate].is-visible .product-showcase__catalog-wrap {
	transition-delay: 180ms;
}

@media (max-width: 1500px) {
	.product-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.product-showcase__grid > .cex-product-card--featured,
	.product-showcase__grid > .cex-product-card--lead {
		grid-column: auto;
		grid-row: auto;
	}

	.product-showcase__grid > .cex-product-card--featured {
		aspect-ratio: 435 / 444;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__shadow {
		left: calc(50% + 1.264%);
		top: 50%;
		width: 74.483%;
		height: 15.541%;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__image {
		left: 8.505%;
		top: -1.856%;
		width: 83.218%;
		height: 72.387%;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__badge {
		top: 3.604%;
		left: 3.678%;
		min-height: 37px;
		font-size: 16px;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__brand {
		top: 4.054%;
		right: 4.598%;
		width: 23.908%;
		height: 6.982%;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__article {
		top: 68.693%;
		left: 3.678%;
		font-size: 18px;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__title {
		top: 75.225%;
		left: 3.678%;
		right: 14.253%;
		font-size: 26px;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__availability {
		top: 91.667%;
		left: 3.678%;
		font-size: 18px;
	}

	.product-showcase__grid > .cex-product-card--featured .cex-product-card__availability-dot,
	.product-showcase__grid > .cex-product-card--featured .cex-product-card__availability-dot-svg {
		flex-basis: 8px;
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 860px) {
	.product-showcase {
		padding: 44px 0;
	}

	.product-showcase__title {
		font-size: clamp(34px, 6vw, 46px);
	}

	.product-showcase__tabs {
		top: 36px;
	}

	.product-showcase__tab {
		min-height: 38px;
		font-size: 17px;
	}

	.product-showcase__panels {
		margin-top: 42px;
	}

	.cex-product-card__badge {
		min-height: 33px;
		padding: 7px 11px;
		font-size: 14px;
	}

	.cex-product-card__article {
		font-size: 15px;
	}

	.cex-product-card__title,
	.cex-product-card--lead .cex-product-card__title,
	.product-showcase__grid > .cex-product-card--featured .cex-product-card__title {
		font-size: clamp(17px, 2.5vw, 22px);
	}

	.cex-product-card__availability {
		font-size: 15px;
	}

	.product-showcase__catalog {
		font-size: 18px;
	}
}

@media (max-width: 640px) {
	.product-showcase {
		padding: 36px 0 42px;
	}

	.product-showcase__header {
		display: flex;
		flex-direction: column;
		gap: 26px;
	}

	.product-showcase__eyebrow {
		font-size: 14px;
	}

	.product-showcase__title {
		margin-top: 18px;
		font-size: var(--cex-mobile-heading);
	}

	.product-showcase__tabs {
		position: static;
		align-self: flex-start;
	}

	.product-showcase__tab {
		min-height: 36px;
		font-size: 16px;
	}

	.product-showcase__panels {
		margin-top: 36px;
	}

	.product-showcase__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.cex-product-card__badge {
		min-height: 30px;
		padding: 6px 10px;
		font-size: 13px;
	}

	.cex-product-card__article {
		font-size: 14px;
	}

	.cex-product-card__title,
	.cex-product-card--lead .cex-product-card__title,
	.product-showcase__grid > .cex-product-card--featured .cex-product-card__title {
		font-size: 18px;
	}

	.cex-product-card__availability {
		font-size: 14px;
	}

	.product-showcase__catalog {
		font-size: 16px;
	}

	.product-showcase__catalog .button__icon,
	.product-showcase__catalog .button__icon-svg {
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cex-product-card__image,
	.product-showcase__header,
	.product-showcase__panel,
	.product-showcase__catalog-wrap {
		transition: none;
	}
}

/* News showcase */
.news-showcase {
	padding: 60px 0;
	background: #f9f9f9;
}

.news-showcase__header {
	position: relative;
}

.news-showcase__eyebrow {
	margin: 0;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.news-showcase__title {
	margin: 20px 0 0;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.news-showcase__archive-link,
.news-showcase__archive-link:hover {
	position: absolute;
	top: 43px;
	right: 0;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.news-showcase__archive-link:hover {
	color: var(--cex-color-accent-hover);
}

.news-showcase__cards {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	height: 660px;
}

.news-showcase__card {
	position: relative;
	display: block;
	flex: 1 1 0;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border: 1px solid #9f9f9f;
	background: #d6d5d5;
	color: #fff;
	transition: flex-grow 720ms cubic-bezier(.22, .61, .36, 1), border-color var(--cex-transition);
	will-change: flex-grow;
}

.news-showcase__media,
.news-showcase__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.news-showcase__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 720ms cubic-bezier(.22, .61, .36, 1);
}

.news-showcase__overlay {
	background: rgba(0, 0, 0, .8);
	transition: background 420ms ease;
}

.news-showcase__category {
	position: absolute;
	z-index: 1;
	left: 24px;
	top: 24px;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	border-radius: 46px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(16, 24, 40, .1), 0 1px 2px rgba(16, 24, 40, .06);
	color: #161616;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
	white-space: nowrap;
}

.news-showcase__details {
	position: absolute;
	z-index: 1;
	left: 24px;
	right: 100px;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-transform: uppercase;
}

.news-showcase__date {
	color: #acacac;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.news-showcase__card-title {
	color: #fff;
	font-family: Inter, Arial, sans-serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.news-showcase__arrow {
	position: absolute;
	z-index: 1;
	right: 24px;
	bottom: 25px;
	display: grid;
	width: 59px;
	height: 59px;
	place-items: center;
}

.news-showcase__arrow-svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 59px;
	height: 59px;
	transition: opacity 260ms ease;
}

.news-showcase__arrow-svg--inactive {
	opacity: 0;
}

.news-showcase__card:focus-visible {
	z-index: 2;
	outline: 3px solid #ebc811;
	outline-offset: 3px;
}

.has-js .news-showcase__card:not(.is-active) .news-showcase__category,
.has-js .news-showcase__card:not(.is-active) .news-showcase__details {
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.has-js .news-showcase__card:not(.is-active) .news-showcase__arrow-svg--active {
	opacity: 0;
}

.has-js .news-showcase__card:not(.is-active) .news-showcase__arrow-svg--inactive {
	opacity: 1;
}

.has-js .news-showcase__card.is-active {
	flex-grow: 3.156;
	border-color: #9f9f9f;
}

.has-js .news-showcase__card.is-active .news-showcase__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .6) 14.848%, rgba(0, 0, 0, 0) 39.697%);
}

.has-js .news-showcase__card.is-active .news-showcase__image {
	transform: scale(1.012);
}

.has-js .news-showcase__card.is-active .news-showcase__category,
.has-js .news-showcase__card.is-active .news-showcase__details {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 320ms ease 180ms, transform 420ms cubic-bezier(.22, .61, .36, 1) 180ms;
}

.has-js .news-showcase[data-animate] .news-showcase__header,
.has-js .news-showcase[data-animate] .news-showcase__cards {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .news-showcase[data-animate].is-visible .news-showcase__header,
.has-js .news-showcase[data-animate].is-visible .news-showcase__cards {
	opacity: 1;
	transform: translateY(0);
}

.has-js .news-showcase[data-animate].is-visible .news-showcase__cards {
	transition-delay: 100ms;
}

@media (max-width: 1024px) {
	.news-showcase {
		padding: 50px 0;
	}

	.news-showcase__title {
		font-size: clamp(38px, 5.3vw, 48px);
	}

	.news-showcase__archive-link,
	.news-showcase__archive-link:hover {
		font-size: 18px;
	}

	.news-showcase__cards {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		height: auto;
		gap: 16px;
	}

	.news-showcase__card,
	.has-js .news-showcase__card.is-active {
		min-height: 430px;
		flex-grow: 1;
	}

	.news-showcase__overlay,
	.has-js .news-showcase__card.is-active .news-showcase__overlay {
		background: linear-gradient(0deg, rgba(0, 0, 0, .7) 14%, rgba(0, 0, 0, .08) 58%);
	}

	.has-js .news-showcase__card:not(.is-active) .news-showcase__category,
	.has-js .news-showcase__card:not(.is-active) .news-showcase__details {
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.has-js .news-showcase__card:not(.is-active) .news-showcase__arrow-svg--active {
		opacity: 1;
	}

	.has-js .news-showcase__card:not(.is-active) .news-showcase__arrow-svg--inactive {
		opacity: 0;
	}

	.news-showcase__card-title {
		font-size: clamp(24px, 3.2vw, 30px);
	}
}

@media (max-width: 640px) {
	.news-showcase {
		padding: 36px 0;
	}

	.news-showcase__header {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.news-showcase__eyebrow {
		font-size: 14px;
	}

	.news-showcase__title {
		margin-top: 16px;
		font-size: var(--cex-mobile-heading);
	}

	.news-showcase__archive-link,
	.news-showcase__archive-link:hover {
		position: static;
		margin-top: 24px;
		font-size: 16px;
	}

	.news-showcase__archive-link .button__icon,
	.news-showcase__archive-link .button__icon-svg {
		width: 52px;
		height: 52px;
	}

	.news-showcase__cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		margin-top: 30px;
	}

	.news-showcase__card,
	.has-js .news-showcase__card.is-active {
		min-height: 390px;
	}

	.news-showcase__category {
		left: 18px;
		top: 18px;
		min-height: 38px;
		padding: 7px 12px;
		font-size: 16px;
	}

	.news-showcase__details {
		left: 18px;
		right: 76px;
		bottom: 24px;
		gap: 10px;
	}

	.news-showcase__date {
		font-size: 15px;
	}

	.news-showcase__card-title {
		font-size: 23px;
		line-height: 1.05;
	}

	.news-showcase__arrow {
		right: 18px;
		bottom: 18px;
		width: 50px;
		height: 50px;
	}

	.news-showcase__arrow-svg {
		width: 50px;
		height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-showcase__card,
	.news-showcase__image,
	.news-showcase__overlay,
	.news-showcase__arrow-svg,
	.news-showcase__category,
	.news-showcase__details,
	.news-showcase__header,
	.news-showcase__cards {
		transition: none;
	}
}

/* Contact information */
.contact-section {
	padding: 0;
	background: #fff;
}

.contacts-breadcrumbs {
	padding-top: 38px;
	padding-bottom: 38px;
	background: #fff;
}

.contact-section__top {
	display: grid;
	grid-template-columns: minmax(0, 38.28%) minmax(0, 49.39%);
	justify-content: space-between;
	align-items: start;
}

.contact-section__eyebrow,
.contact-section__title,
.contact-section__label,
.contact-section__value {
	font-family: Inter, Arial, sans-serif;
}

.contact-section__eyebrow {
	margin: 0;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.contact-section__title {
	margin: 20px 0 0;
	color: #000;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.contact-section__details {
	display: grid;
	grid-template-columns: repeat(2, 302px);
	justify-content: start;
	gap: 50px 154px;
}

.contact-section__field {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	margin: 0;
	font-style: normal;
}

.contact-section__label {
	color: #878787;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.contact-section__value {
	max-width: 408px;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.contact-section__contact-link {
	width: max-content;
	max-width: 100%;
}

.contact-section__contact-link:hover,
.contact-section__contact-link:focus-visible {
	color: #ebc811;
}

.contact-section__social-list {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-section__social-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 141px;
	max-width: 100%;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
}

.contact-section__social-icon {
	position: relative;
	display: block;
	flex: 0 0 18px;
	width: 18px;
	height: 15px;
	transform: rotate(-45deg);
}

.contact-section__social-icon-svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 18px;
	height: 15px;
	transition: opacity var(--cex-transition);
}

.contact-section__social-icon-svg--hover {
	opacity: 0;
}

.contact-section__social-link:hover,
.contact-section__social-link:focus-visible {
	color: #ebc811;
}

.contact-section__social-link:hover .contact-section__social-icon-svg--default,
.contact-section__social-link:focus-visible .contact-section__social-icon-svg--default {
	opacity: 0;
}

.contact-section__social-link:hover .contact-section__social-icon-svg--hover,
.contact-section__social-link:focus-visible .contact-section__social-icon-svg--hover {
	opacity: 1;
}

.contact-section__social-link:focus-visible,
.contact-section__contact-link:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 4px;
}

.contact-section__map {
	height: 435px;
	margin-top: 50px;
	overflow: hidden;
	border-radius: 12px;
	background: #f4f4f4;
}

.contact-section__map-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-section__city-tabs {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.contact-section__city-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 61px;
	padding: 10px 10px 8px;
	border-bottom: 2px solid transparent;
	color: #cbcbcb;
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color var(--cex-transition), border-color var(--cex-transition);
}

.contact-section__city-tab:hover {
	border-bottom-color: #ebc811;
	color: #333;
}

.contact-section__city-tab-icon {
	position: absolute;
	top: 50%;
	right: calc(100% + 10px);
	width: 14px;
	height: 14px;
	opacity: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: opacity var(--cex-transition);
}

.contact-section__city-tab-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-section__city-tab:hover .contact-section__city-tab-icon {
	opacity: 1;
}

.has-js .contact-section[data-animate] .contact-section__top,
.has-js .contact-section[data-animate] .contact-section__map {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .contact-section[data-animate].is-visible .contact-section__top,
.has-js .contact-section[data-animate].is-visible .contact-section__map {
	opacity: 1;
	transform: translateY(0);
}

.has-js .contact-section[data-animate].is-visible .contact-section__map {
	transition-delay: 100ms;
}

@media (max-width: 1024px) {
	.contacts-breadcrumbs {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.contact-section__top {
		grid-template-columns: minmax(0, 1fr);
		gap: 50px;
	}

	.contact-section__details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 56px;
	}

	.contact-section__map {
		height: 380px;
	}

	.contact-section__city-tab {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.contacts-breadcrumbs {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.contact-section__top {
		gap: 32px;
	}

	.contact-section__eyebrow {
		font-size: 14px;
	}

	.contact-section__title {
		margin-top: 16px;
		font-size: var(--cex-mobile-heading);
		line-height: 1.05;
	}

	.contact-section__details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 16px;
	}

	.contact-section__field {
		gap: 12px;
	}

	.contact-section__label {
		font-size: 14px;
	}

	.contact-section__value,
	.contact-section__social-link {
		font-size: 20px;
	}

	.contact-section__contact-link {
		width: 100%;
		font-size: 16px;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.contact-section__social-list {
		gap: 12px;
	}

	.contact-section__social-link {
		width: 124px;
	}

	.contact-section__map {
		height: 280px;
		margin-top: 36px;
		border-radius: 8px;
	}

	.contact-section__city-tabs {
		justify-content: flex-start;
		margin-top: 14px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.contact-section__city-tabs::-webkit-scrollbar {
		display: none;
	}

	.contact-section__city-tab {
		min-height: 50px;
		font-size: 20px;
	}
}

@media (max-width: 420px) {
	.contact-section__map {
		height: 240px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-section__social-icon-svg,
	.contact-section__top,
	.contact-section__map {
		transition: none;
	}
}

/* Thank-you page */
.thank-you-section {
	display: flex;
	align-items: center;
	min-height: 760px;
	padding: 190px 0 110px;
	background: #080808;
	color: #fff;
	text-align: center;
}

.thank-you-section__content {
	display: grid;
	justify-items: center;
	width: min(100%, 1080px);
	margin: 0 auto;
	gap: 34px;
}

.thank-you-section__title {
	margin: 0;
	font-size: clamp(54px, 5vw, 86px);
	font-weight: 400;
	line-height: .98;
	letter-spacing: -.04em;
	text-transform: uppercase;
}

.thank-you-section__text {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, .72);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
}

.thank-you-section__link.button,
.thank-you-section__link.button:hover {
	min-height: 58px;
	padding: 16px 34px;
	border-color: #ebc811;
	background: #ebc811;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.thank-you-section__link.button:hover,
.thank-you-section__link.button:focus-visible {
	border-color: #fff;
	background: #fff;
	color: #000;
}

.thank-you-section__link.button:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 4px;
}

.has-js .thank-you-section[data-animate] .thank-you-section__content {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .thank-you-section[data-animate].is-visible .thank-you-section__content {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 640px) {
	.thank-you-section {
		min-height: 620px;
		padding: 140px 0 80px;
	}

	.thank-you-section__content {
		gap: 26px;
	}

	.thank-you-section__title {
		font-size: clamp(42px, 13vw, 58px);
	}

	.thank-you-section__text {
		font-size: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.thank-you-section__content {
		transition: none;
	}
}

/* Callback form */
.callback-section {
	padding: 60px 0;
	background: #fff;
}

.callback-section__card {
	position: relative;
	min-height: 682px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(6, 37, 91, .1), 0 6px 20px 6px rgba(24, 44, 73, .12);
	background: #111;
}

.callback-section__background,
.callback-section__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.callback-section__background {
	overflow: hidden;
}

.callback-section__background-image {
	position: absolute;
	top: -135.45%;
	left: 0;
	display: block;
	width: 134.59%;
	max-width: none;
	height: auto;
}

.callback-section__overlay {
	z-index: 1;
	background: linear-gradient(127.12deg, rgba(0, 0, 0, .8) 32%, rgba(0, 0, 0, 0) 61.14%), linear-gradient(90deg, rgba(0, 0, 0, .47), rgba(0, 0, 0, .47));
}

.callback-section__labels,
.callback-section__content {
	position: relative;
	z-index: 2;
}

.callback-section__labels {
	position: absolute;
	top: 18px;
	left: 28px;
}

.callback-section__caption,
.callback-section__eyebrow,
.callback-section__title,
.callback-form,
.callback-form button,
.callback-form input,
.callback-form textarea {
	font-family: Inter, Arial, sans-serif;
}

.callback-section__caption,
.callback-section__eyebrow {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}

.callback-section__caption {
	color: #000;
}

.callback-section__eyebrow {
	margin-top: 2px;
	margin-left: 16px;
	color: rgba(255, 255, 255, .51);
}

.callback-section__content {
	padding: 83px 40px 36px;
}

.callback-section__title {
	max-width: 860px;
	margin: 0;
	color: #fff;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.02em;
	text-transform: uppercase;
}

.callback-section__form {
	width: min(851px, 100%);
	margin-top: 66px;
}

.callback-section__form .wpcf7 {
	margin: 0;
}

.callback-section__form .wpcf7 form,
.callback-form {
	margin: 0;
}

.callback-form > p,
.callback-form__fields > p,
.callback-form__footer > p {
	display: contents;
	margin: 0;
}

.callback-form br {
	display: none;
}

.callback-form__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 16px;
}

.callback-form__field {
	display: grid;
	align-self: start;
	align-content: start;
	min-width: 0;
	gap: 8px;
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.callback-form__field--message {
	grid-column: 1 / -1;
	position: relative;
}

.callback-form__field:has(.callback-form__phone-control) {
	position: relative;
	z-index: 20;
}

.callback-form__label {
	display: block;
}

.callback-form .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
}

.callback-form__input,
.callback-form__textarea {
	display: block;
	width: 100%;
	border: 0;
	border-radius: 10px;
	outline: 0;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -.02em;
	backdrop-filter: blur(7.5px);
	-webkit-backdrop-filter: blur(7.5px);
	transition: background-color var(--cex-transition), box-shadow var(--cex-transition);
}

.callback-form__input {
	height: 50px;
	padding: 0 20px;
}

.callback-form__textarea {
	height: 132px;
	padding: 14px 58px 14px 20px;
	resize: vertical;
}

.callback-form__input::placeholder,
.callback-form__textarea::placeholder {
	color: rgba(255, 255, 255, .7);
	opacity: 1;
}

.callback-form__input:focus,
.callback-form__textarea:focus {
	background: rgba(255, 255, 255, .2);
	box-shadow: 0 0 0 2px rgba(235, 200, 17, .72);
}

.callback-form__phone-control {
	position: relative;
	display: block;
	min-height: 50px;
	padding: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(7.5px);
	-webkit-backdrop-filter: blur(7.5px);
	transition: background-color var(--cex-transition), box-shadow var(--cex-transition);
}

.callback-form__phone-control:focus-within {
	background: rgba(255, 255, 255, .2);
	box-shadow: 0 0 0 2px rgba(235, 200, 17, .72);
}

.callback-form__phone-prefix {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 7px;
	padding-right: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.callback-form__flag {
	display: block;
	width: 25px;
	height: 16px;
}

.callback-form__chevron {
	display: block;
	width: 9px;
	height: 5px;
}

.callback-form__flag-svg,
.callback-form__chevron-svg,
.callback-form__submit-icon-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.callback-form__phone-control .wpcf7-form-control-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
}

.callback-form__phone-control .callback-form__input {
	width: 100%;
	height: 50px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.callback-form__phone-control .iti {
	display: block;
	width: 100%;
	height: 50px;
	--iti-border-color: rgba(255, 255, 255, .18);
	--iti-dropdown-bg: #fff;
	--iti-hover-color: rgba(0, 0, 0, .06);
	--iti-icon-color: #333;
}

.callback-form__phone-control .iti__country-container,
.callback-form__phone-control .iti__selected-country {
	height: 50px;
}

.callback-form__phone-control .iti__selected-country {
	color: #fff;
	font-family: Inter, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.callback-form__phone-control .iti__selected-country-primary {
	padding-left: 20px;
}

.callback-form__phone-control .iti__selected-country-primary:hover {
	background: rgba(255, 255, 255, .08);
}

.callback-form__phone-control .iti__arrow {
	border-top-color: rgba(255, 255, 255, .7);
}

.callback-form__phone-control .iti__arrow--up {
	border-top-color: transparent;
	border-bottom-color: rgba(255, 255, 255, .7);
}

.callback-form__phone-control .iti__dropdown-content {
	z-index: 30;
	border-color: rgba(0, 0, 0, .12);
	border-radius: 10px;
	background: #fff;
	color: #111;
	font-family: Inter, Arial, sans-serif;
	font-size: 15px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.callback-form__phone-control .iti__search-input {
	background: #fff;
	color: #111;
}

.callback-form__counter {
	position: absolute;
	right: 16px;
	bottom: 14px;
	color: rgba(255, 255, 255, .5);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	pointer-events: none;
}

.callback-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 20px;
}

.callback-form__consent {
	max-width: 480px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.08;
}

.callback-form__consent .wpcf7-list-item {
	display: block;
	margin: 0;
}

.callback-form__consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.callback-form__consent input[type='checkbox'] {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin: 0;
	appearance: none;
	border: 1px solid #aeaeae;
	border-radius: 4px;
	background: transparent;
	cursor: pointer;
}

.callback-form__consent input[type='checkbox']:checked {
	border-color: #ebc811;
	background: #ebc811 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m3 8 3 3 7-7'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.callback-form__consent input[type='checkbox']:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.callback-form__consent a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.callback-form__submit,
.callback-form__submit:hover {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 25px;
	min-height: 60px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ebc811;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
}

.callback-form__submit-icon {
	display: block;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	transition: transform var(--cex-transition), filter var(--cex-transition);
}

.callback-form__submit:hover,
.callback-form__submit:focus-visible {
	color: #fff;
}

.callback-form__submit:hover .callback-form__submit-icon,
.callback-form__submit:focus-visible .callback-form__submit-icon {
	transform: translate(3px, -3px);
	filter: brightness(0) invert(1);
}

.callback-form__submit:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 5px;
}

.callback-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #ffd86a;
	font-size: 13px;
	line-height: 1.2;
}

/* CF7 puts the phone validation message inside the flex control. Keep the
 * control at the same 50px height as the neighbouring input and reserve space
 * for the message below it, so the next grid row remains aligned. */
.callback-form__phone-control .wpcf7-not-valid-tip {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	margin: 0;
}

.callback-form__field:has(.callback-form__phone-control .wpcf7-not-valid-tip) {
	padding-bottom: 21px;
}

.callback-section__form .wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 18px;
	border: 1px solid #ebc811;
	border-radius: 10px;
	background: rgba(0, 0, 0, .58);
	color: #fff;
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	backdrop-filter: blur(7.5px);
	-webkit-backdrop-filter: blur(7.5px);
}

.callback-section__form form.invalid .wpcf7-response-output,
.callback-section__form form.unaccepted .wpcf7-response-output,
.callback-section__form form.payment-required .wpcf7-response-output,
.callback-section__form form.sent .wpcf7-response-output {
	border-color: #ebc811;
}

.callback-section__form form.failed .wpcf7-response-output,
.callback-section__form form.aborted .wpcf7-response-output,
.callback-section__form form.spam .wpcf7-response-output {
	border-color: #ff8a80;
}

.has-js .callback-section[data-animate] .callback-section__card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 560ms ease, transform 680ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .callback-section[data-animate].is-visible .callback-section__card {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.callback-section {
		padding: 48px 0;
	}

	.callback-section__card {
		min-height: 0;
	}

	.callback-section__content {
		padding: 80px 32px 36px;
	}

	.callback-section__title {
		font-size: clamp(40px, 5.2vw, 50px);
	}

	.callback-section__form {
		margin-top: 54px;
	}
}

@media (max-width: 640px) {
	.callback-section {
		padding: 40px 0;
	}

	.callback-section__card {
		border-radius: 12px;
	}

	.callback-section__background-image {
		top: -16%;
		left: -112%;
		width: 260%;
	}

	.callback-section__overlay {
		background: linear-gradient(145deg, rgba(0, 0, 0, .9) 16%, rgba(0, 0, 0, .57) 74%), rgba(0, 0, 0, .22);
	}

	.callback-section__labels {
		top: 15px;
		left: 20px;
	}

	.callback-section__caption,
	.callback-section__eyebrow {
		font-size: 13px;
	}

	.callback-section__eyebrow {
		margin-left: 10px;
	}

	.callback-section__content {
		padding: 67px 20px 28px;
	}

	.callback-section__title {
		font-size: var(--cex-mobile-heading);
		line-height: 1.04;
	}

	.callback-section__form {
		margin-top: 42px;
	}

	.callback-form__fields {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.callback-form__field--message {
		grid-column: auto;
	}

	.callback-form__field,
	.callback-form__input,
	.callback-form__phone-prefix,
	.callback-form__phone-control .iti__selected-country {
		font-size: 16px;
	}

	.callback-section__form .wpcf7 form .wpcf7-response-output {
		margin-top: 16px;
		padding: 12px 14px;
		font-size: 14px;
	}

	.callback-form__input,
	.callback-form__phone-control {
		min-height: 48px;
	}

	.callback-form__textarea {
		height: 128px;
	}

	.callback-form__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.callback-form__consent {
		font-size: 14px;
		line-height: 1.2;
	}

	.callback-form__submit,
	.callback-form__submit:hover {
		gap: 18px;
		font-size: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.callback-section__card,
	.callback-form__input,
	.callback-form__textarea,
	.callback-form__phone-control,
	.callback-form__submit-icon {
		transition: none;
	}
}

/* WooCommerce single product: Figma node 140:5243. */
.single-product-detail {
	padding: 0 0 60px;
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.single-product-detail__breadcrumbs {
	padding: 30px 0 40px;
}

.single-product-detail__layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 20px;
}

.single-product-gallery {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.single-product-gallery__frame {
	position: relative;
	width: 100%;
	margin: 0;
	aspect-ratio: 890 / 500.625;
	overflow: hidden;
	border: 1px solid #cdcdcd;
	background: #f8f8f8;
}

.single-product-gallery__frame + .single-product-gallery__frame {
	border-top: 0;
}

.single-product-gallery__image {
	display: block;
}

.single-product-gallery__image--primary {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	padding: 10px;
	object-fit: contain;
}

.single-product-gallery__image--zoom {
	position: absolute;
	top: 50%;
	left: 28.6%;
	width: 95.3%;
	max-width: none;
	height: auto;
	transform: translateY(-50%);
}

.single-product-gallery__image--lifestyle {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.woocommerce .single-product-gallery__image--primary,
.woocommerce-page .single-product-gallery__image--primary {
	width: 100%;
	max-width: none;
	height: 100%;
}

.woocommerce .single-product-gallery__image--zoom,
.woocommerce-page .single-product-gallery__image--zoom {
	width: 95.3%;
	max-width: none;
	height: auto;
}

.woocommerce .single-product-gallery__image--lifestyle,
.woocommerce-page .single-product-gallery__image--lifestyle {
	width: 100%;
	max-width: none;
	height: 100%;
}

.single-product-detail__content {
	display: flex;
	flex-direction: column;
	gap: 66px;
	min-width: 0;
}

.single-product-detail__summary {
	display: grid;
	gap: 52px;
}

.single-product-detail__heading {
	display: grid;
	gap: 35px;
}

.single-product-detail__title {
	margin: 0;
	font-size: 50px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.single-product-detail__article {
	margin: 0;
	color: #5e5e5e;
	font-size: 20px;
	line-height: 1;
}

.single-product-detail__lead {
	width: min(100%, 833px);
	color: #5e5e5e;
	font-size: 24px;
	line-height: 1.05;
}

.single-product-detail__lead p {
	margin: 0;
}

.single-product-detail__lead p + p {
	margin-top: 20px;
}

.single-product-accordions {
	display: grid;
	width: min(100%, 849px);
	gap: 16px;
}

.single-product-accordion {
	min-width: 0;
}

.single-product-accordion__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	min-height: 64px;
	padding: 16px 0;
	border: 0;
	border-bottom: 1px solid #b6b6b6;
	background: transparent;
	color: rgba(0, 0, 0, .6);
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

.single-product-accordion.is-open .single-product-accordion__button {
	color: #000;
}

.single-product-accordion__button:hover,
.single-product-accordion__button:focus-visible {
	color: #000;
}

.single-product-accordion__button:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 3px;
}

.single-product-accordion__icon {
	position: relative;
	display: block;
	flex: 0 0 31.5px;
	width: 31.5px;
	height: 31.5px;
}

.single-product-accordion__icon::before,
.single-product-accordion__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 31.5px;
	height: 1px;
	background: currentColor;
	content: '';
	transform: translate(-50%, -50%);
	transition: transform var(--cex-transition);
}

.single-product-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.single-product-accordion.is-open .single-product-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.single-product-accordion__panel[hidden] {
	display: none;
}

.single-product-accordion__panel-inner {
	padding-top: 30px;
}

.single-product-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid #b0b0b0;
	border-left: 1px solid #b0b0b0;
}

.single-product-features__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	min-width: 0;
	min-height: 154px;
	padding: 14px;
	border-right: 1px solid #b0b0b0;
	border-bottom: 1px solid #b0b0b0;
}

.single-product-features__icon-frame {
	position: relative;
	display: block;
	flex: 0 0 47px;
	width: 47px;
	height: 47px;
}

.single-product-features__icon {
	display: block;
	width: 100%;
	height: 100%;
}

/* Figma 138:5167: the car artwork is a 45.7654 x 28.1014 SVG
 * positioned inside a 47 x 47 icon frame. Keep that native ratio. */
.single-product-features__icon-frame--car .single-product-features__icon {
	position: absolute;
	top: 22.87%;
	left: 2.04%;
	width: 97.37%;
	height: 59.79%;
}

.single-product-features__item p {
	margin: 0;
	color: #5e5e5e;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.05;
}

.single-product-accordion__copy {
	padding-bottom: 20px;
	color: #5e5e5e;
	font-size: 20px;
	line-height: 1.35;
}

.single-product-accordion__copy > :first-child {
	margin-top: 0;
}

.single-product-accordion__copy > :last-child {
	margin-bottom: 0;
}

.single-product-accordion__copy table {
	width: 100%;
	border-collapse: collapse;
}

.single-product-accordion__copy th,
.single-product-accordion__copy td {
	padding: 12px 14px;
	border: 1px solid #b0b0b0;
	text-align: left;
}

@media (max-width: 1400px) {
	.single-product-detail__content {
		gap: 50px;
	}

	.single-product-detail__summary {
		gap: 40px;
	}

	.single-product-detail__heading {
		gap: 26px;
	}

	.single-product-detail__title {
		font-size: clamp(36px, 3.55vw, 50px);
	}

	.single-product-detail__lead {
		font-size: clamp(20px, 1.72vw, 24px);
	}

	.single-product-accordion__button {
		font-size: clamp(27px, 2.42vw, 34px);
	}

	.single-product-features__item p {
		font-size: clamp(19px, 1.72vw, 24px);
	}
}

@media (max-width: 1024px) {
	.single-product-detail {
		padding-bottom: 48px;
	}

	.single-product-detail__breadcrumbs {
		padding: 28px 0 34px;
	}

	.single-product-detail__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 56px;
	}

	.single-product-gallery {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product-gallery__frame {
		aspect-ratio: 4 / 3;
	}

	.single-product-gallery__frame + .single-product-gallery__frame {
		border-top: 1px solid #cdcdcd;
		border-left: 0;
	}

	.single-product-gallery__frame--lifestyle {
		grid-column: 1 / -1;
		aspect-ratio: 16 / 9;
		border-top: 0;
		border-left: 1px solid #cdcdcd;
	}

	.single-product-detail__title {
		font-size: clamp(38px, 5.2vw, 50px);
	}

	.single-product-accordions {
		width: 100%;
	}
}

@media (max-width: 720px) {
	.single-product-detail {
		padding-bottom: 36px;
	}

	.single-product-detail__breadcrumbs {
		padding: 24px 0 28px;
		overflow-x: auto;
	}

	.single-product-detail__breadcrumbs .category-breadcrumbs__nav,
	.single-product-detail__breadcrumbs .category-breadcrumbs__nav > span {
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.single-product-detail__breadcrumbs .category-breadcrumbs__nav {
		font-size: 15px;
	}

	.single-product-detail__layout {
		gap: 38px;
	}

	.single-product-gallery {
		grid-template-columns: minmax(0, 1fr);
	}

	.single-product-gallery__frame,
	.single-product-gallery__frame--lifestyle {
		grid-column: auto;
		aspect-ratio: 4 / 3;
		border: 1px solid #cdcdcd;
	}

	.single-product-gallery__frame + .single-product-gallery__frame {
		border-top: 0;
		border-left: 1px solid #cdcdcd;
	}

	.single-product-gallery__frame--zoom {
		display: none;
	}

	.single-product-detail__content {
		gap: 42px;
	}

	.single-product-detail__summary {
		gap: 30px;
	}

	.single-product-detail__heading {
		gap: 20px;
	}

	.single-product-detail__title {
		font-size: clamp(28px, 8.7vw, 36px);
		line-height: 1.02;
	}

	.single-product-detail__article {
		font-size: 16px;
	}

	.single-product-detail__lead {
		font-size: 18px;
		line-height: 1.2;
	}

	.single-product-accordions {
		gap: 10px;
	}

	.single-product-accordion__button {
		min-height: 54px;
		padding: 14px 0;
		font-size: clamp(22px, 6.2vw, 26px);
	}

	.single-product-accordion__icon {
		flex-basis: 24px;
		width: 24px;
		height: 24px;
	}

	.single-product-accordion__icon::before,
	.single-product-accordion__icon::after {
		width: 24px;
	}

	.single-product-accordion__panel-inner {
		padding-top: 20px;
	}

	.single-product-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product-features__item {
		gap: 14px;
		min-height: 130px;
		padding: 12px;
	}

	.single-product-features__icon-frame {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.single-product-features__item p,
	.single-product-accordion__copy {
		font-size: 17px;
		line-height: 1.15;
	}
}

@media (prefers-reduced-motion: reduce) {
	.single-product-accordion__icon::after {
		transition: none;
	}
}

/* Related products: Figma node 120:3032. */
.related-products-section {
	padding: 60px 0;
	background: #fff;
	color: #000;
	font-family: Inter, Arial, sans-serif;
}

.related-products-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.related-products-section__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.related-products-section__eyebrow,
.related-products-section__title {
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
}

.related-products-section__eyebrow {
	font-size: 18px;
	line-height: 1.2;
}

.related-products-section__title {
	font-size: 50px;
	line-height: 1.2;
}

.related-products-section__catalog-link {
	flex: 0 0 auto;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.woocommerce a.button.related-products-section__catalog-link,
.woocommerce a.button.related-products-section__catalog-link:hover,
.woocommerce-page a.button.related-products-section__catalog-link,
.woocommerce-page a.button.related-products-section__catalog-link:hover {
	display: inline-flex;
	min-height: 60px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #000;
}

.related-products-section__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.has-js .related-products-section[data-animate] .related-products-section__header,
.has-js .related-products-section[data-animate] .related-products-section__grid {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .related-products-section[data-animate].is-visible .related-products-section__header,
.has-js .related-products-section[data-animate].is-visible .related-products-section__grid {
	opacity: 1;
	transform: translateY(0);
}

.has-js .related-products-section[data-animate].is-visible .related-products-section__grid {
	transition-delay: 100ms;
}

@media (max-width: 1200px) {
	.related-products-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.related-products-section {
		padding: 40px 0;
	}

	.related-products-section__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 28px;
	}

	.related-products-section__copy {
		gap: 14px;
	}

	.related-products-section__eyebrow {
		font-size: 14px;
	}

	.related-products-section__title {
		font-size: var(--cex-mobile-heading-prominent);
		line-height: 1;
	}

	.related-products-section__catalog-link {
		font-size: 16px;
	}

	.related-products-section__catalog-link .button__icon,
	.related-products-section__catalog-link .button__icon-svg {
		width: 52px;
		height: 52px;
	}

	.related-products-section__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		margin-top: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.related-products-section__header,
	.related-products-section__grid {
		transition: none;
	}
}

/* Error page: Figma node 162:9236. */
section.error404 {
	position: relative;
	min-height: max(742px, 100svh);
	overflow: hidden;
	background: #000;
	color: #fff;
	font-family: Inter, Arial, sans-serif;
}

.error404__background,
.error404__overlay {
	position: absolute;
	inset: 0;
}

.error404__background {
	overflow: hidden;
}

.error404__background-image {
	position: absolute;
	width: 119.79%;
	max-width: none;
	height: 178.17%;
	max-height: none;
	left: -19.79%;
	top: -55%;
	object-fit: fill;
}

.error404__overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, .7) 22.395%, transparent 50%), rgba(0, 0, 0, .8);
}

.error404__inner {
	position: relative;
	width: calc(100% - 120px);
	max-width: 1800px;
	min-height: 742px;
	margin-inline: auto;
}

.error404__visual {
	position: absolute;
	top: 220px;
	left: 0;
	width: 497px;
	height: 374px;
}

.error404__code {
	position: absolute;
	top: 31px;
	left: 0;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: 365px;
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1;
	transform: translateY(-38px);
}

.error404__tyre-wrap {
	position: absolute;
	top: 0;
	left: 179px;
	z-index: 2;
	display: block;
	width: 318px;
	height: 374px;
	overflow: hidden;
}

.error404__tyre {
	position: absolute;
	width: 174.48%;
	max-width: none;
	height: 131.2%;
	max-height: none;
	left: -34.97%;
	top: -20%;
	object-fit: fill;
}

.error404__title {
	position: absolute;
	top: 594px;
	left: 0;
	margin: 0;
	color: #fff;
	font-size: 55px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.error404__copy {
	position: absolute;
	top: 485px;
	right: 0;
	width: min(41%, 738px);
}

.error404__description {
	margin: 0;
	color: #b0b0b0;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.28;
}

.error404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 60px;
	margin-top: 14px;
}

.button.button--error404,
.button.button--error404:hover {
	display: inline-flex;
	min-height: 60px;
	padding: 0;
	border: 0;
	border-radius: 0;
	gap: 25px;
	background: transparent;
	color: #ebc811;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}

.button.button--error404 .button__icon-svg {
	display: block;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	transition: transform var(--cex-transition);
}

.button.button--error404:hover .button__icon-svg,
.button.button--error404:focus-visible .button__icon-svg {
	transform: translate(3px, -3px);
}

.button.button--error404:focus-visible {
	outline: 2px solid #ebc811;
	outline-offset: 6px;
}

.has-js .error404__copy[data-animate] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.has-js .error404__copy[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1600px) and (min-width: 1025px) {
	.error404__inner {
		min-height: 680px;
	}

	.error404__visual {
		top: 196px;
		transform: scale(.9);
		transform-origin: top left;
	}

	.error404__title {
		top: 550px;
		font-size: clamp(40px, 3.4vw, 52px);
	}

	.error404__copy {
		top: 430px;
	}

	.error404__description {
		font-size: clamp(21px, 1.75vw, 26px);
	}

	.button.button--error404,
	.button.button--error404:hover {
		font-size: 17px;
	}
}

@media (max-width: 1024px) {
	section.error404 {
		min-height: max(700px, 100svh);
	}

	.error404__background-image {
		width: 195%;
		height: 142%;
		left: -47%;
		top: -29%;
	}

	.error404__inner {
		width: calc(100% - 40px);
		min-height: 700px;
		padding-top: 154px;
	}

	.error404__visual {
		position: relative;
		top: auto;
		left: auto;
		width: 380px;
		height: 286px;
		transform: scale(.76);
		transform-origin: top left;
	}

	.error404__title,
	.error404__copy {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}

	.error404__title {
		margin-top: -68px;
		font-size: clamp(34px, 5vw, 50px);
	}

	.error404__copy {
		width: min(100%, 650px);
		margin: 32px 0 0 auto;
	}

	.error404__description {
		font-size: clamp(20px, 3vw, 26px);
	}
}

@media (max-width: 600px) {
	section.error404 {
		min-height: max(650px, 100svh);
	}

	.error404__background-image {
		width: 280%;
		height: 128%;
		left: -91%;
		top: -18%;
	}

	.error404__inner {
		min-height: 650px;
		padding-top: 132px;
	}

	.error404__visual {
		width: 304px;
		height: 230px;
		transform: scale(.5);
	}

	.error404__title {
		margin-top: -4px;
		font-size: var(--cex-mobile-heading);
		line-height: 1.05;
	}

	.error404__copy {
		margin-top: 24px;
	}

	.error404__description {
		font-size: 17px;
		line-height: 1.3;
	}

	.error404__actions {
		gap: 8px 24px;
		margin-top: 16px;
	}

	.button.button--error404,
	.button.button--error404:hover {
		gap: 12px;
		font-size: 14px;
	}

	.button.button--error404 .button__icon-svg {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.error404__copy[data-animate],
	.button.button--error404 .button__icon-svg {
		transition: none;
	}
}
