.ipc-header-widget,
.ipc-header-widget * ,
.ipc-header-widget *::before,
.ipc-header-widget *::after {
	box-sizing: border-box;
}

.ipc-header-widget {
	--ipc-teal: #00c2a8;
	--ipc-teal-dark: #00a892;
	--ipc-teal-light: #e6faf7;
	--ipc-navy: #111827;
	--ipc-blue: #0090dc;
	--ipc-blue-light: #e5f4fc;
	--ipc-border: #b9c6d2;
	--ipc-header-border: #e4ebef;
	--ipc-muted: #6b7c8c;
	--ipc-body: #6b7280;
	--ipc-radius: 12px;
	--ipc-page-max: 1400px;
	--ipc-page-gutter: clamp(24px, 3.5vw, 40px);
	--ipc-header-bg: #fff;
	--ipc-nav-color: #0a2e4f;
	--ipc-nav-hover-color: #0a2e4f;
	--ipc-nav-hover-bg: #e5f4fc;
	--ipc-nav-active-color: #0a2e4f;
	--ipc-nav-active-bg: #e5f4fc;
	--ipc-dropdown-bg: #fff;
	font-family: 'Outfit', sans-serif;
	color: var(--ipc-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.ipc-header-widget a {
	color: inherit;
	text-decoration: none;
}

.ipc-header-widget img {
	display: block;
	max-width: 100%;
}

.ipc-header__nav-text,
.ipc-header__dd-title,
.ipc-header__dd-footer-text,
.ipc-header__drawer-text,
.ipc-header__drawer-title,
.ipc-header__drawer-contact-text,
.ipc-header__phone-label,
.ipc-header__lang-text {
	padding: 0;
	margin: 0;
	font: inherit;
	line-height: inherit;
	color: inherit;
	letter-spacing: inherit;
}

.ipc-header__dd-eyebrow,
.ipc-header__dd-sub,
.ipc-header__store-name,
.ipc-header__store-addr {
	padding: 0;
	font-family: inherit;
	letter-spacing: inherit;
}

.ipc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	height: 72px;
	min-height: 72px;
	background: #fff;
	border-bottom: 1px solid var(--ipc-header-border);
	box-shadow: none;
	box-sizing: border-box;
}

/* Reserves document flow space under the fixed header */
.ipc-header__spacer {
	display: block;
	width: 100%;
	height: 72px;
	min-height: 72px;
	pointer-events: none;
	visibility: hidden;
}

.ipc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	max-width: var(--ipc-page-max);
	height: 72px;
	min-height: 72px;
	margin: 0 auto;
	padding: 0 var(--ipc-page-gutter);
}

.ipc-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	min-width: 0;
	height: 46px;
	padding: 0;
	margin: 0;
	line-height: 0;
	text-decoration: none;
}

.ipc-header__logo-img {
	display: block;
	width: auto;
	height: 46px;
	max-width: min(220px, 42vw);
	object-fit: contain;
	object-position: left center;
}

.ipc-header__nav {
	display: flex;
	flex: 0 1 auto;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
}

.ipc-header__nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ipc-header__nav-item {
	position: relative;
}

.ipc-header__nav-item::after {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 12px;
	content: '';
}

.ipc-header__nav-link,
.ipc-header__nav-btn {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 10px;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	color: #0a2e4f;
	white-space: nowrap;
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.ipc-header__nav-link:hover,
.ipc-header__nav-btn:hover,
.ipc-header__nav-item.is-open > .ipc-header__nav-btn,
.ipc-header__nav-item:hover > .ipc-header__nav-btn,
.ipc-header__nav-item.is-open > a.ipc-header__nav-btn,
.ipc-header__nav-item:hover > a.ipc-header__nav-btn {
	color: var(--ipc-nav-hover-color);
	text-decoration: none;
	background: var(--ipc-nav-hover-bg);
}

.ipc-header__nav-link.is-active,
.ipc-header__nav-btn.is-active,
.ipc-header__nav-item.is-active > .ipc-header__nav-link,
.ipc-header__nav-item.is-active > .ipc-header__nav-btn {
	color: var(--ipc-nav-active-color);
	text-decoration: none;
	background: var(--ipc-nav-active-bg);
}

.ipc-header__chevron {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	margin-top: 1px;
	opacity: 0.75;
	stroke: currentColor;
	transition: opacity 0.2s ease;
}

.ipc-header__nav-item:hover .ipc-header__chevron,
.ipc-header__nav-item.is-open .ipc-header__chevron {
	opacity: 1;
}

.ipc-header__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1001;
	display: none;
	flex-direction: column;
	gap: 2px;
	min-width: 300px;
	padding: 10px;
	margin-top: 4px;
	overflow: visible;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(10, 46, 79, 0.16);
	animation: ipcDropIn 0.18s ease both;
}

