.redust-offcanvas-menu {
	--redust-menu-red: #d72828;
	--redust-menu-panel: linear-gradient(148deg, #2b0303 0%, #070607 36%, #000 100%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000001;
	width: 118px;
	height: 66px;
	display: block;
	pointer-events: auto;
}

.redust-offcanvas-menu.is-open {
	z-index: 2147482000;
	width: 100%;
	height: 100dvh;
}

.admin-bar .redust-offcanvas-menu {
	top: 32px;
}

.redust-offcanvas-menu__toggle {
	position: absolute;
	top: 0;
	left: 0;
	width: 118px;
	height: 66px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 6px;
	padding: 0 0 0 30px;
	border: 0;
	background: linear-gradient(135deg, rgba(215, 40, 40, .94), rgba(91, 0, 0, .96));
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
	cursor: pointer;
	box-shadow: 0 14px 38px rgba(0, 0, 0, .4);
	pointer-events: auto;
	transform: translateX(0);
	transition: width .28s ease, background .28s ease, box-shadow .28s ease;
}

.redust-offcanvas-menu__toggle::after {
	content: "";
	position: absolute;
	top: 0;
	right: 10px;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, .16);
	transform: skewX(-14deg);
}

.redust-offcanvas-menu__toggle:hover,
.redust-offcanvas-menu__toggle:focus-visible {
	width: 148px;
	background: linear-gradient(135deg, #f02c2c 0%, #a90505 56%, #3a0000 100%);
	box-shadow: 18px 16px 42px rgba(0, 0, 0, .42), 0 0 28px rgba(215, 40, 40, .26);
	outline: none;
}

.redust-offcanvas-menu__toggle span {
	width: 24px;
	height: 2px;
	display: block;
	background: rgba(255, 255, 255, .86);
	transition: transform .22s ease, opacity .22s ease, width .22s ease;
}

.redust-offcanvas-menu__toggle:hover span,
.redust-offcanvas-menu__toggle:focus-visible span {
	background: #fff;
}

.redust-offcanvas-menu__toggle:hover span:nth-child(1),
.redust-offcanvas-menu__toggle:focus-visible span:nth-child(1) {
	width: 30px;
}

.redust-offcanvas-menu__toggle:hover span:nth-child(2),
.redust-offcanvas-menu__toggle:focus-visible span:nth-child(2) {
	width: 22px;
}

.redust-offcanvas-menu__toggle:hover span:nth-child(3),
.redust-offcanvas-menu__toggle:focus-visible span:nth-child(3) {
	width: 34px;
}

.redust-offcanvas-menu__mobile-logo,
.redust-offcanvas-menu__language {
	display: none;
}

.redust-offcanvas-menu.is-open .redust-offcanvas-menu__toggle span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.redust-offcanvas-menu.is-open .redust-offcanvas-menu__toggle span:nth-child(2) {
	opacity: 0;
}

.redust-offcanvas-menu.is-open .redust-offcanvas-menu__toggle span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.redust-offcanvas-menu__scrim {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: auto;
	background: rgba(0, 0, 0, .64);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity .24s ease;
}

.redust-offcanvas-menu.is-open .redust-offcanvas-menu__scrim {
	opacity: 1;
}

.redust-offcanvas-menu__scrim[hidden],
.redust-offcanvas-menu__panel[hidden] {
	display: block;
	pointer-events: none;
	visibility: hidden;
}

.redust-offcanvas-menu__panel {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: min(560px, calc(100vw - 26px));
	height: 100dvh;
	display: flex;
	flex-direction: column;
	padding: 38px 36px 30px;
	pointer-events: auto;
	color: #fff;
	background:
		linear-gradient(#000, #000),
		radial-gradient(circle at 15% 9%, rgba(255, 255, 255, .08), transparent 25%),
		var(--redust-menu-panel);
	box-shadow: 44px 0 90px rgba(0, 0, 0, .62), inset -1px 0 0 rgba(255, 255, 255, .06);
	transform: translateX(-104%);
	transition: transform .28s ease, visibility .28s ease;
	overflow-y: auto;
}

.admin-bar .redust-offcanvas-menu__panel {
	top: 32px;
	height: calc(100dvh - 32px);
}

.redust-offcanvas-menu__panel::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 365px;
	background:
		linear-gradient(180deg, rgba(255, 45, 45, .96), rgba(141, 0, 0, .84) 42%, rgba(58, 0, 0, .5) 100%),
		linear-gradient(110deg, rgba(255, 255, 255, .12), transparent 34%);
	clip-path: polygon(0 0, 82% 0, 34% 100%, 0 100%);
	opacity: .94;
	pointer-events: none;
}

.redust-offcanvas-menu__panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, transparent 0 63%, rgba(255, 60, 60, .22) 63% calc(63% + 1px), transparent calc(63% + 1px) 100%),
		linear-gradient(105deg, transparent 0 72%, rgba(255, 255, 255, .08) 72% calc(72% + 1px), transparent calc(72% + 1px) 100%),
		radial-gradient(circle at 19% 12%, rgba(255, 255, 255, .1), transparent 25%);
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: .38;
}

