.site-header {
	background: #141414;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	position: relative;
	z-index: 50;
}

.main-header {
	background: #141414;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	transition: box-shadow 220ms ease, background-color 220ms ease;
	width: 100%;
}

.site-header.is-main-sticky {
	padding-top: var(--main-header-height, 96px);
}

.site-header.is-main-sticky .main-header {
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 80;
}

.top-bar {
	background: linear-gradient(180deg, #171717 0%, #121212 100%);
	border-bottom: 1px solid rgba(255, 153, 51, 0.24);
	color: #ffffff;
	font-size: 0.82rem;
}

.top-bar__inner {
	align-items: center;
	display: grid;
	column-gap: 34px;
	grid-template-columns: max-content minmax(0, 1fr) max-content;
	max-width: var(--container);
	min-height: 58px;
	padding-left: 24px;
	padding-right: 24px;
}

.top-bar__contact,
.top-bar__menu,
.top-bar__socials {
	align-items: center;
	display: flex;
}

.top-bar__contact {
	gap: 14px;
	justify-content: flex-start;
	min-width: 0;
}

.top-bar__contact-link {
	align-items: center;
	color: rgba(255, 255, 255, 0.88);
	display: inline-flex;
	font-weight: 400;
	gap: 8px;
	line-height: 1;
	text-decoration: none;
	transition: color 180ms ease;
	white-space: nowrap;
}

.top-bar__contact-link span {
	font-weight: 400;
}

.top-bar__contact-link + .top-bar__contact-link {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	padding-left: 14px;
}

.top-bar__contact-link i {
	color: var(--color-accent);
	display: inline-grid;
	font-size: 0.82rem;
	height: 16px;
	place-items: center;
	width: 16px;
}

.top-bar__navigation {
	align-items: center;
	display: flex;
	justify-content: center;
	min-width: 0;
	width: 100%;
}

.top-bar__menu {
	gap: 0;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar__menu li {
	align-items: center;
	display: inline-flex;
}

.top-bar__menu li + li::before {
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	content: "";
	display: inline-block;
	height: 18px;
	margin: 0 16px;
	width: 1px;
}

.top-bar__menu a {
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	font-weight: 700;
	line-height: 1;
	position: relative;
	text-decoration: none;
	transition: color 180ms ease;
	white-space: nowrap;
}

.top-bar__menu a::after {
	background: var(--color-accent);
	bottom: -12px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
	width: 100%;
}

.top-bar__contact-link:hover,
.top-bar__menu a:hover {
	color: var(--color-accent);
}

.top-bar__menu a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.top-bar__socials {
	gap: 10px;
	justify-content: flex-end;
}

.top-bar__socials a {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 0.82rem;
	height: 31px;
	line-height: 1;
	justify-content: center;
	text-decoration: none;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
	width: 31px;
}

.top-bar__socials a i {
	align-items: center;
	display: inline-flex;
	height: 1em;
	justify-content: center;
	line-height: 1;
	width: 1em;
}

.top-bar__socials a:hover {
	background: var(--color-accent);
	border-color: var(--color-accent);
	box-shadow: 0 8px 18px rgba(255, 153, 51, 0.22);
	color: #171717;
}

.site-header__inner {
	align-items: center;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(210px, 270px) minmax(320px, 1fr) max-content;
	min-height: 96px;
	position: relative;
}

.site-branding {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
}

.site-title {
	color: #ffffff;
	font-size: 1.85rem;
	font-weight: 900;
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
}

.custom-logo {
	filter: brightness(0) invert(1);
	max-height: 62px;
	width: auto;
}

.header-search-wrap {
	min-width: 0;
}

.header-search {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
	display: grid;
	grid-template-columns: 1fr 54px;
	min-height: 46px;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
	width: 100%;
}

.header-search:focus-within {
	background: #ffffff;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2), 0 16px 34px rgba(0, 0, 0, 0.24);
	transform: translateY(-1px);
}

.header-search__input {
	background: transparent;
	border: 0;
	color: var(--color-text);
	min-width: 0;
	outline: 0;
	padding: 0 18px;
	width: 100%;
}

.header-search__input::placeholder {
	color: #65615b;
	opacity: 1;
}

.header-search__submit {
	align-items: center;
	align-self: stretch;
	background: var(--color-accent);
	border: 0;
	color: #171717;
	cursor: pointer;
	display: inline-grid;
	font-size: 1rem;
	place-items: center;
	transition: background-color 220ms ease, color 220ms ease;
}

.header-search__submit:hover {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.primary-navigation {
	background: #ffffff;
	border-top: 1px solid var(--color-border);
}

.primary-navigation__inner {
	align-items: center;
	display: flex;
	min-height: 48px;
}

.primary-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	color: var(--color-text);
	font-weight: 700;
	text-decoration: none;
}

.primary-menu a:hover {
	color: var(--color-accent);
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: flex-end;
}

.header-action,
.header-cart {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	gap: 8px;
	min-height: 40px;
	padding: 0;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.header-action i {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.32rem;
	transition: color 220ms ease, filter 220ms ease;
}

.header-action:hover,
.header-cart:hover {
	color: var(--color-accent);
}

.header-action:hover i,
.header-cart:hover i {
	color: var(--color-accent);
	filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.25));
}

.header-action span {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	width: 1px;
}

.header-cart__icon {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.24rem;
	line-height: 1;
}

.header-cart__visual {
	display: inline-grid;
	line-height: 1;
	place-items: center;
	position: relative;
}

.header-cart__count {
	background: var(--color-accent);
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
	color: #171717;
	display: inline-grid;
	font-size: 0.72rem;
	font-weight: 900;
	min-height: 17px;
	min-width: 17px;
	place-items: center;
	position: absolute;
	right: -10px;
	top: -9px;
}

.header-cart__total {
	font-size: 0.9rem;
	font-weight: 900;
	margin-left: 5px;
}

.header-help-inline {
	align-items: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
	border: 1px solid rgba(255, 153, 51, 0.2);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	gap: 11px;
	margin-left: 2px;
	min-height: 46px;
	padding: 6px 14px 6px 8px;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
	white-space: nowrap;
}

.header-help-inline > i {
	align-items: center;
	background: rgba(255, 153, 51, 0.14);
	border: 1px solid rgba(255, 153, 51, 0.32);
	border-radius: 999px;
	color: var(--color-accent);
	display: inline-grid;
	height: 32px;
	place-items: center;
	width: 32px;
}

.header-help-inline__text {
	display: grid;
	gap: 1px;
	line-height: 1.2;
}

.header-help-inline__text strong {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0;
}

.header-help-inline__text small {
	color: var(--color-accent);
	font-size: 0.84rem;
	font-weight: 900;
}

.header-help-inline:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 153, 51, 0.42);
	box-shadow: 0 10px 24px rgba(255, 153, 51, 0.08);
}