.ipc-header__nav-item:hover > .ipc-header__dropdown,
.ipc-header__nav-item.is-open > .ipc-header__dropdown {
	display: flex;
}

@keyframes ipcDropIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}

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

.ipc-header__dd-link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 12px;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0a2e4f;
	text-align: left;
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 10px;
	transition: background 0.2s ease;
}

.ipc-header__dd-link:hover {
	color: #0a2e4f;
	text-decoration: none;
	background: var(--ipc-blue-light);
}

.ipc-header__dd-link svg,
.ipc-header__dd-link .ipc-header__dd-icon,
.ipc-header__drawer-sublink svg,
.ipc-header__drawer-sublink .ipc-header__dd-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.ipc-header__dd-sub {
	display: block;
	margin-top: 2px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--ipc-muted);
}

.ipc-header__stores-dropdown {
	width: min(380px, calc(100vw - 48px));
	min-width: 340px;
	padding: 10px 8px 8px;
}

.ipc-header__dd-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px 0;
	margin: 0 0 4px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ipc-blue);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ipc-header__stores-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 4px 4px 6px;
}

.ipc-header__store {
	display: block;
	padding: 10px 12px;
	color: inherit;
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.2s ease;
}

.ipc-header__store:hover {
	text-decoration: none;
	background: var(--ipc-blue-light);
}

.ipc-header__store-name {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	color: #0a2e4f;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.ipc-header__store-addr {
	margin: 3px 0 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: var(--ipc-muted);
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.ipc-header__store-transit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 7px;
}

.ipc-header__metro {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.ipc-header__metro-mark,
.ipc-header__transit-num,
.ipc-header__rer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 15px;
	min-width: 15px;
	height: 15px;
	font-size: 8px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}

.ipc-header__metro-mark {
	font-size: 7px;
	font-weight: 900;
	background: #003ca6;
	border-radius: 50%;
}

.ipc-header__transit-num {
	border-radius: 50%;
}

.ipc-header__rer {
	border-radius: 2px;
}

