:root {
	--preview-red: #dc2b1b;
	--preview-ink: #222222;
	--preview-line: #e1e1e1;
}

* {
	box-sizing: border-box;
}

html {
	background: #f3f4f5;
}

body {
	margin: 0;
	color: var(--preview-ink);
	font-family:
		"Open Sans", Arial, sans-serif;
	background: #fff;
}

a {
	color: inherit;
}

.preview-notice {
	position: relative;
	z-index: 100001;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 34px;
	padding: 7px 16px;
	color: #fff;
	font-size: 12px;
	font-weight: 650;
	text-align: center;
	background: #20252a;
}

.preview-notice span {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 1px 7px;
	color: #20252a;
	font-size: 10px;
	letter-spacing: 0.08em;
	background: #fff;
	border-radius: 3px;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: #fff;
	box-shadow: 0 1px 0 var(--preview-line);
}

.preview-header-main,
.preview-mobile-header {
	width: min(1520px, calc(100% - 48px));
	margin: 0 auto;
}

.preview-site-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	padding: 0 max(24px, calc((100vw - 1520px) / 2));
	color: #222;
	font-size: 14px;
	font-style: italic;
	border-bottom: 1px solid var(--preview-line);
}

.preview-site-topbar > div:first-child {
	display: flex;
	align-items: center;
	gap: 10px;
}

.preview-site-topbar a {
	text-decoration: none;
}

.preview-site-topbar a:hover {
	color: var(--preview-red);
}

.preview-socials {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
}

.preview-header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	min-height: 100px;
}

.preview-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.preview-brand img {
	display: block;
	width: 257px;
	height: auto;
}

.preview-nav {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	margin-left: auto;
}

.preview-nav ul,
.preview-mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.preview-nav ul {
	display: flex;
	align-items: stretch;
}

.preview-nav li {
	display: flex;
	align-items: stretch;
}

.preview-nav li > a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100px;
	padding: 0 13px;
	color: #222;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

.preview-nav li > a::after {
	position: absolute;
	right: 13px;
	bottom: 27px;
	left: 13px;
	height: 2px;
	background: #222;
	content: "";
	opacity: 0;
	transform: scaleX(0.45);
	transition:
		opacity 180ms ease-out,
		transform 180ms ease-out;
}

.preview-nav li > a:hover::after,
.preview-nav #menu-item-7728 > a[aria-expanded="true"]::after {
	opacity: 1;
	transform: scaleX(1);
}

.preview-header-tools {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.preview-header-tools button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #222;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.preview-header-tools button + button {
	border-left: 1px solid var(--preview-line);
}

.preview-header-tools svg,
.preview-mobile-header button svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.preview-header-tools button:hover {
	color: var(--preview-red);
}

.preview-cart {
	padding-left: 8px;
	color: #333;
	font-size: 13px;
	white-space: nowrap;
}

.preview-mobile-header,
.preview-mobile-drawer {
	display: none;
}

.preview-hero {
	position: relative;
	display: grid;
	min-height: 570px;
	padding: 88px max(24px, calc((100vw - 1220px) / 2));
	overflow: hidden;
	background:
		linear-gradient(90deg, #f2f3f4 0 48%, rgb(242 243 244 / 68%) 64%, transparent),
		linear-gradient(135deg, #e3e5e6 50%, #bdc1c4 50%);
}

.preview-hero::after {
	position: absolute;
	top: 90px;
	right: 10%;
	width: 360px;
	height: 360px;
	border: 42px solid rgb(32 37 42 / 10%);
	border-radius: 50%;
	content: "";
}

.preview-hero__content {
	position: relative;
	z-index: 1;
	max-width: 560px;
}

.preview-hero__eyebrow {
	color: var(--preview-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.preview-hero h1 {
	margin: 16px 0;
	font-size: clamp(38px, 5vw, 66px);
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.preview-hero p {
	max-width: 520px;
	color: #626a72;
	font-size: 17px;
	line-height: 1.65;
}

.preview-hero a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	margin-top: 16px;
	padding: 0 20px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	background: var(--preview-red);
	border-radius: 5px;
	text-decoration: none;
}

.preview-mobile-drawer {
	width: min(88vw, 360px);
	min-height: calc(100vh - 90px);
	background: #fff;
	box-shadow: 20px 0 50px rgb(0 0 0 / 14%);
}

.preview-mobile-drawer__label {
	margin: 0;
	padding: 17px 16px;
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.08em;
	background: var(--preview-red);
	text-transform: uppercase;
}

.preview-mobile-menu > li {
	position: relative;
	border-bottom: 1px solid var(--preview-line);
}

.preview-mobile-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

@media (max-width: 991px) {
	.preview-notice {
		position: static;
	}

	.site-header {
		top: 0;
	}

	.preview-header-main,
	.preview-site-topbar {
		display: none;
	}

	.preview-mobile-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 58px;
		padding: 0 16px;
	}

	.preview-mobile-header .preview-brand img {
		width: 210px;
	}

	.preview-mobile-header button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		color: var(--preview-ink);
		background: transparent;
		border: 0;
	}

	.preview-mobile-drawer {
		display: block;
	}

	.preview-hero {
		display: none;
	}
}
