.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: var(--cart-drawer-scrollbar-width, 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 {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #ffffff;
	display: inline-grid;
	font-size: 0.82rem;
	height: 31px;
	line-height: 1;
	place-items: 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 {
	display: block;
	line-height: 1;
	text-align: center;
	transform: translateY(0.5px);
}

.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);
}

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

.cart-drawer {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 360ms ease;
	z-index: 1000;
}

.cart-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.cart-drawer__backdrop {
	background: rgba(0, 0, 0, 0.54);
	border: 0;
	cursor: default;
	inset: 0;
	padding: 0;
	position: absolute;
}

.cart-drawer__panel {
	background: #ffffff;
	box-shadow: -24px 0 64px rgba(0, 0, 0, 0.22);
	color: var(--color-text);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	height: 100dvh;
	margin-left: auto;
	max-width: calc(100vw - 16px);
	outline: 0;
	position: relative;
	transform: translateX(100%);
	transition: transform 430ms cubic-bezier(0.22, 1, 0.36, 1);
	width: 390px;
}

.cart-drawer.is-open .cart-drawer__panel {
	transform: translateX(0);
}

.cart-drawer__header {
	align-items: center;
	border-bottom: 1px solid rgba(23, 23, 23, 0.12);
	display: flex;
	justify-content: space-between;
	min-height: 64px;
	padding: 0 24px;
}

.cart-drawer__header h2 {
	color: #111111;
	font-size: 1.05rem;
	line-height: 1.2;
	margin: 0;
}

.cart-drawer__close {
	align-items: center;
	background: transparent;
	border: 0;
	color: #171717;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.92rem;
	gap: 8px;
	line-height: 1;
	padding: 8px 0;
	transition: color 180ms ease;
}

.cart-drawer__close i {
	font-size: 1.1rem;
	line-height: 1;
}

.cart-drawer__close:hover {
	color: var(--color-accent);
}

.cart-drawer__body {
	min-height: 0;
	opacity: 0;
	overflow-y: auto;
	padding: 28px 24px;
	transform: translateY(8px);
	transition: opacity 260ms ease 120ms, transform 260ms ease 120ms;
}

.cart-drawer.is-open .cart-drawer__body {
	opacity: 1;
	transform: translateY(0);
}

.cart-drawer__body:has(.cart-drawer__empty),
.cart-drawer__body:has(.woocommerce-mini-cart__empty-message) {
	overflow: hidden;
}

.cart-drawer__body:has(.woocommerce-mini-cart__empty-message) {
	text-align: center;
}

.cart-drawer__empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding-top: 28px;
	text-align: center;
}

.cart-drawer__empty-icon {
	color: rgba(23, 23, 23, 0.08);
	display: inline-grid;
	font-size: 5.25rem;
	line-height: 1;
	margin-bottom: 20px;
	place-items: center;
	position: relative;
}

.cart-drawer__empty-icon::after {
	color: rgba(23, 23, 23, 0.08);
	content: "\f00d";
	font-family: "Font Awesome 6 Free";
	font-size: 2.35rem;
	font-weight: 900;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: 12%;
	transform: translateX(-36%);
}

.cart-drawer__empty p {
	color: #2d2925;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0 0 24px;
}

.cart-drawer__empty .button {
	font-size: 0.78rem;
	font-weight: 800;
	min-height: 36px;
	padding: 9px 16px;
	text-transform: uppercase;
}

.cart-drawer .woocommerce-mini-cart__empty-message {
	align-items: center;
	color: #2d2925;
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
	font-weight: 700 !important;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0;
	min-height: 202px;
	padding-top: 46px;
	text-align: center;
}

.cart-drawer .woocommerce-mini-cart__empty-message::before {
	color: rgba(23, 23, 23, 0.08);
	content: "\f07a";
	font-family: "Font Awesome 6 Free";
	font-size: 5.25rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 20px;
}

.cart-drawer__empty-link {
	display: flex;
	font-size: 0.78rem;
	font-weight: 800;
	margin: 2px auto 0;
	min-height: 36px;
	padding: 9px 16px;
	text-transform: uppercase;
	width: max-content;
}

.cart-drawer .woocommerce-mini-cart {
	display: grid;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cart-drawer .woocommerce-mini-cart-item {
	border-bottom: 1px solid rgba(23, 23, 23, 0.1);
	display: grid;
	gap: 7px;
	min-height: 78px;
	padding: 0 0 14px 74px;
	position: relative;
}

.cart-drawer .woocommerce-mini-cart-item img {
	border: 1px solid rgba(23, 23, 23, 0.1);
	border-radius: 6px;
	height: 58px;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 58px;
}

.cart-drawer .woocommerce-mini-cart-item a {
	color: #171717;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.3;
	text-decoration: none;
}

.cart-drawer .woocommerce-mini-cart-item .remove {
	color: #8f877e;
	font-size: 1.1rem;
	left: auto;
	position: absolute;
	right: 0;
	top: -2px;
}

.cart-drawer .woocommerce-mini-cart-item .remove:hover {
	color: var(--color-accent);
}

.cart-drawer .woocommerce-mini-cart-item .quantity {
	color: var(--color-muted);
	font-size: 0.84rem;
	font-weight: 700;
}

.cart-drawer .woocommerce-mini-cart__total {
	align-items: center;
	border-top: 1px solid rgba(23, 23, 23, 0.14);
	display: flex;
	font-size: 0.96rem;
	justify-content: space-between;
	margin: 22px 0 14px;
	padding-top: 18px;
}

.cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 10px;
	margin: 0;
}

.cart-drawer .woocommerce-mini-cart__buttons .button {
	width: 100%;
}

body.cart-drawer-open {
	overflow: hidden;
	padding-right: var(--cart-drawer-scrollbar-width, 0);
}

.header-help-inline {
	align-items: center;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	color: #ffffff;
	display: inline-flex;
	gap: 11px;
	margin-left: 4px;
	min-height: 46px;
	padding: 0 0 0 18px;
	text-decoration: none;
	transition: color 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 .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) {
	.cart-drawer__panel {
		max-width: 100vw;
		width: min(100vw, 390px);
	}

	.cart-drawer__header {
		padding: 0 20px;
	}

	.cart-drawer__body {
		padding: 24px 20px;
	}

	.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) {
	.cart-drawer,
	.cart-drawer__panel,
	.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;
	}
}