.ipc-transit-m1 { color: #1a1a1a; background: #ffcd00; }
.ipc-transit-m2 { background: #003ca6; }
.ipc-transit-m3 { background: #9b993a; }
.ipc-transit-m4 { background: #c04191; }
.ipc-transit-m5 { background: #ff7e2e; }
.ipc-transit-m6 { color: #1a1a1a; background: #6eca97; }
.ipc-transit-m7 { color: #1a1a1a; background: #fa9aba; }
.ipc-transit-m8 { color: #1a1a1a; background: #d282be; }
.ipc-transit-m9 { color: #1a1a1a; background: #b6bd00; }
.ipc-transit-m10 { background: #c9910d; }
.ipc-transit-m11 { background: #704b1c; }
.ipc-transit-m12 { background: #007852; }
.ipc-transit-m13 { color: #1a1a1a; background: #6ec4e8; }
.ipc-transit-m14 { background: #62259d; }
.ipc-transit-rer-a { background: #e2231a; }
.ipc-transit-rer-b { background: #4b92db; }
.ipc-transit-rer-c { color: #1a1a1a; background: #f7c600; }
.ipc-transit-rer-d { background: #008c5a; }
.ipc-transit-rer-e { background: #bd76a1; }

.ipc-header__dd-footer {
	display: block;
	padding: 10px 12px;
	margin-top: 4px;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ipc-blue);
	border-top: 1px solid var(--ipc-header-border);
}

.ipc-header__dd-footer:hover {
	color: #007bbe;
	text-decoration: none;
}

.ipc-header__right {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.ipc-header__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	color: #0a2e4f;
	text-decoration: none;
}

.ipc-header__phone:hover {
	color: var(--ipc-blue);
	text-decoration: none;
}

.ipc-header__phone svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.ipc-header__lang {
	display: inline-flex;
	flex-shrink: 0;
	align-items: stretch;
	gap: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background: none;
	border: 1px solid var(--ipc-border);
	border-radius: 999px;
}

.ipc-header__lang-btn {
	display: inline-flex;
	align-items: center;
	align-self: stretch;
	padding: 5px 11px;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ipc-muted);
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: none;
}

.ipc-header__lang-btn.is-active {
	color: #fff;
	background: #0a2e4f;
	box-shadow: none;
}

.ipc-header__lang-btn:hover,
.ipc-header__lang-btn:focus,
.ipc-header__lang-btn:focus-visible,
.ipc-header__lang-btn:active {
	color: var(--ipc-muted);
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: none;
	outline: none;
}

.ipc-header__lang-btn.is-active:hover,
.ipc-header__lang-btn.is-active:focus,
.ipc-header__lang-btn.is-active:focus-visible,
.ipc-header__lang-btn.is-active:active {
	color: #fff;
	background: #0a2e4f;
	border: 0;
	box-shadow: none;
	transform: none;
	outline: none;
}

.ipc-header__hamburger {
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	padding: 6px;
	color: #0a2e4f;
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--ipc-border);
	border-radius: 8px;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ipc-header__hamburger svg {
	display: block;
	width: 18px;
	height: 18px;
}

@media (hover: hover) and (pointer: fine) {
	.ipc-header__hamburger:hover {
		color: var(--ipc-blue);
		background: var(--ipc-blue-light);
		border-color: var(--ipc-blue);
	}
}

.ipc-header__drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1199;
	pointer-events: none;
	background: rgba(17, 24, 39, 0.45);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.ipc-header__drawer-backdrop.is-open {
	pointer-events: auto;
	opacity: 1;
}

.ipc-header__drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1200;
	display: flex;
	flex-direction: column;
	width: min(370px, 90vw);
	visibility: hidden;
	background: #fff;
	box-shadow: 0 0 40px rgba(17, 24, 39, 0.18);
	transform: translateX(-102%);
	transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.3s;
}

.ipc-header__drawer.is-open {
	visibility: visible;
	transform: translateX(0);
}

.ipc-header__drawer-head {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px 16px 24px;
	border-bottom: 1px solid #eef0f3;
}

.ipc-header__drawer-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ipc-navy);
}

.ipc-header__drawer-close {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--ipc-navy);
	cursor: pointer;
	background: #f3f4f6;
	border: 0;
	border-radius: 50%;
}

.ipc-header__drawer-close svg {
	width: 15px;
	height: 15px;
}

.ipc-header__drawer-body {
	flex: 1;
	padding: 24px 24px 32px;
	overflow-y: auto;
}

.ipc-header__drawer-nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
}

.ipc-header__drawer-group {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ipc-header__drawer-link,
.ipc-header__drawer-toggle,
.ipc-header__drawer-sublink {
	width: 100%;
	font-family: inherit;
	font-weight: 600;
	color: #0a2e4f;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	background: none;
	border: 0;
	border-radius: 8px;
	transition: background 0.15s ease, color 0.15s ease;
}

.ipc-header__drawer-link,
.ipc-header__drawer-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 10px;
	font-size: 1rem;
}

.ipc-header__drawer-link {
	display: block;
}

.ipc-header__drawer-link:hover,
.ipc-header__drawer-toggle:hover,
.ipc-header__drawer-sublink:hover {
	color: #0a2e4f;
	text-decoration: none;
	background: var(--ipc-blue-light);
}

.ipc-header__drawer-chevron {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #0a2e4f;
	transition: transform 0.2s ease;
}

.ipc-header__drawer-group.is-open .ipc-header__drawer-chevron {
	transform: rotate(180deg);
}

.ipc-header__drawer-sub {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 0 0 0 12px;
	margin: 0 0 4px;
	list-style: none;
}

.ipc-header__drawer-group.is-open .ipc-header__drawer-sub {
	display: flex;
}

.ipc-header__drawer-sublink {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 10px;
	font-size: 0.9375rem;
}

.ipc-header__drawer-sublink svg,
.ipc-header__drawer-sublink .ipc-header__dd-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

/* Mobile/tablet: same boutique card design as desktop "Nos Boutiques" dropdown. */
.ipc-header__drawer-stores {
	gap: 4px;
	padding: 4px 0 8px 4px;
	min-width: 0;
}

.ipc-header__drawer-stores-item {
	min-width: 0;
	max-width: 100%;
	list-style: none;
}

.ipc-header__drawer-store,
.elementor .ipc-header-widget .ipc-header__drawer-store,
.ipc-header-widget .ipc-header__drawer-store {
	display: block !important;
	align-items: stretch !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	padding: 12px 12px !important;
	margin: 0 !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: inherit !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	color: inherit !important;
	text-align: left !important;
	text-decoration: none !important;
	white-space: normal !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 12px !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
	transition: background 0.2s ease !important;
}

.ipc-header__drawer-store:hover,
.elementor .ipc-header-widget .ipc-header__drawer-store:hover,
.ipc-header-widget .ipc-header__drawer-store:hover {
	color: inherit !important;
	text-decoration: none !important;
	background: var(--ipc-blue-light, #e5f4fc) !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__store-name,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__store-name {
	display: block !important;
	margin: 0 !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: clamp(0.8125rem, 2.8vw, 0.9375rem) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #0a2e4f !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
	word-break: break-word !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__store-addr,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__store-addr {
	display: block !important;
	margin: 4px 0 0 !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: clamp(0.6875rem, 2.4vw, 0.75rem) !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: var(--ipc-muted, #6b7c8c) !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
	word-break: break-word !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__store-transit,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__store-transit {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 6px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-top: 8px !important;
	min-width: 0 !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__metro,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__metro {
	display: inline-flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 3px !important;
	max-width: 100% !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__metro-mark,
.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__transit-num,
.elementor .ipc-header-widget .ipc-header__drawer-store .ipc-header__rer,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__metro-mark,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__transit-num,
.ipc-header-widget .ipc-header__drawer-store .ipc-header__rer {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	width: 16px !important;
	min-width: 16px !important;
	height: 16px !important;
	font-size: 8px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	color: #fff !important;
	stroke: none !important;
}

.ipc-header__drawer-contact {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ipc-navy);
	background: #f6f8f9;
	border-radius: 14px;
}

.ipc-header__drawer-contact:hover {
	color: var(--ipc-navy);
	text-decoration: none;
}

.ipc-header__drawer-contact-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #fff;
	background: var(--ipc-navy);
	border-radius: 50%;
}

.ipc-header__drawer-contact-icon svg {
	width: 16px;
	height: 16px;
}

.ipc-header__social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding-top: 18px;
	margin-top: 20px;
	border-top: 1px solid var(--ipc-header-border);
}

.ipc-header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #f3f8fc;
	border: 1px solid var(--ipc-header-border);
	border-radius: 12px;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.ipc-header__social-link:hover {
	background: var(--ipc-blue-light);
	border-color: var(--ipc-border);
	transform: translateY(-1px);
}

.ipc-header__social-link img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

@media (min-width: 769px) {
	.ipc-header__logo {
		margin-top: -12px;
		margin-right: 25px;
	}
}

@media (max-width: 1400px) {
	.ipc-header__nav-link,
	.ipc-header__nav-btn {
		padding: 9px 10px;
	}
}

@media (max-width: 1280px) {
	.ipc-header__phone-label {
		display: none;
	}
}

@media (max-width: 1024px) {
	.ipc-header__nav {
		display: none;
	}

	.ipc-header__right {
		display: flex !important;
		align-items: center;
		gap: 10px;
		margin-left: auto;
	}

	.ipc-header__phone {
		display: none !important;
	}

	.ipc-header__hamburger {
		display: flex;
		margin-left: 0;
	}
}

@media (max-width: 1024px) {
	.ipc-header-widget {
		--ipc-page-gutter: 24px;
	}
}

@media (max-width: 768px) {
	.ipc-header-widget {
		--ipc-page-gutter: 16px;
	}

	.ipc-header,
	.ipc-header__inner {
		height: 60px;
		min-height: 60px;
	}

	.ipc-header__spacer {
		height: 60px;
		min-height: 60px;
	}

	.ipc-header__inner {
		padding: 0 var(--ipc-page-gutter);
	}

	.ipc-header__logo-img {
		height: 40px;
		max-width: min(186px, 62vw);
	}
}

/* Elementor/theme hardening: the source header relies on exact image/button sizing. */
.elementor .ipc-header-widget,
.ipc-header-widget {
	position: static !important;
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

.elementor .ipc-header-widget .ipc-header,
.ipc-header-widget .ipc-header {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	left: 0 !important;
	z-index: 1000 !important;
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	height: 72px !important;
	min-height: 72px !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
	background: var(--ipc-header-bg) !important;
	border: 0 !important;
	border-bottom: 1px solid var(--ipc-header-border) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__spacer,
.ipc-header-widget .ipc-header__spacer {
	display: block !important;
	width: 100% !important;
	height: 72px !important;
	min-height: 72px !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
	background: transparent !important;
	border: 0 !important;
}

.elementor .ipc-header-widget .ipc-header__inner,
.ipc-header-widget .ipc-header__inner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	width: 100% !important;
	max-width: var(--ipc-page-max) !important;
	height: 72px !important;
	min-height: 72px !important;
	padding: 0 var(--ipc-page-gutter) !important;
	margin: 0 auto !important;
	overflow: visible !important;
	background: transparent !important;
}

.elementor .ipc-header-widget .ipc-header__logo,
.ipc-header-widget .ipc-header__logo {
	display: inline-flex !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: auto !important;
	min-width: 0 !important;
	height: 46px !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__logo-img,
.ipc-header-widget .ipc-header__logo-img {
	display: block !important;
	width: auto !important;
	height: 46px !important;
	max-width: min(220px, 42vw) !important;
	object-fit: contain !important;
	object-position: left center !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__nav,
.ipc-header-widget .ipc-header__nav {
	display: flex !important;
	flex: 0 1 auto !important;
	align-items: center !important;
	justify-content: flex-start !important;
	min-width: 0 !important;
	overflow: visible !important;
}

.elementor .ipc-header-widget .ipc-header__nav-list,
.ipc-header-widget .ipc-header__nav-list {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.elementor .ipc-header-widget .ipc-header__nav-link,
.elementor .ipc-header-widget .ipc-header__nav-btn,
.elementor .ipc-header-widget .ipc-header__phone,
.elementor .ipc-header-widget .ipc-header__lang-btn,
.elementor .ipc-header-widget .ipc-header__hamburger,
.elementor .ipc-header-widget .ipc-header__drawer-close,
.elementor .ipc-header-widget .ipc-header__drawer-toggle,
.elementor .ipc-header-widget .ipc-header__drawer-sublink,
.ipc-header-widget .ipc-header__nav-link,
.ipc-header-widget .ipc-header__nav-btn,
.ipc-header-widget .ipc-header__phone,
.ipc-header-widget .ipc-header__lang-btn,
.ipc-header-widget .ipc-header__hamburger,
.ipc-header-widget .ipc-header__drawer-close,
.ipc-header-widget .ipc-header__drawer-toggle,
.ipc-header-widget .ipc-header__drawer-sublink {
	appearance: none !important;
	text-transform: none !important;
	box-shadow: none !important;
	outline-offset: 2px !important;
}

.elementor .ipc-header-widget .ipc-header__nav-link,
.elementor .ipc-header-widget .ipc-header__nav-btn,
.ipc-header-widget .ipc-header__nav-link,
.ipc-header-widget .ipc-header__nav-btn {
	display: flex !important;
	align-items: center !important;
	gap: 7px !important;
	padding: 10px !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	color: var(--ipc-nav-color) !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 8px !important;
}

.elementor .ipc-header-widget .ipc-header__nav-link:hover,
.elementor .ipc-header-widget .ipc-header__nav-btn:hover,
.elementor .ipc-header-widget .ipc-header__nav-item:hover > .ipc-header__nav-btn,
.elementor .ipc-header-widget .ipc-header__nav-item.is-open > .ipc-header__nav-btn,
.ipc-header-widget .ipc-header__nav-link:hover,
.ipc-header-widget .ipc-header__nav-btn:hover,
.ipc-header-widget .ipc-header__nav-item:hover > .ipc-header__nav-btn,
.ipc-header-widget .ipc-header__nav-item.is-open > .ipc-header__nav-btn {
	color: var(--ipc-nav-hover-color) !important;
	text-decoration: none !important;
	background: var(--ipc-nav-hover-bg) !important;
}

.elementor .ipc-header-widget .ipc-header__nav-link.is-active,
.elementor .ipc-header-widget .ipc-header__nav-btn.is-active,
.elementor .ipc-header-widget .ipc-header__nav-item.is-active > .ipc-header__nav-link,
.elementor .ipc-header-widget .ipc-header__nav-item.is-active > .ipc-header__nav-btn,
.ipc-header-widget .ipc-header__nav-link.is-active,
.ipc-header-widget .ipc-header__nav-btn.is-active,
.ipc-header-widget .ipc-header__nav-item.is-active > .ipc-header__nav-link,
.ipc-header-widget .ipc-header__nav-item.is-active > .ipc-header__nav-btn {
	color: var(--ipc-nav-active-color) !important;
	text-decoration: none !important;
	background: var(--ipc-nav-active-bg) !important;
}

.elementor .ipc-header-widget .ipc-header__dropdown,
.ipc-header-widget .ipc-header__dropdown {
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	z-index: 1001 !important;
	display: none !important;
	flex-direction: column !important;
	gap: 2px !important;
	min-width: 300px !important;
	padding: 10px !important;
	margin-top: 4px !important;
	overflow: visible !important;
	background: var(--ipc-dropdown-bg) !important;
	border: 1px solid var(--ipc-border) !important;
	border-radius: 14px !important;
	box-shadow: 0 18px 40px rgba(10, 46, 79, 0.16) !important;
}

.elementor .ipc-header-widget .ipc-header__nav-item:hover > .ipc-header__dropdown,
.elementor .ipc-header-widget .ipc-header__nav-item.is-open > .ipc-header__dropdown,
.ipc-header-widget .ipc-header__nav-item:hover > .ipc-header__dropdown,
.ipc-header-widget .ipc-header__nav-item.is-open > .ipc-header__dropdown {
	display: flex !important;
}

.elementor .ipc-header-widget .ipc-header__right,
.ipc-header-widget .ipc-header__right {
	display: flex !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	gap: 12px !important;
	margin-left: auto !important;
}

.elementor .ipc-header-widget .ipc-header__phone,
.ipc-header-widget .ipc-header__phone {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 8px !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--ipc-nav-color) !important;
	background: transparent !important;
	border: 0 !important;
}

.elementor .ipc-header-widget .ipc-header__lang,
.ipc-header-widget .ipc-header__lang {
	display: inline-flex !important;
	flex-shrink: 0 !important;
	align-items: stretch !important;
	gap: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	background: transparent !important;
	border: 1px solid var(--ipc-border) !important;
	border-radius: 999px !important;
}

.elementor .ipc-header-widget .ipc-header__lang-btn,
.ipc-header-widget .ipc-header__lang-btn {
	display: inline-flex !important;
	align-items: center !important;
	align-self: stretch !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 5px 11px !important;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--ipc-muted) !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	transition: none !important;
}

.elementor .ipc-header-widget .ipc-header__lang-btn.is-active,
.ipc-header-widget .ipc-header__lang-btn.is-active {
	color: #fff !important;
	background: #0a2e4f !important;
}

.elementor .ipc-header-widget .ipc-header__lang-btn:hover,
.elementor .ipc-header-widget .ipc-header__lang-btn:focus,
.elementor .ipc-header-widget .ipc-header__lang-btn:focus-visible,
.elementor .ipc-header-widget .ipc-header__lang-btn:active,
.ipc-header-widget .ipc-header__lang-btn:hover,
.ipc-header-widget .ipc-header__lang-btn:focus,
.ipc-header-widget .ipc-header__lang-btn:focus-visible,
.ipc-header-widget .ipc-header__lang-btn:active {
	color: var(--ipc-muted) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none !important;
}

.elementor .ipc-header-widget .ipc-header__lang-btn.is-active:hover,
.elementor .ipc-header-widget .ipc-header__lang-btn.is-active:focus,
.elementor .ipc-header-widget .ipc-header__lang-btn.is-active:focus-visible,
.elementor .ipc-header-widget .ipc-header__lang-btn.is-active:active,
.ipc-header-widget .ipc-header__lang-btn.is-active:hover,
.ipc-header-widget .ipc-header__lang-btn.is-active:focus,
.ipc-header-widget .ipc-header__lang-btn.is-active:focus-visible,
.ipc-header-widget .ipc-header__lang-btn.is-active:active {
	color: #fff !important;
	background: #0a2e4f !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none !important;
}

.elementor .ipc-header-widget .ipc-header__hamburger,
.ipc-header-widget .ipc-header__hamburger {
	display: none !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 6px !important;
	color: var(--ipc-nav-color) !important;
	background: var(--ipc-header-bg) !important;
	border: 1px solid var(--ipc-border) !important;
	border-radius: 8px !important;
}

.elementor .ipc-header-widget .ipc-header__hamburger svg,
.ipc-header-widget .ipc-header__hamburger svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	flex-shrink: 0 !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-head,
.ipc-header-widget .ipc-header__drawer-head {
	display: flex !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 18px 20px 16px 24px !important;
	background: #fff !important;
	border-bottom: 1px solid #eef0f3 !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-title,
.ipc-header-widget .ipc-header__drawer-title {
	padding: 0 !important;
	margin: 0 !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.6 !important;
	color: #111827 !important;
	background: transparent !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-close,
.ipc-header-widget .ipc-header__drawer-close {
	display: flex !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	color: #111827 !important;
	background: #f3f4f6 !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-close svg,
.ipc-header-widget .ipc-header__drawer-close svg {
	display: block !important;
	width: 15px !important;
	height: 15px !important;
	color: #111827 !important;
	stroke: currentColor !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-body,
.ipc-header-widget .ipc-header__drawer-body {
	flex: 1 !important;
	padding: 24px 24px 32px !important;
	overflow-y: auto !important;
	background: #fff !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-nav,
.ipc-header-widget .ipc-header__drawer-nav {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	padding: 0 !important;
	margin: 0 0 20px !important;
	list-style: none !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-link,
.elementor .ipc-header-widget .ipc-header__drawer-toggle,
.ipc-header-widget .ipc-header__drawer-link,
.ipc-header-widget .ipc-header__drawer-toggle {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	padding: 14px 10px !important;
	margin: 0 !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.6 !important;
	color: #0a2e4f !important;
	text-align: left !important;
	text-decoration: none !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-link,
.ipc-header-widget .ipc-header__drawer-link {
	display: block !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-group.is-open .ipc-header__drawer-toggle,
.ipc-header-widget .ipc-header__drawer-group.is-open .ipc-header__drawer-toggle {
	color: #0a2e4f !important;
	background: transparent !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-link:hover,
.elementor .ipc-header-widget .ipc-header__drawer-toggle:hover,
.elementor .ipc-header-widget .ipc-header__drawer-sublink:hover,
.ipc-header-widget .ipc-header__drawer-link:hover,
.ipc-header-widget .ipc-header__drawer-toggle:hover,
.ipc-header-widget .ipc-header__drawer-sublink:hover {
	color: #0a2e4f !important;
	text-decoration: none !important;
	background: #e5f4fc !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-chevron,
.ipc-header-widget .ipc-header__drawer-chevron {
	flex-shrink: 0 !important;
	width: 16px !important;
	height: 16px !important;
	color: #0a2e4f !important;
	stroke: currentColor !important;
	opacity: 1 !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-sublink,
.ipc-header-widget .ipc-header__drawer-sublink {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	padding: 11px 10px !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.6 !important;
	color: #0a2e4f !important;
	text-align: left !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__dd-link svg,
.elementor .ipc-header-widget .ipc-header__dd-link .ipc-header__dd-icon,
.ipc-header-widget .ipc-header__dd-link svg,
.ipc-header-widget .ipc-header__dd-link .ipc-header__dd-icon,
.elementor .ipc-header-widget .ipc-header__drawer-sublink svg,
.elementor .ipc-header-widget .ipc-header__drawer-sublink .ipc-header__dd-icon,
.ipc-header-widget .ipc-header__drawer-sublink svg,
.ipc-header-widget .ipc-header__drawer-sublink .ipc-header__dd-icon {
	flex-shrink: 0 !important;
	width: 24px !important;
	height: 24px !important;
	object-fit: contain !important;
}

.elementor .ipc-header-widget .ipc-header__dd-link svg,
.ipc-header-widget .ipc-header__dd-link svg,
.elementor .ipc-header-widget .ipc-header__drawer-sublink svg,
.ipc-header-widget .ipc-header__drawer-sublink svg {
	stroke: #0090dc !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-contact,
.ipc-header-widget .ipc-header__drawer-contact {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	padding: 16px !important;
	margin-top: 4px !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.6 !important;
	color: #111827 !important;
	text-decoration: none !important;
	background: #f6f8f9 !important;
	border: 0 !important;
	border-radius: 14px !important;
	box-shadow: none !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-contact-icon,
.ipc-header-widget .ipc-header__drawer-contact-icon {
	display: flex !important;
	flex-shrink: 0 !important;
	align-items: center !important;
	justify-content: center !important;
	width: 38px !important;
	height: 38px !important;
	color: #fff !important;
	background: #111827 !important;
	border-radius: 50% !important;
}

.elementor .ipc-header-widget .ipc-header__drawer-contact-icon svg,
.ipc-header-widget .ipc-header__drawer-contact-icon svg {
	width: 16px !important;
	height: 16px !important;
	stroke: currentColor !important;
}

.elementor .ipc-header-widget .ipc-header__drawer,
.ipc-header-widget .ipc-header__drawer {
	position: fixed !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 1200 !important;
	display: flex !important;
	flex-direction: column !important;
	width: min(370px, 90vw) !important;
	padding: 0 !important;
	margin: 0 !important;
	visibility: hidden !important;
	background: var(--ipc-dropdown-bg) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: 0 0 40px rgba(17, 24, 39, 0.18) !important;
	transform: translateX(-102%) !important;
}

.elementor .ipc-header-widget .ipc-header__drawer.is-open,
.ipc-header-widget .ipc-header__drawer.is-open {
	visibility: visible !important;
	transform: translateX(0) !important;
}

.elementor .ipc-header-widget .ipc-header__social-link img,
.ipc-header-widget .ipc-header__social-link img {
	width: 26px !important;
	height: 26px !important;
	object-fit: contain !important;
}

@media (min-width: 769px) {
	.elementor .ipc-header-widget .ipc-header__logo,
	.ipc-header-widget .ipc-header__logo {
		margin-top: -12px !important;
		margin-right: 25px !important;
	}
}

@media (max-width: 1400px) {
	.elementor .ipc-header-widget .ipc-header__nav-link,
	.elementor .ipc-header-widget .ipc-header__nav-btn,
	.ipc-header-widget .ipc-header__nav-link,
	.ipc-header-widget .ipc-header__nav-btn {
		padding: 9px 10px !important;
	}
}

@media (max-width: 1024px) {
	.elementor .ipc-header-widget .ipc-header__nav,
	.ipc-header-widget .ipc-header__nav {
		display: none !important;
	}

	.elementor .ipc-header-widget .ipc-header__right,
	.ipc-header-widget .ipc-header__right {
		gap: 10px !important;
	}

	.elementor .ipc-header-widget .ipc-header__phone,
	.ipc-header-widget .ipc-header__phone {
		display: none !important;
	}

	.elementor .ipc-header-widget .ipc-header__hamburger,
	.ipc-header-widget .ipc-header__hamburger {
		display: flex !important;
		margin-left: 0 !important;
	}
}

@media (max-width: 768px) {
	.elementor .ipc-header-widget .ipc-header,
	.elementor .ipc-header-widget .ipc-header__inner,
	.ipc-header-widget .ipc-header,
	.ipc-header-widget .ipc-header__inner {
		height: 60px !important;
		min-height: 60px !important;
	}

	.elementor .ipc-header-widget .ipc-header__spacer,
	.ipc-header-widget .ipc-header__spacer {
		height: 60px !important;
		min-height: 60px !important;
	}

	.elementor .ipc-header-widget .ipc-header__logo-img,
	.ipc-header-widget .ipc-header__logo-img {
		height: 40px !important;
		max-width: min(186px, 62vw) !important;
	}

	.elementor .ipc-header-widget .ipc-header__hamburger,
	.ipc-header-widget .ipc-header__hamburger {
		padding: 5px !important;
		border-radius: 7px !important;
	}

	.elementor .ipc-header-widget .ipc-header__hamburger svg,
	.ipc-header-widget .ipc-header__hamburger svg {
		width: 17px !important;
		height: 17px !important;
	}
}

/* -------------------------------------------------------------------------
   WordPress admin bar: WP puts .admin-bar on BODY (not html).
   Offset the fixed header so it sits under #wpadminbar and does not leave
   a theme-background gap between the nav and page content.
   ------------------------------------------------------------------------- */
body.admin-bar .ipc-header,
body.admin-bar .elementor .ipc-header-widget .ipc-header,
body.admin-bar .ipc-header-widget .ipc-header,
html.admin-bar .ipc-header,
html.admin-bar .elementor .ipc-header-widget .ipc-header,
html.admin-bar .ipc-header-widget .ipc-header {
	top: 32px !important;
}

body.admin-bar .ipc-header__drawer,
body.admin-bar .elementor .ipc-header-widget .ipc-header__drawer,
body.admin-bar .ipc-header-widget .ipc-header__drawer,
html.admin-bar .ipc-header__drawer,
html.admin-bar .elementor .ipc-header-widget .ipc-header__drawer,
html.admin-bar .ipc-header-widget .ipc-header__drawer {
	top: 32px !important;
	height: calc(100vh - 32px) !important;
	max-height: calc(100vh - 32px) !important;
}

body.admin-bar .ipc-header__drawer-backdrop,
body.admin-bar .elementor .ipc-header-widget .ipc-header__drawer-backdrop,
body.admin-bar .ipc-header-widget .ipc-header__drawer-backdrop {
	top: 32px !important;
}

@media screen and (max-width: 782px) {
	body.admin-bar .ipc-header,
	body.admin-bar .elementor .ipc-header-widget .ipc-header,
	body.admin-bar .ipc-header-widget .ipc-header,
	html.admin-bar .ipc-header,
	html.admin-bar .elementor .ipc-header-widget .ipc-header,
	html.admin-bar .ipc-header-widget .ipc-header {
		top: 46px !important;
	}

	body.admin-bar .ipc-header__drawer,
	body.admin-bar .elementor .ipc-header-widget .ipc-header__drawer,
	body.admin-bar .ipc-header-widget .ipc-header__drawer,
	html.admin-bar .ipc-header__drawer,
	html.admin-bar .elementor .ipc-header-widget .ipc-header__drawer,
	html.admin-bar .ipc-header-widget .ipc-header__drawer {
		top: 46px !important;
		height: calc(100vh - 46px) !important;
		max-height: calc(100vh - 46px) !important;
	}

	body.admin-bar .ipc-header__drawer-backdrop,
	body.admin-bar .elementor .ipc-header-widget .ipc-header__drawer-backdrop,
	body.admin-bar .ipc-header-widget .ipc-header__drawer-backdrop {
		top: 46px !important;
	}
}
