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

.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: 18px;
	grid-template-columns: minmax(210px, 270px) minmax(320px, 1fr) max-content;
	min-height: 76px;
	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: 46px;
	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 46px;
	min-height: 38px;
	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: 14px;
	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: 7px;
	min-height: 32px;
	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;
	transform-origin: center;
}

.header-cart__count {
	background: var(--color-accent);
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
	color: #ffffff;
	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.84rem;
	font-weight: 800;
	margin-left: 7px;
	min-width: 0;
	text-align: left;
	transition: color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.header-cart.is-cart-updated .header-cart__visual {
	animation: mocnyhak-cart-soft-glow 360ms ease;
}

.header-cart__count.is-cart-updated {
	animation: mocnyhak-cart-count-soft 360ms ease;
}

@keyframes mocnyhak-cart-soft-glow {
	0% {
		filter: none;
	}

	45% {
		filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.22));
	}

	to {
		filter: none;
	}
}

@keyframes mocnyhak-cart-count-soft {
	0% {
		opacity: 0.82;
		box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
		transform: scale(0.96);
	}

	45% {
		opacity: 1;
		box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.12), 0 4px 10px rgba(255, 153, 51, 0.26);
		transform: scale(1);
	}

	to {
		opacity: 1;
		box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
		transform: scale(1);
	}
}

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