.redust-offcanvas-menu.is-open .redust-offcanvas-menu__panel {
	transform: translateX(0);
}

.redust-offcanvas-menu__panel-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.redust-offcanvas-menu__panel-logo {
	width: 185px;
	height: 52px;
	display: block;
}

.redust-offcanvas-menu__panel-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
}

.redust-offcanvas-menu__panel-logo span {
	color: #fff;
	font-weight: 800;
	letter-spacing: .16em;
}

.redust-offcanvas-menu__language {
	position: relative;
	z-index: 1;
}

.redust-offcanvas-menu__close {
	position: relative;
	z-index: 30;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(215, 40, 40, .9);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(0, 0, 0, .76), rgba(45, 0, 0, .72));
	color: #fff;
	cursor: pointer;
	isolation: isolate;
	pointer-events: auto;
	touch-action: manipulation;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.redust-offcanvas-menu__close::before {
	content: "";
	position: absolute;
	inset: -10px;
	z-index: -1;
	border-radius: 14px;
	background: transparent;
	pointer-events: auto;
}

.redust-offcanvas-menu__close:hover,
.redust-offcanvas-menu__close:focus-visible {
	background: linear-gradient(135deg, rgba(215, 40, 40, .34), rgba(0, 0, 0, .86));
	border-color: #ff3c3c;
	box-shadow: 0 0 0 1px rgba(255, 60, 60, .18), 0 0 26px rgba(215, 40, 40, .2);
	transform: rotate(90deg);
	outline: none;
}

.redust-offcanvas-menu__close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 2px;
	background: #fff;
	pointer-events: none !important;
	transform-origin: center;
}

.redust-offcanvas-menu__close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.redust-offcanvas-menu__close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.redust-offcanvas-menu__nav {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	margin: 78px 0 auto;
}

.redust-offcanvas-menu__nav a {
	position: relative;
	min-height: 82px;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 24px;
	border: 1px solid rgba(215, 40, 40, .74);
	border-radius: 8px;
	box-sizing: border-box;
	isolation: isolate;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(215, 40, 40, .14), rgba(0, 0, 0, .56) 42%, rgba(0, 0, 0, .84));
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color .22s ease, box-shadow .22s ease;
}

.redust-offcanvas-menu__nav a::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	z-index: -1;
	width: 0;
	background: linear-gradient(110deg, rgba(215, 40, 40, .92) 0 18%, rgba(215, 40, 40, .22) 18% 52%, transparent 52%);
	clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
	transition: width .26s ease;
}

.redust-offcanvas-menu__nav a::after {
	content: "";
	position: absolute;
	top: -30%;
	bottom: -30%;
	left: -18%;
	width: 42px;
	z-index: -1;
	background: rgba(255, 255, 255, .14);
	transform: translateX(-120px) rotate(13deg);
	transition: transform .34s ease;
}

.redust-offcanvas-menu__nav a span {
	min-width: 34px;
	color: #ff3434;
	font-size: 13px;
	letter-spacing: .12em;
}

.redust-offcanvas-menu__nav a:hover,
.redust-offcanvas-menu__nav a:focus-visible {
	border-color: #ff3c3c;
	box-shadow: 0 14px 32px rgba(0, 0, 0, .32), inset 0 0 28px rgba(215, 40, 40, .12);
	outline: none;
}

.redust-offcanvas-menu__nav a:hover::before,
.redust-offcanvas-menu__nav a:focus-visible::before {
	width: 132px;
}

.redust-offcanvas-menu__nav a:hover::after,
.redust-offcanvas-menu__nav a:focus-visible::after {
	transform: translateX(520px) rotate(13deg);
}

.redust-offcanvas-menu__foot {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 56px;
	padding-top: 34px;
	border-top: 0;
}

.redust-offcanvas-menu__foot::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 18px;
	pointer-events: none;
	background:
		linear-gradient(100deg, rgba(255, 48, 48, .78) 0 70px, transparent 70px 82px, rgba(255, 255, 255, .16) 82px 128px, transparent 128px),
		linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04) 62%, transparent);
	clip-path: polygon(0 47%, 100% 47%, 100% 55%, 0 55%);
}

