.er2-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
	background-color: rgba(242, 242, 240, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, color 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.er2-header__logo {
	display: inline-flex;
	align-items: center;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	text-decoration: none;
	color: inherit;
}
.er2-header__logo img {
	display: block;
	height: auto;
}

.er2-header__nav {
	display: none;
	align-items: center;
	gap: 32px;
}
@media (min-width: 768px) {
	.er2-header__nav {
		display: flex;
	}
}
.er2-header__nav a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}
.er2-header__nav-item {
	position: relative;
}
.er2-header__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	margin-top: 14px;
	padding: 10px 0;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}
.er2-header__nav-item--has-sub:hover .er2-header__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.er2-header__submenu a {
	display: block;
	padding: 8px 18px;
	color: #111;
	white-space: nowrap;
}

.er2-header__utility {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.er2-header__utility a {
	text-decoration: none;
	color: inherit;
}

.er2-header__cta {
	padding: 10px 20px;
	background-color: #111;
	color: #fff;
	border: 1px solid #111;
}

/* Search + Bag icon utilities */
.er2-header__utility-button,
.er2-header__utility-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-decoration: none;
	color: inherit;
	white-space: nowrap;
}
.er2-header__utility-button {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	cursor: pointer;
}
.er2-header__utility-button:hover,
.er2-header__utility-link:hover {
	color: inherit;
}
.er2-header__icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.er2-header__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	font-size: 8px;
	line-height: 1;
	letter-spacing: 0;
	background: #8fa08c;
	color: #ffffff;
}
.er2-header__cart-count[data-count="0"] {
	display: none;
}

.er2-header-search {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease, visibility .2s ease;
}
.er2-header-search.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.er2-header-search__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.35);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}
.er2-header-search__panel {
	position: relative;
	width: min(900px, 100%);
	margin-top: 90px;
	padding: 28px 32px 34px;
	background: #f2f2f0;
	color: #111;
	border: 1px solid rgba(0,0,0,.12);
	box-shadow: 0 20px 60px rgba(0,0,0,.18);
	transform: translateY(-12px);
	transition: transform .25s ease;
}
.er2-header-search.is-open .er2-header-search__panel {
	transform: translateY(0);
}
.er2-header-search__close {
	position: absolute;
	top: 14px;
	right: 18px;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 28px;
	line-height: 1;
	font-weight: 300;
	cursor: pointer;
	padding: 2px 5px;
}
.er2-header-search__form label {
	display: block;
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.er2-header-search__field {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #111;
}
.er2-header-search__field input[type="search"] {
	width: 100%;
	min-width: 0;
	padding: 12px 0 14px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #111;
	font: 500 22px/1.2 'Inter', sans-serif;
	letter-spacing: .02em;
}
.er2-header-search__field input[type="search"]::placeholder {
	color: rgba(17,17,17,.42);
}
.er2-header-search__field button {
	border: 0;
	background: transparent;
	color: #111;
	padding: 10px 0 10px 18px;
	cursor: pointer;
}
.er2-header-search__field button .er2-header__icon {
	width: 20px;
	height: 20px;
}
body.er2-search-open {
	overflow: hidden;
}
@media (max-width: 767px) {
	.er2-header {
		padding: 16px 18px;
	}
	.er2-header__utility {
		gap: 14px;
	}
	.er2-header-search {
		padding: 0 14px;
	}
	.er2-header-search__panel {
		margin-top: 72px;
		padding: 24px 20px 28px;
	}
	.er2-header-search__field input[type="search"] {
		font-size: 18px;
	}
}