.cart-drawer__backdrop {
	background: rgba(0, 0, 0, 0.54);
	border: 0;
	cursor: default;
	display: none;
	inset: 0;
	padding: 0;
	pointer-events: none;
	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;
	pointer-events: auto;
	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 {
	display: flex;
	flex-direction: column;
	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 {
	align-content: start;
	display: grid;
	gap: 14px;
	flex: 1 1 auto;
	grid-auto-rows: max-content;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cart-drawer .woocommerce-mini-cart-item {
	align-self: start;
	border-bottom: 1px solid rgba(23, 23, 23, 0.1);
	display: grid;
	column-gap: 14px;
	grid-template-columns: 72px minmax(0, 1fr) 18px;
	grid-template-rows: auto auto auto;
	row-gap: 8px;
	max-height: 138px;
	min-height: 100px;
	overflow: hidden;
	padding: 0 0 16px;
	position: relative;
	transform-origin: center top;
	transition: border-color 260ms ease, max-height 300ms ease, min-height 300ms ease, opacity 260ms ease, padding 300ms ease, transform 300ms ease;
}

.cart-drawer.is-open .woocommerce-mini-cart-item {
	animation: mocnyhak-cart-item-enter 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-drawer.is-open .woocommerce-mini-cart-item:nth-child(2) {
	animation-delay: 45ms;
}

.cart-drawer.is-open .woocommerce-mini-cart-item:nth-child(3) {
	animation-delay: 90ms;
}

.cart-drawer.is-open .woocommerce-mini-cart-item:nth-child(n+4) {
	animation-delay: 125ms;
}

.cart-drawer .woocommerce-mini-cart-item::after {
	background: rgba(255, 255, 255, 0.76);
	border-radius: 8px;
	content: "";
	inset: 0 0 16px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 180ms ease;
	z-index: 3;
}

.cart-drawer .woocommerce-mini-cart-item::before {
	animation: mocnyhak-cart-remove-spin 760ms linear infinite;
	border: 2px solid rgba(255, 153, 51, 0.24);
	border-radius: 999px;
	border-top-color: var(--color-accent);
	content: "";
	height: 22px;
	left: 50%;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: calc(50% - 7px);
	transform: translate(-50%, -50%) scale(0.88);
	transition: opacity 180ms ease, transform 180ms ease;
	width: 22px;
	z-index: 4;
}

.cart-drawer .woocommerce-mini-cart-item.is-remove-loading::after {
	opacity: 1;
}

.cart-drawer .woocommerce-mini-cart-item.is-remove-loading::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.cart-drawer .woocommerce-mini-cart-item.is-quantity-loading::after {
	opacity: 1;
}

.cart-drawer .woocommerce-mini-cart-item.is-quantity-loading::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.cart-drawer .woocommerce-mini-cart-item.is-removing {
	border-color: transparent;
	max-height: 0;
	min-height: 0;
	opacity: 0;
	padding-bottom: 0;
	transform: translateX(18px) scale(0.985);
}

.cart-drawer .woocommerce-mini-cart-item img {
	border: 1px solid rgba(23, 23, 23, 0.1);
	border-radius: 6px;
	background: #ffffff;
	height: 56px;
	object-fit: contain;
	object-position: center;
	width: 72px;
}

.cart-drawer .woocommerce-mini-cart-item a,
.cart-drawer .cart-drawer__item-title {
	color: #171717;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.38;
	text-decoration: none;
}

.cart-drawer .cart-drawer__item-image {
	display: block;
	grid-column: 1;
	grid-row: 1 / span 3;
	height: 56px;
	width: 72px;
}

.cart-drawer .cart-drawer__item-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	grid-column: 2;
	grid-row: 1;
	overflow: hidden;
	padding: 1px 4px 0 0;
}

.cart-drawer .woocommerce-mini-cart-item .remove {
	align-items: center;
	color: #8f877e;
	display: inline-flex;
	font-size: 1.05rem;
	grid-column: 3;
	grid-row: 1;
	justify-content: center;
	line-height: 1;
	padding: 0;
	text-align: center;
	width: 18px;
	z-index: 2;
}

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

.cart-drawer .woocommerce-mini-cart-item .remove.is-removing {
	pointer-events: none;
}

.cart-drawer__quantity {
	align-items: center;
	display: inline-flex;
	grid-column: 2;
	grid-row: 2;
	width: max-content;
}

.cart-drawer__quantity-button,
.cart-drawer__quantity-value {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(23, 23, 23, 0.12);
	color: #171717;
	display: inline-flex;
	font-size: 0.78rem;
	height: 28px;
	justify-content: center;
	min-width: 28px;
}

.cart-drawer__quantity-button {
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cart-drawer__quantity-button:first-child {
	border-radius: 5px 0 0 5px;
}

.cart-drawer__quantity-button:last-child {
	border-radius: 0 5px 5px 0;
}

.cart-drawer__quantity-value {
	border-left: 0;
	border-right: 0;
	font-weight: 600;
}

.cart-drawer__quantity-button:hover:not(:disabled) {
	background: rgba(255, 153, 51, 0.1);
	border-color: rgba(255, 153, 51, 0.42);
	color: var(--color-accent);
}

.cart-drawer__quantity-button:disabled {
	color: rgba(23, 23, 23, 0.28);
	cursor: not-allowed;
}

.cart-drawer__item-price {
	align-self: start;
	color: #6b655f;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 500;
	grid-column: 2 / 4;
	grid-row: 3;
	line-height: 1.3;
	margin-top: 2px;
}

.cart-drawer__item-price .amount {
	color: var(--color-accent);
	font-weight: 800;
}

.cart-drawer__discounts {
	border-top: 1px solid rgba(23, 23, 23, 0.1);
	display: grid;
	gap: 8px;
	margin-top: 8px;
	padding-top: 14px;
}

.cart-drawer__discount {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.cart-drawer__discount span {
	align-items: center;
	color: #7a4a14;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 650;
	gap: 7px;
	line-height: 1.35;
	min-width: 0;
}

.cart-drawer__discount i {
	color: var(--color-accent);
	font-size: 0.76rem;
	width: 13px;
}

.cart-drawer__discount strong {
	color: #7a4a14;
	font-size: 0.84rem;
	font-weight: 780;
	white-space: nowrap;
}

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

.cart-drawer__discounts + .woocommerce-mini-cart__total {
	margin-top: 14px;
}

.cart-drawer .woocommerce-mini-cart__total strong {
	font-weight: 700;
}

.cart-drawer .woocommerce-mini-cart__total .amount {
	color: var(--color-accent);
	font-weight: 800;
}

.cart-drawer__shipping-progress {
	background: rgba(255, 255, 255, 0.54);
	border: 2px dashed rgba(23, 23, 23, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 10px;
	margin: 0 0 14px;
	padding: 14px 16px;
}

.cart-drawer__shipping-progress p {
	color: #211d19;
	font-size: 0.84rem;
	line-height: 1.5;
	margin: 0;
}

.cart-drawer__shipping-progress strong {
	color: var(--color-accent);
	font-weight: 800;
}

.cart-drawer__shipping-success {
	align-items: center;
	display: flex;
	gap: 11px;
}

.cart-drawer__shipping-success i {
	align-items: center;
	background: rgba(255, 153, 51, 0.14);
	border: 1px solid rgba(255, 153, 51, 0.28);
	border-radius: 999px;
	color: var(--color-accent);
	display: inline-grid;
	flex: 0 0 auto;
	font-size: 0.76rem;
	height: 28px;
	place-items: center;
	width: 28px;
}

.cart-drawer__shipping-success span {
	display: grid;
	gap: 2px;
}

.cart-drawer__shipping-success small {
	color: #6b655f;
	font-size: 0.76rem;
	line-height: 1.35;
}

.cart-drawer__shipping-bar {
	background: rgba(23, 23, 23, 0.08);
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
	position: relative;
}

.cart-drawer__shipping-bar span {
	animation: mocnyhak-shipping-stripes 900ms linear infinite;
	background:
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.24) 0,
			rgba(255, 255, 255, 0.24) 6px,
			rgba(255, 255, 255, 0) 6px,
			rgba(255, 255, 255, 0) 12px
		),
		var(--color-accent);
	border-radius: inherit;
	display: block;
	height: 100%;
	min-width: 10px;
	transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cart-drawer .woocommerce-mini-cart__buttons .button {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	justify-content: center;
	min-height: 42px;
	text-transform: uppercase;
	width: 100%;
}

.cart-drawer .woocommerce-mini-cart__buttons .button:not(.checkout) {
	background: #f5f4f2;
	color: #171717;
}

.cart-drawer .woocommerce-mini-cart__buttons .checkout {
	background: var(--color-accent);
	color: #ffffff;
}

.cart-drawer.is-refreshing .cart-drawer__body {
	opacity: 0.76;
}

@keyframes mocnyhak-cart-item-enter {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mocnyhak-cart-remove-spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes mocnyhak-shipping-stripes {
	to {
		background-position: 18px 0, 0 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: 10px;
	margin-left: 2px;
	min-height: 36px;
	padding: 0 0 0 16px;
	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: 26px;
	place-items: center;
	width: 26px;
}

.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: 8px;
		padding-top: 8px;
	}

	.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,
	.cart-drawer .woocommerce-mini-cart-item,
	.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;
	}

	.cart-drawer .woocommerce-mini-cart-item {
		animation: none;
	}

	.cart-drawer .woocommerce-mini-cart-item::before,
	.cart-drawer__shipping-bar span {
		animation: none;
	}
}
