.marnovo-header-drawer-toggle {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	margin: 0 12px 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: inherit;
	line-height: 1;
	cursor: pointer;
}

.marnovo-drawer-close {
	display: none;
}

.marnovo-header-drawer-toggle:hover,
.marnovo-header-drawer-toggle:focus,
.marnovo-header-drawer-toggle:active {
	border: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
}

.marnovo-header-drawer-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.marnovo-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 16px;
}

.marnovo-hamburger__line {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transform-origin: center;
	transition: opacity 160ms ease, transform 160ms ease;
}

.marnovo-header-drawer-toggle[aria-expanded="true"]
	.marnovo-hamburger__line:first-child {
	transform: translateY(7px) rotate(45deg);
}

.marnovo-header-drawer-toggle[aria-expanded="true"]
	.marnovo-hamburger__line:nth-child(2) {
	opacity: 0;
}

.marnovo-header-drawer-toggle[aria-expanded="true"]
	.marnovo-hamburger__line:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
	.marnovo-hamburger__line {
		transition: none;
	}
}

@media (max-width: 1024px) {
	body.marnovo-header-drawer-toggle-enabled .header-icon {
		display: inline-flex;
		align-items: center;
	}

	.marnovo-drawer-close {
		-webkit-appearance: none;
		appearance: none;
		position: relative;
		top: auto;
		right: auto;
		z-index: 20;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		min-height: 48px;
		height: auto;
		padding: 10px 16px;
		border: 0;
		border-radius: 0;
		background: #ffcc05;
		box-shadow: none;
		color: #111;
		font: inherit;
		font-size: 20px;
		font-weight: 700;
		line-height: 1;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		cursor: pointer;
		transition: opacity 160ms ease;
	}

	body.side-pan-active .marnovo-drawer-close {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.marnovo-drawer-close span {
		display: block;
	}

	.marnovo-drawer-close__icon {
		font-size: 30px;
		font-weight: 400;
		line-height: 0.8;
		transform: translateY(-1px);
	}

	.marnovo-drawer-close:focus-visible {
		outline: 2px solid currentColor;
		outline-offset: 3px;
	}
}

@media (min-width: 1025px) {
	.marnovo-header-drawer-toggle {
		display: none !important;
	}
}