.header-help-inline:hover .header-help-inline__text strong {
	color: var(--color-accent);
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	background: var(--color-text);
	border-radius: 2px;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.menu-toggle__bar::before {
	position: absolute;
	top: -7px;
}

.menu-toggle__bar::after {
	position: absolute;
	top: 7px;
}

@media (max-width: 1100px) {
	.top-bar__inner {
		grid-template-columns: 1fr;
		gap: 10px;
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.top-bar__contact,
	.top-bar__menu,
	.top-bar__socials {
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding-bottom: 14px;
		padding-top: 14px;
	}

	.header-search-wrap {
		grid-column: 1 / -1;
		order: 4;
	}

	.header-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
		order: 5;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.primary-navigation {
		display: none;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.top-bar__contact {
		align-items: center;
		flex-direction: column;
		gap: 8px;
	}

	.top-bar__contact-link + .top-bar__contact-link {
		border-left: 0;
		padding-left: 0;
	}

	.top-bar__menu {
		row-gap: 8px;
		flex-wrap: wrap;
	}

	.top-bar__menu li + li::before {
		display: none;
	}

	.header-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.header-action,
	.header-cart,
	.header-help-inline {
		justify-content: center;
		width: 100%;
	}

	.header-help-inline {
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.main-header,
	.top-bar__contact-link,
	.top-bar__menu a,
	.top-bar__menu a::after,
	.top-bar__socials a,
	.header-search,
	.header-search__submit,
	.header-action i {
		transition: none;
	}

	.header-search:focus-within {
		transform: none;
	}
}