.redust-offcanvas-menu__foot span {
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.redust-offcanvas-menu__foot a {
	position: relative;
	width: 100%;
	display: inline-flex;
	justify-content: center;
	box-sizing: border-box;
	padding: 15px 18px;
	border: 1px solid rgba(215, 40, 40, .84);
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(215, 40, 40, .22), rgba(0, 0, 0, .74));
	color: #fff;
	font-size: 13px;
	letter-spacing: .14em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color .2s ease, background .2s ease;
}

.redust-offcanvas-menu__foot a::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	background: linear-gradient(105deg, rgba(224, 39, 39, .62), rgba(224, 39, 39, .18) 58%, transparent 58%);
	clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
	transition: width .24s ease;
	pointer-events: none;
}

.redust-offcanvas-menu__foot a:hover,
.redust-offcanvas-menu__foot a:focus-visible {
	border-color: #ff3c3c;
	background: linear-gradient(135deg, rgba(215, 40, 40, .24), rgba(0, 0, 0, .8));
	outline: none;
}

.redust-offcanvas-menu__foot a:hover::before,
.redust-offcanvas-menu__foot a:focus-visible::before {
	width: 150px;
}

body.redust-menu-open {
	overflow: hidden;
}

body.redust-menu-open main,
body.redust-menu-open .site-main,
body.redust-menu-open .elementor-location-footer {
	visibility: hidden !important;
	pointer-events: none !important;
}

@media (max-width: 782px) {
	.admin-bar .redust-offcanvas-menu {
		top: 46px;
	}

	.admin-bar .redust-offcanvas-menu__panel {
		top: 46px;
		height: calc(100dvh - 46px);
	}
}

@media (max-width: 900px) {
	.redust-offcanvas-menu__panel {
		width: min(500px, calc(100vw - 24px));
		padding: 28px 24px 18px;
	}

	.redust-offcanvas-menu__panel::before {
		width: 300px;
		clip-path: polygon(0 0, 82% 0, 31% 100%, 0 100%);
	}

	.redust-offcanvas-menu__nav {
		margin-top: 64px;
		gap: 12px;
	}

	.redust-offcanvas-menu__nav a {
		min-height: 74px;
		padding: 18px 22px;
	}
}

@media (max-width: 1024px) {
	.redust-offcanvas-menu {
		width: 84px;
		height: 56px;
	}

	.redust-offcanvas-menu.is-open {
		width: 100%;
		height: 100dvh;
	}

	.redust-offcanvas-menu__toggle {
		width: 84px;
		height: 56px;
		padding-left: 20px;
		gap: 5px;
	}

	.redust-offcanvas-menu__toggle:hover,
	.redust-offcanvas-menu__toggle:focus-visible {
		width: 104px;
	}

	.redust-offcanvas-menu__toggle span {
		width: 22px;
	}

	.redust-offcanvas-menu__mobile-logo {
		display: none !important;
	}

	.admin-bar .redust-offcanvas-menu__mobile-logo {
		top: 64px;
	}

	.redust-offcanvas-menu.is-open .redust-offcanvas-menu__mobile-logo {
		display: none;
	}

	.redust-offcanvas-menu__mobile-logo img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
	}

	.redust-offcanvas-menu__mobile-logo span {
		color: #fff;
		font-size: 18px;
		font-weight: 800;
		letter-spacing: .16em;
	}

	html body .elementor-location-header .elementor-element-793eb64 {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		z-index: 1000000 !important;
		width: 176px !important;
		height: 44px !important;
		margin: 16px auto 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		transform: none !important;
		pointer-events: auto !important;
	}

	html body.admin-bar .elementor-location-header .elementor-element-793eb64 {
		top: auto !important;
	}

	html body .elementor-location-header .elementor-element-793eb64 img {
		width: 176px !important;
		max-width: 176px !important;
		height: auto !important;
		display: block !important;
	}

	.redust-offcanvas-menu.is-open ~ .elementor-location-header .elementor-element-793eb64,
	body.redust-menu-open .elementor-location-header .elementor-element-793eb64 {
		opacity: 0;
		visibility: hidden;
	}

	.redust-offcanvas-menu__panel {
		width: 100vw;
		padding: 24px 16px 18px;
	}

	.redust-offcanvas-menu__panel::before {
		width: 245px;
		clip-path: polygon(0 0, 86% 0, 27% 100%, 0 100%);
	}

	.redust-offcanvas-menu__panel-logo {
		width: 150px;
		height: 42px;
	}

	.redust-offcanvas-menu__language {
		display: flex;
		justify-content: flex-start;
		margin: 22px 0 -18px;
		padding-left: 3px;
	}

	.redust-offcanvas-menu__language .redust-language-switcher {
		display: inline-flex;
		padding: 9px 12px;
		border: 1px solid rgba(215, 40, 40, .72);
		border-radius: 10px;
		background: linear-gradient(135deg, rgba(215, 40, 40, .2), rgba(0, 0, 0, .56) 48%, rgba(0, 0, 0, .86));
		box-shadow: inset 0 0 22px rgba(215, 40, 40, .08);
	}

	.redust-offcanvas-menu__language .redust-language-switcher__list {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 12px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.redust-offcanvas-menu__language .redust-language-switcher__item,
	.redust-offcanvas-menu__language .redust-language-switcher__link {
		width: 24px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.redust-offcanvas-menu__language .redust-language-switcher__flag,
	.redust-offcanvas-menu__language .redust-language-switcher__flag-svg {
		width: 20px;
		height: 14px;
	}

	.redust-offcanvas-menu__nav {
		margin-top: 52px;
		gap: 10px;
	}

	.redust-offcanvas-menu__nav a {
		min-height: 66px;
		padding: 16px;
		font-size: 18px;
	}

	.redust-offcanvas-menu__nav a:hover::before,
	.redust-offcanvas-menu__nav a:focus-visible::before {
		width: 96px;
	}

	.redust-offcanvas-menu__nav a::after {
		display: none;
	}

	.redust-offcanvas-menu__foot {
		margin-top: 44px;
		padding-top: 30px;
	}

	.redust-offcanvas-menu__foot a {
		min-height: 50px;
		align-items: center;
		font-size: 12px;
	}

	.redust-offcanvas-menu__foot a:hover::before,
	.redust-offcanvas-menu__foot a:focus-visible::before {
		width: 116px;
	}

	body.home .elementor-element-3003e6f {
		padding-top: 16px !important;
	}
}

@media (max-width: 680px) {
	body.home .elementor-element-3003e6f {
		padding-top: 56px !important;
	}
}

@media (max-width: 782px) {
	html body.admin-bar .elementor-location-header .elementor-element-793eb64 {
		top: auto !important;
	}
}

html body .elementor-element:has(.redust-offcanvas-menu),
html body .elementor-widget-container:has(.redust-offcanvas-menu),
html body .elementor-shortcode:has(.redust-offcanvas-menu),
html body .redust-offcanvas-menu,
html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle,
html body .redust-offcanvas-menu .redust-offcanvas-menu__scrim,
html body .redust-offcanvas-menu .redust-offcanvas-menu__panel,
html body .redust-offcanvas-menu .redust-offcanvas-menu__panel *,
html body .redust-offcanvas-menu .redust-offcanvas-menu__close {
	pointer-events: auto !important;
}

/* Match the redust-cars native menu and neutralize global theme button/link styles. */
html body .redust-offcanvas-menu,
html body .redust-offcanvas-menu * {
	box-sizing: border-box;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle {
	width: 118px !important;
	height: 66px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 0 0 30px !important;
	border: 0 !important;
	border-radius: 3px !important;
	outline: 0 !important;
	background: linear-gradient(135deg, rgba(215, 40, 40, .94), rgba(91, 0, 0, .96)) !important;
	color: #fff !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle:hover,
html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle:focus-visible {
	width: 148px !important;
	border: 0 !important;
	outline: 0 !important;
	background: linear-gradient(135deg, #f02c2c 0%, #a90505 56%, #3a0000 100%) !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__close {
	position: relative !important;
	z-index: 30 !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	padding: 0 !important;
	border: 1px solid rgba(215, 40, 40, .9) !important;
	border-radius: 8px !important;
	outline: 0 !important;
	background: linear-gradient(135deg, rgba(0, 0, 0, .76), rgba(45, 0, 0, .72)) !important;
	color: #fff !important;
	pointer-events: auto !important;
	touch-action: manipulation !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__close:hover,
html body .redust-offcanvas-menu .redust-offcanvas-menu__close:focus-visible {
	border-color: #ff3c3c !important;
	outline: 0 !important;
	background: linear-gradient(135deg, rgba(215, 40, 40, .34), rgba(0, 0, 0, .86)) !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__panel-logo,
html body .redust-offcanvas-menu .redust-offcanvas-menu__panel-logo:hover,
html body .redust-offcanvas-menu .redust-offcanvas-menu__panel-logo:focus,
html body .redust-offcanvas-menu .redust-offcanvas-menu__panel-logo:focus-visible {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__panel-logo img {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

html body .redust-offcanvas-menu .redust-offcanvas-menu__close span {
	pointer-events: none !important;
}

body.redust-menu-open .elementor-element-f341307 {
	z-index: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 680px) {
	html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle {
		width: 84px !important;
		height: 56px !important;
		padding-left: 20px !important;
	}

	html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle:hover,
	html body .redust-offcanvas-menu .redust-offcanvas-menu__toggle:focus-visible {
		width: 104px !important;
	}
}
