body.indovia-ajax-header-active #martfury-preloader,
body.indovia-ajax-header-active .martfury-preloader {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.indovia-global-header,
.indovia-global-header *,
.indovia-ajax-panel,
.indovia-ajax-panel *,
.indovia-department-panel,
.indovia-department-panel *,
.indovia-mobile-bottom-nav,
.indovia-mobile-bottom-nav * {
	box-sizing: border-box;
}

.indovia-global-header {
	--indovia-red: #e21b0c;
	--indovia-red-dark: #c91408;
	--indovia-text: #111111;
	display: none;
	position: relative;
	top: 0;
	z-index: 9999;
	width: 100%;
	background: var(--indovia-red);
	color: #ffffff;
	font-family: "Work Sans", Arial, sans-serif;
	transition: transform .24s ease, box-shadow .22s ease, background-color .22s ease;
}

.indovia-global-header.is-scrolled {
	position: fixed;
	left: 0;
	right: 0;
	padding: 0;
	background: transparent;
	animation: indovia-sticky-enter .22s cubic-bezier(.2, .7, .2, 1) both;
}

body.woocommerce-cart .indovia-global-header.is-scrolled,
body.woocommerce-checkout .indovia-global-header.is-scrolled,
body.indovia-purchase-surface .indovia-global-header.is-scrolled {
	position: relative !important;
	top: 0 !important;
	left: auto !important;
	right: auto !important;
	background: var(--indovia-red) !important;
	animation: none !important;
}

body.woocommerce-cart.indovia-mobile-bottom-nav-active,
body.woocommerce-checkout.indovia-mobile-bottom-nav-active {
	padding-bottom: 0 !important;
}

body.woocommerce-cart .indovia-mobile-bottom-nav,
body.woocommerce-checkout .indovia-mobile-bottom-nav {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.indovia-header-spacer {
	display: none;
	height: 0;
	visibility: hidden;
	pointer-events: none;
	background: transparent;
}

.indovia-header-spacer.is-active {
	display: block;
	height: var(--indovia-header-spacer-height, 0px);
}

body.admin-bar .indovia-global-header {
	top: 32px;
}

.indovia-header-shell {
	width: 100%;
	margin: 0 auto;
	background: var(--indovia-red);
	overflow: visible;
	transition: max-width .22s ease, border-radius .22s ease, box-shadow .22s ease, transform .22s ease;
}

@keyframes indovia-sticky-enter {
	from {
		opacity: .98;
		transform: translate3d(0, -8px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.indovia-primary-row {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	grid-template-areas:
		"menu brand actions"
		"search search search";
	align-items: center;
	column-gap: 16px;
	row-gap: 18px;
	width: 100%;
	padding: 28px 20px 22px;
	overflow: visible;
}

.indovia-menu-button {
	grid-area: menu;
	position: relative;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.indovia-menu-button span {
	display: block;
	width: 38px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.indovia-brand {
	grid-area: brand;
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: #ffffff !important;
	text-decoration: none !important;
}

.indovia-brand img {
	display: block;
	width: min(260px, 100%);
	max-height: 44px;
	object-fit: contain;
}

.indovia-brand-fallback {
	display: none;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0;
	color: #ffffff;
}

.indovia-search-wrap {
	grid-area: search;
	min-width: 0;
	width: 100%;
	overflow: visible;
}

.indovia-search-wrap .product-extra-search,
.indovia-search-form,
.indovia-search-form .psearch-content {
	display: block;
	width: 100%;
	margin: 0;
}

.indovia-search-form .psearch-content {
	position: relative;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 62px;
	height: 52px;
	overflow: visible;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: none;
	max-width: 100%;
}

.indovia-search-form .search-wrapper {
	position: static !important;
	width: auto !important;
	min-width: 0;
	float: none !important;
}

.indovia-search-form .search-field {
	width: 100% !important;
	height: 52px !important;
	min-height: 52px !important;
	border: 0 !important;
	padding: 0 22px !important;
	background: #ffffff !important;
	box-shadow: none !important;
	color: #222222 !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 52px !important;
	outline: 0;
	max-width: 100%;
}

.indovia-search-form .search-field::placeholder {
	color: #9a9a9a;
	opacity: 1;
}

.indovia-search-form .search-results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 10020;
	display: none;
	width: 100%;
	min-width: 100%;
	max-height: min(520px, calc(100vh - 96px));
	overflow: auto;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
	color: #111111;
	transition: opacity .14s ease;
	box-sizing: border-box;
}

.indovia-search-form .search-results.is-active {
	display: block;
}

.indovia-search-form .search-results.is-loading {
	overflow: hidden;
}

.indovia-search-form .search-results.is-loading:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 14px;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(226, 27, 12, .2);
	border-top-color: #e21b0c;
	border-radius: 50%;
	animation: indovia-spin .7s linear infinite;
}

.indovia-search-form .search-results.is-loading .indovia-search-result,
.indovia-search-form .search-results.is-loading .indovia-search-result-note {
	opacity: .62;
}

.indovia-search-result {
	display: flex;
	gap: 12px;
	align-items: center;
	min-height: 72px;
	padding: 10px 14px;
	color: #111111 !important;
	text-decoration: none !important;
	border-bottom: 1px solid #eeeeee;
}

.indovia-search-result-body {
	display: block;
	min-width: 0;
}

.indovia-search-result:last-child {
	border-bottom: 0;
}

.indovia-search-result img {
	width: 46px;
	height: 46px;
	object-fit: cover;
	border-radius: 4px;
	background: #f5f5f5;
}

.indovia-search-result-image {
	display: block;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	border-radius: 4px;
	background: #f5f5f5;
}

.indovia-search-result-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.indovia-search-result-price,
.indovia-search-result-note {
	display: block;
	margin-top: 4px;
	color: #666666;
	font-size: 12px;
	line-height: 1.2;
}

.indovia-search-form .search-results > .indovia-search-result-note {
	margin: 0;
	min-height: 58px;
	padding: 18px 44px 18px 16px;
}

.indovia-search-result-price {
	color: #8f2c25;
	font-weight: 800;
}

.indovia-search-result-meta {
	display: block;
	margin-top: 3px;
	color: #74706b;
	font-size: 11px;
	line-height: 1.3;
}

.indovia-search-group-label {
	display: block;
	padding: 10px 14px 7px;
	border-top: 1px solid #eee8df;
	background: #fffdf9;
	color: #6f665f;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.indovia-search-group-label:first-child {
	border-top: 0;
}

.indovia-search-quick-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
	padding: 8px 12px 11px;
}

.indovia-search-quick-link {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid #eee5da;
	border-radius: 7px;
	background: #fff;
	color: #26211e !important;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none !important;
}

.indovia-search-quick-link small {
	overflow: hidden;
	color: #7b736d;
	font-size: 10px;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.indovia-search-all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 10px 14px;
	border-top: 1px solid #eee8df;
	background: #fffdf9;
	color: #8f2c25 !important;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none !important;
}

.indovia-search-all::after {
	content: "\2192";
	font-size: 17px;
	line-height: 1;
}

@media (max-width: 782px) {
	.indovia-search-form .search-results {
		left: 0;
		right: auto;
		width: min(410px, calc(100vw - 28px));
		min-width: 0;
		max-width: calc(100vw - 28px);
		max-height: min(520px, calc(100vh - 112px));
	}

	.indovia-search-quick-links {
		grid-template-columns: minmax(0, 1fr);
	}
}

@keyframes indovia-spin {
	to {
		transform: rotate(360deg);
	}
}

.indovia-search-submit {
	position: relative !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 62px !important;
	height: 52px !important;
	min-width: 62px !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #000000 !important;
	color: #ffffff !important;
	font-size: 0 !important;
	line-height: 1 !important;
	transform: none !important;
	cursor: pointer;
}

.indovia-search-submit svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-search-form,
body.indovia-ajax-header-active .indovia-global-header .indovia-search-form .psearch-content {
	min-width: 0 !important;
	max-width: 100% !important;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-search-form .psearch-content {
	display: flex !important;
	align-items: stretch !important;
	position: relative !important;
	overflow: visible !important;
	width: 100% !important;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-search-form .search-wrapper {
	position: static !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	display: block !important;
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	transform: none !important;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-search-form .search-field {
	display: block !important;
	box-sizing: border-box !important;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-search-submit {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	display: flex !important;
	flex: 0 0 62px !important;
	float: none !important;
	align-self: stretch !important;
	justify-self: stretch !important;
	transform: none !important;
}

.indovia-header-actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-width: 166px;
	overflow: visible;
}

.indovia-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #ffffff !important;
	text-decoration: none !important;
}

.indovia-action svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.indovia-ajax-header-active .site-header .menu-item-cart .extra-icon.icon-bag2 {
	display: inline-block !important;
	width: 34px;
	height: 34px;
	font-size: 0 !important;
	line-height: 1 !important;
	vertical-align: middle;
	background: transparent !important;
}

body.indovia-ajax-header-active .site-header .menu-item-cart .extra-icon.icon-bag2:before {
	content: "" !important;
	display: block;
	width: 34px;
	height: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23fff' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h3l3.1 13.2a2 2 0 0 0 2 1.5h10.5a2 2 0 0 0 1.9-1.4L28 10H9'/%3E%3Ccircle cx='13' cy='26' r='2.3'/%3E%3Ccircle cx='24' cy='26' r='2.3'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 34px 34px;
}

.indovia-count {
	position: absolute;
	right: -7px;
	bottom: 1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: #000000;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 19px;
}

.indovia-fly-token {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--mf-background-primary-color, #dd2400);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(221, 36, 0, .28), 0 5px 16px rgba(0, 0, 0, .18);
	opacity: .98;
	pointer-events: none;
	overflow: hidden;
	transform: translate3d(var(--indovia-fly-start-x, 0), var(--indovia-fly-start-y, 0), 0) scale(1);
	transition: transform .74s cubic-bezier(.18, .78, .22, 1), opacity .74s ease, box-shadow .74s ease;
	will-change: transform, opacity;
}

.indovia-fly-token.is-active {
	opacity: .08;
	box-shadow: 0 3px 8px rgba(221, 36, 0, .12);
	transform: translate3d(var(--indovia-fly-end-x, 0), var(--indovia-fly-end-y, 0), 0) scale(.34);
}

.indovia-fly-token svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.indovia-fly-token img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indovia-fly-token--wishlist {
	background: #ffffff;
	color: var(--mf-background-primary-color, #dd2400);
	border: 1px solid rgba(221, 36, 0, .2);
}

.indovia-action.is-fly-hit,
.site-header .cart-contents.is-fly-hit,
.site-header .yith-contents.is-fly-hit,
.site-header .menu-item-cart.is-fly-hit,
.site-header .menu-item-wishlist.is-fly-hit {
	animation: indovia-fly-hit .42s ease;
}

@keyframes indovia-fly-hit {
	0% {
		transform: scale(1);
	}
	45% {
		transform: scale(1.16);
	}
	100% {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.indovia-fly-token {
		display: none;
	}

	.indovia-action.is-fly-hit,
	.site-header .cart-contents.is-fly-hit,
	.site-header .yith-contents.is-fly-hit,
	.site-header .menu-item-cart.is-fly-hit,
	.site-header .menu-item-wishlist.is-fly-hit {
		animation: none;
	}
}

.indovia-mobile-bottom-nav {
	--indovia-mobile-nav-red: var(--mf-background-primary-color, #dd2400);
	--indovia-mobile-nav-text: #333333;
	--indovia-mobile-nav-height: 62px;
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99998;
	width: 100vw;
	max-width: 100vw;
	min-height: calc(var(--indovia-mobile-nav-height) + env(safe-area-inset-bottom, 0px));
	padding-bottom: env(safe-area-inset-bottom, 0px);
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, .12);
	box-shadow: 0 -8px 22px rgba(0, 0, 0, .08);
}

.indovia-mobile-bottom-nav__list {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 25%);
	align-items: stretch;
	width: 100%;
	height: var(--indovia-mobile-nav-height);
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.indovia-mobile-bottom-nav__list::-webkit-scrollbar {
	display: none;
}

.indovia-mobile-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-width: 64px;
	height: var(--indovia-mobile-nav-height);
	padding: 7px 6px 6px;
	color: var(--indovia-mobile-nav-text) !important;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color .18s ease, opacity .18s ease, transform .18s ease;
}

.indovia-mobile-bottom-nav__item:hover,
.indovia-mobile-bottom-nav__item:focus,
.indovia-mobile-bottom-nav__item:active {
	color: var(--indovia-mobile-nav-red) !important;
	text-decoration: none !important;
}

.indovia-mobile-bottom-nav__item.is-active {
	font-weight: 600;
}

.indovia-mobile-bottom-nav__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: inherit;
}

.indovia-mobile-bottom-nav__icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.indovia-mobile-bottom-nav__label {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.indovia-mobile-bottom-nav__badge {
	position: absolute;
	top: -8px;
	right: -12px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--indovia-mobile-nav-red);
	color: #ffffff;
	font-size: 9px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	box-shadow: 0 0 0 2px #ffffff;
}

.header-bar.topbar .indovia-desktop-trust-links {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	white-space: nowrap;
}

.header-bar.topbar .indovia-desktop-trust-links a {
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	transition: color .18s ease, opacity .18s ease;
}

.header-bar.topbar .indovia-desktop-trust-links a:hover,
.header-bar.topbar .indovia-desktop-trust-links a:focus {
	color: #fff4ef !important;
	opacity: .9;
}

.header-bar.topbar .widget_custom_html:has(.textwidget.custom-html-widget:empty) {
	display: none !important;
}

.header-bar.topbar .indovia-desktop-trust-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.header-bar.topbar .indovia-desktop-trust-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none !important;
}

.header-bar.topbar .indovia-desktop-trust-dropdown__toggle:after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-3px);
}

.header-bar.topbar .indovia-desktop-trust-dropdown__menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 10040;
	min-width: 238px;
	padding: 9px;
	border: 1px solid rgba(17, 17, 17, .08);
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 22px 55px rgba(17, 17, 17, .18);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.header-bar.topbar .indovia-desktop-trust-dropdown__menu:before {
	content: "";
	position: absolute;
	left: 50%;
	top: -6px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-left: 1px solid rgba(17, 17, 17, .08);
	border-top: 1px solid rgba(17, 17, 17, .08);
	transform: translateX(-50%) rotate(45deg);
}

.header-bar.topbar .indovia-desktop-trust-dropdown:hover .indovia-desktop-trust-dropdown__menu,
.header-bar.topbar .indovia-desktop-trust-dropdown:focus-within .indovia-desktop-trust-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.header-bar.topbar .indovia-desktop-trust-dropdown__menu a {
	position: relative;
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	color: #111111 !important;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none !important;
	transition: background-color .18s ease, color .18s ease;
}

.header-bar.topbar .indovia-desktop-trust-dropdown__menu a:hover,
.header-bar.topbar .indovia-desktop-trust-dropdown__menu a:focus {
	background: rgba(255, 31, 45, .08);
	color: #ff1f2d !important;
}

.indovia-utility-row {
	min-height: 58px;
	border-top: 1px solid rgba(0, 0, 0, .14);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .18);
}

.indovia-utility-menu {
	display: flex;
	justify-content: center;
	gap: 0;
	align-items: center;
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 0 16px;
	list-style: none;
}

.indovia-utility-menu > li {
	position: relative;
	flex: 0 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0 18px;
	list-style: none;
}

.indovia-utility-menu > li + li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 1px;
	height: 22px;
	background: rgba(0, 0, 0, .28);
}

.indovia-utility-row a,
.indovia-utility-menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 0;
	height: 58px;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.indovia-utility-menu > li.menu-item-has-children > a:after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 5px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-3px);
}

.indovia-utility-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10030;
	display: none;
	min-width: 220px;
	margin: 0;
	padding: 9px;
	list-style: none;
	border: 1px solid rgba(17, 17, 17, .08);
	border-radius: 0 0 14px 14px;
	background: #ffffff;
	box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.indovia-utility-menu > li:hover > .sub-menu,
.indovia-utility-menu > li:focus-within > .sub-menu,
.indovia-utility-menu > li.is-open > .sub-menu {
	display: block;
}

.indovia-utility-menu .sub-menu a {
	display: block;
	height: auto;
	padding: 10px 12px;
	border-radius: 10px;
	color: #111111 !important;
	font-size: 13px;
	font-weight: 600;
	text-align: left;
}

.indovia-utility-menu .sub-menu a:hover,
.indovia-utility-menu .sub-menu a:focus {
	background: rgba(255, 31, 45, .08);
	color: #ff1f2d !important;
}

.indovia-utility-row svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.indovia-global-header.is-scrolled .indovia-primary-row {
	grid-template-columns: 48px minmax(0, 1fr) auto;
	grid-template-areas: "menu search actions";
	row-gap: 0;
	padding: 12px 18px;
}

.indovia-global-header.is-scrolled .indovia-brand,
.indovia-global-header.is-scrolled .indovia-utility-row {
	display: none;
}

.indovia-global-header.is-scrolled .indovia-menu-button {
	width: 44px;
	height: 44px;
}

.indovia-global-header.is-scrolled .indovia-menu-button span {
	width: 34px;
	height: 3px;
}

.indovia-global-header.is-scrolled .indovia-search-wrap {
	width: 100%;
	max-width: 100%;
	justify-self: stretch;
}

.indovia-global-header.is-scrolled .indovia-search-form .psearch-content {
	grid-template-columns: minmax(0, 1fr) 58px;
	height: 50px;
	border-radius: 8px;
}

.indovia-global-header.is-scrolled .indovia-search-form .search-field {
	height: 50px !important;
	min-height: 50px !important;
	line-height: 50px !important;
	font-size: 14px !important;
	padding: 0 14px !important;
}

.indovia-global-header.is-scrolled .indovia-search-submit {
	width: 58px !important;
	height: 50px !important;
	min-width: 58px !important;
	min-height: 50px !important;
	flex-basis: 58px !important;
	background: #ffffff !important;
	color: #111111 !important;
}

.indovia-global-header.is-scrolled .indovia-search-submit svg {
	width: 27px;
	height: 27px;
	stroke-width: 2.6;
}

.indovia-global-header.is-scrolled .indovia-action {
	width: 42px;
	height: 42px;
}

.indovia-global-header.is-scrolled .indovia-action svg {
	width: 40px;
	height: 40px;
}

.indovia-ajax-panel {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	pointer-events: none;
}

.indovia-ajax-panel.is-open {
	display: block;
	pointer-events: auto;
}

.indovia-panel-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	transition: opacity .2s ease;
}

.indovia-ajax-panel.is-open .indovia-panel-backdrop {
	opacity: 1;
}

.indovia-panel-dialog {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(420px, 100vw);
	height: 100%;
	background: #ffffff;
	color: #111111;
	box-shadow: -18px 0 48px rgba(0, 0, 0, .2);
	transform: translateX(100%);
	transition: transform .24s ease;
}

.indovia-ajax-panel.is-open .indovia-panel-dialog {
	transform: translateX(0);
}

.indovia-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	padding: 0 22px;
	border-bottom: 1px solid #eeeeee;
}

.indovia-panel-head h2 {
	margin: 0;
	color: #111111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.indovia-panel-close {
	position: relative;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.indovia-panel-close span {
	position: absolute;
	left: 10px;
	top: 20px;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: #111111;
}

.indovia-panel-close span:first-child {
	transform: rotate(45deg);
}

.indovia-panel-close span:last-child {
	transform: rotate(-45deg);
}

.indovia-panel-content {
	flex: 1;
	overflow: auto;
	padding: 22px;
}

.indovia-panel-loading,
.indovia-panel-error,
.indovia-panel-empty {
	padding: 24px 0;
	color: #666666;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.indovia-panel-content .widget_shopping_cart_content,
.indovia-panel-content .wcboost-wishlist-widget-content {
	display: block;
}

.indovia-panel-content .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.indovia-panel-content .woocommerce-mini-cart-item {
	position: relative;
	padding: 14px 0 14px 28px;
	border-bottom: 1px solid #eeeeee;
}

.indovia-panel-content .woocommerce-mini-cart__buttons,
.indovia-panel-content .buttons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 18px;
}

.indovia-panel-content .button,
.indovia-panel-content .woocommerce-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 6px;
	background: #e21b0c !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-weight: 700;
}

.indovia-drawer-cart,
.indovia-drawer-wishlist {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	gap: 16px;
}

.indovia-drawer-notice {
	padding: 12px 14px;
	border: 1px solid rgba(226, 27, 12, .16);
	border-radius: 8px;
	background: #fff4f1;
	color: #b91c09;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.indovia-drawer-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 52vh;
	gap: 10px;
	color: #666666;
	text-align: center;
}

.indovia-drawer-empty strong {
	color: #111111;
	font-size: 18px;
}

.indovia-drawer-empty span {
	max-width: 260px;
	font-size: 14px;
	line-height: 1.45;
}

.indovia-drawer-items {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.indovia-drawer-item {
	position: relative;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	padding: 0 0 16px;
	border-bottom: 1px solid #eeeeee;
}

.indovia-search-result:hover,
.indovia-search-result:focus-visible,
.indovia-search-quick-link:hover,
.indovia-search-quick-link:focus-visible,
.indovia-search-all:hover,
.indovia-search-all:focus-visible {
	background: #fff8ef;
	outline: 0;
}

.indovia-drawer-item.is-updating {
	opacity: .62;
	pointer-events: none;
}

.indovia-drawer-item__media img {
	display: block;
	width: 82px;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: #f7f7f7;
}

.indovia-drawer-item__body {
	position: relative;
	z-index: 2;
	min-width: 0;
	overflow: visible;
}

.indovia-drawer-item__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	gap: 8px;
	align-items: start;
}

.indovia-drawer-item__title {
	display: block;
	color: #111111;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.indovia-drawer-item__title:hover {
	color: #e21b0c;
}

.indovia-drawer-remove {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #eeeeee;
	border-radius: 50%;
	background: #ffffff;
	color: #666666;
	font-size: 0 !important;
	line-height: 1;
	cursor: pointer;
}

.indovia-drawer-remove:before {
	content: "\00d7";
	color: #666666;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.indovia-drawer-remove:hover {
	border-color: #e21b0c;
	color: #e21b0c;
}

.indovia-drawer-remove:hover:before {
	color: #e21b0c;
}

.indovia-drawer-item__meta {
	margin-top: 6px;
	color: #666666;
	font-size: 12px;
	line-height: 1.45;
}

.indovia-drawer-item__meta dl,
.indovia-drawer-item__meta p {
	margin: 0;
}

.indovia-drawer-item__meta dt,
.indovia-drawer-item__meta dd {
	display: inline;
	margin: 0;
}

.indovia-drawer-item__meta dd:after {
	content: " ";
	display: block;
}

.indovia-drawer-item__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
}

.indovia-drawer-qty {
	display: inline-grid;
	grid-template-columns: 30px 46px 30px;
	height: 34px;
	border: 1px solid #dddddd;
	border-radius: 7px;
	overflow: hidden;
	background: #ffffff;
}

.indovia-drawer-qty button,
.indovia-drawer-qty input {
	width: 100%;
	height: 100%;
	border: 0;
	background: #ffffff;
	color: #111111;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

.indovia-drawer-qty button {
	position: relative;
	font-size: 0 !important;
	cursor: pointer;
}

.indovia-drawer-qty button:before {
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.indovia-drawer-qty button[data-indovia-cart-step="-1"]:before {
	content: "-";
}

.indovia-drawer-qty button[data-indovia-cart-step="1"]:before {
	content: "+";
}

.indovia-drawer-qty button:hover {
	background: #f5f5f5;
	color: #e21b0c;
}

.indovia-drawer-qty button:hover:before {
	color: #e21b0c;
}

.indovia-drawer-qty input {
	border-left: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;
	appearance: textfield;
}

.indovia-drawer-qty input::-webkit-outer-spin-button,
.indovia-drawer-qty input::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.indovia-drawer-item__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	color: #777777;
	font-size: 12px;
	line-height: 1.25;
	text-align: right;
}

.indovia-drawer-item__price strong {
	color: #111111;
	font-size: 14px;
}

.indovia-drawer-options {
	position: relative;
	z-index: 3;
	margin-top: 10px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: #fafafa;
	overflow: visible;
}

.indovia-drawer-options[open] {
	z-index: 6;
}

.indovia-drawer-options summary {
	padding: 9px 11px;
	color: #333333;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.indovia-drawer-options__fields {
	position: relative;
	z-index: 7;
	display: grid;
	gap: 9px;
	padding: 0 11px 11px;
}

.indovia-drawer-options__fields label {
	display: grid;
	gap: 5px;
	margin: 0;
	color: #555555;
	font-size: 12px;
}

.indovia-drawer-options__fields select {
	width: 100%;
	height: 34px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #ffffff;
	color: #111111;
	font-size: 13px;
}

.indovia-drawer-update-options {
	position: relative;
	z-index: 8;
	margin: 0 11px 11px;
	min-height: 34px;
	padding: 0 12px;
	border: 0;
	border-radius: 6px;
	background: #111111;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.indovia-drawer-item.has-option-changes .indovia-drawer-update-options {
	background: #e21b0c;
}

.indovia-drawer-inline-error {
	grid-column: 1 / -1;
	margin-top: 10px;
	padding: 9px 10px;
	border-radius: 7px;
	background: #fff4f1;
	color: #b91c09;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.indovia-drawer-totals {
	display: grid;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
}

.indovia-drawer-totals > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: #666666;
	font-size: 13px;
}

.indovia-drawer-totals strong {
	color: #111111;
	font-size: 16px;
}

.indovia-drawer-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding-top: 4px;
}

.indovia-drawer-button,
.indovia-panel-content .indovia-drawer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid #e21b0c !important;
	border-radius: 7px;
	background: #e21b0c !important;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
}

.indovia-drawer-button--ghost,
.indovia-panel-content .indovia-drawer-button--ghost {
	background: #ffffff !important;
	color: #e21b0c !important;
}

.indovia-drawer-item__controls--wishlist {
	align-items: stretch;
}

.indovia-drawer-stock {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	color: #777777;
	font-size: 13px;
	font-weight: 700;
}

.indovia-drawer-stock.is-out {
	color: #999999;
}

@media (max-width: 430px) {
	.indovia-panel-content {
		padding: 16px;
	}

	.indovia-panel-head {
		min-height: 62px;
		padding: 0 16px;
	}

	.indovia-panel-head h2 {
		font-size: 19px;
	}

	.indovia-drawer-item {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 11px;
	}

	.indovia-drawer-item__media img {
		width: 68px;
	}

	.indovia-drawer-item__controls {
		align-items: flex-start;
		flex-direction: column;
	}

	.indovia-drawer-item__price {
		align-items: flex-start;
		text-align: left;
	}

	.indovia-drawer-qty {
		grid-template-columns: 34px 54px 34px;
	}
}

.indovia-department-panel {
	position: fixed;
	inset: 0;
	z-index: 100002;
	display: none;
	pointer-events: none;
}

.indovia-department-panel.is-open {
	display: block;
	pointer-events: auto;
}

.indovia-department-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(0, 0, 0, .48);
	opacity: 0;
	transition: opacity .2s ease;
}

.indovia-department-panel.is-open .indovia-department-backdrop {
	opacity: 1;
}

.indovia-department-dialog {
	position: absolute;
	left: 12px;
	top: 12px;
	width: min(980px, calc(100vw - 24px));
	max-height: calc(100vh - 24px);
	margin: 0;
	background: #ffffff;
	color: #111111;
	box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
	transform: translateY(10px);
	opacity: 0;
	transition: transform .22s ease;
	overflow: visible;
}

.indovia-department-panel.is-open .indovia-department-dialog {
	transform: translateY(0);
	opacity: 1;
}

.indovia-department-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	padding: 0 18px;
	border-bottom: 1px solid #e4e4e4;
	background: #f6f6f6;
	color: #111111;
}

.indovia-department-head h2 {
	margin: 0;
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.indovia-department-close {
	position: relative;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	color: #111111;
}

.indovia-department-close span {
	position: absolute;
	left: 9px;
	top: 18px;
	width: 20px;
	height: 2px;
	background: currentColor;
}

.indovia-department-close span:first-child {
	transform: rotate(45deg);
}

.indovia-department-close span:last-child {
	transform: rotate(-45deg);
}

.indovia-department-content {
	position: relative;
	min-height: 520px;
	max-height: calc(100vh - 74px);
	overflow: visible;
	-webkit-overflow-scrolling: touch;
}

.indovia-department-menu,
.indovia-department-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.indovia-department-menu {
	position: relative;
	width: 300px;
	min-height: 520px;
	border-right: 1px solid #e7e7e7;
	background: #ffffff;
}

.indovia-department-menu a {
	display: flex;
	align-items: center;
	min-height: 50px;
	padding: 0 42px 0 16px;
	border-bottom: 1px solid #e7e7e7;
	color: #111111 !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
}

.indovia-department-menu > li:hover > a,
.indovia-department-menu > li.is-open > a {
	background: #f5f5f5;
	color: var(--indovia-red, #e21b0c) !important;
}

.indovia-department-menu i {
	flex: 0 0 auto;
	width: 22px;
	margin-right: 9px;
	font-size: 17px;
	text-align: center;
}

.indovia-department-menu > li > .dropdown-submenu,
.indovia-department-menu > li > .sub-menu {
	position: absolute;
	left: 300px;
	top: 0;
	z-index: 2;
	display: none;
	width: min(840px, calc(100vw - 348px));
	min-height: 520px;
	max-height: calc(100vh - 74px);
	padding: 22px 300px 22px 24px;
	overflow: auto;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 260px auto;
	box-shadow: 12px 0 28px rgba(0, 0, 0, .12);
}

.indovia-department-menu > li:hover > .dropdown-submenu,
.indovia-department-menu > li:hover > .sub-menu,
.indovia-department-menu > li.is-open > .dropdown-submenu,
.indovia-department-menu > li.is-open > .sub-menu {
	display: block;
}

.indovia-department-menu .dropdown-submenu > li,
.indovia-department-menu > li > .sub-menu > li {
	margin: 0;
	padding: 0;
}

.indovia-department-menu .mega-menu-content {
	padding: 0;
}

.indovia-department-menu .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.indovia-department-menu .mr-col {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 12px 18px;
}

.indovia-department-menu .col-md-12 {
	flex-basis: 100%;
	max-width: 100%;
}

.indovia-department-menu .col-md-6 {
	flex-basis: 50%;
	max-width: 50%;
}

.indovia-department-menu .col-md-4 {
	flex-basis: 33.333%;
	max-width: 33.333%;
}

.indovia-department-menu .col-md-3 {
	flex-basis: 25%;
	max-width: 25%;
}

.indovia-department-menu .col-md-1-5 {
	flex-basis: 20%;
	max-width: 20%;
}

.indovia-department-menu .menu-item-mega > a {
	min-height: 0;
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	background: transparent !important;
	color: #111111 !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
}

.indovia-department-menu .mega-menu-submenu .sub-menu,
.indovia-department-menu .menu-item-mega .sub-menu {
	display: block;
	position: static;
	min-height: 0;
	max-height: none;
	width: auto;
	padding: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
}

.indovia-department-menu .mega-menu-submenu .sub-menu a,
.indovia-department-menu .menu-item-mega .sub-menu a,
.indovia-department-menu > li > .sub-menu a {
	display: block;
	min-height: 28px;
	padding: 4px 0;
	border: 0;
	background: transparent !important;
	color: #666666 !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
}

.indovia-department-menu .mega-menu-submenu .sub-menu a,
.indovia-department-menu .menu-item-mega .sub-menu a {
	padding-left: 16px;
}

.indovia-department-menu .mega-menu-submenu .sub-menu a:hover,
.indovia-department-menu .menu-item-mega .sub-menu a:hover,
.indovia-department-menu > li > .sub-menu a:hover {
	color: var(--indovia-red, #e21b0c) !important;
}

.indovia-department-menu .mega-content {
	font-size: 13px;
	line-height: 1.4;
}

.indovia-department-menu .mega-content img {
	display: block;
	max-width: 100%;
	height: auto;
}

.indovia-department-menu .hide-text {
	font-size: 0 !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu > li.is-mega-menu > .dropdown-submenu,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu > li.is-mega-menu > .dropdown-submenu {
	min-height: 418px;
	padding-right: 300px !important;
	background-repeat: no-repeat !important;
	background-position: right bottom !important;
	background-size: 310px auto !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .dropdown-submenu a,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .dropdown-submenu a {
	color: #222222;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.45;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .dropdown-submenu .sub-menu a,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .dropdown-submenu .sub-menu a {
	padding-left: 16px !important;
	color: #666666;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .dropdown-submenu a:hover,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .dropdown-submenu a:hover {
	color: var(--indovia-red, #e21b0c) !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .row,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .row {
	display: grid !important;
	grid-template-columns: minmax(0, 220px) minmax(0, 270px);
	column-count: initial;
	column-gap: 44px;
	row-gap: 0;
	align-items: start;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	flex: initial !important;
	padding: 0 0 8px !important;
	break-inside: avoid;
	page-break-inside: avoid;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .menu-item-mega > a,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .menu-item-mega > a {
	display: block !important;
	white-space: nowrap;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(1),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / span 6;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2),
body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3),
body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4) {
	grid-column: 1;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(n+5),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(n+5) {
	grid-column: 2;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2) {
	grid-row: 7;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3) {
	grid-row: 8;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4) {
	grid-row: 9;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(5),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(5) {
	grid-row: 1;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(6),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(6) {
	grid-row: 2;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(7),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(7) {
	grid-row: 3;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(8),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(8) {
	grid-row: 4;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(9),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(9) {
	grid-row: 5;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(10),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(10) {
	grid-row: 6;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(11),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(11) {
	grid-row: 7;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(12),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(12) {
	grid-row: 8;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(13),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(13) {
	grid-row: 9;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-submenu,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4623 > .dropdown-submenu .mega-menu-submenu {
	margin-bottom: 8px;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu {
	background-position: right 18px bottom 8px !important;
	background-size: 292px auto !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .row,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .row {
	display: grid !important;
	grid-template-columns: minmax(0, 220px) minmax(0, 250px);
	column-gap: 34px;
	row-gap: 0;
	align-items: start;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	flex: initial !important;
	padding: 0 0 8px !important;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .menu-item-mega > a,
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .menu-item-mega > a {
	display: block !important;
	white-space: nowrap;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(1),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / span 5;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(2) {
	grid-column: 1;
	grid-row: 6;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(3) {
	grid-column: 1;
	grid-row: 7;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(5),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(5) {
	grid-column: 1;
	grid-row: 8;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(7),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(7) {
	grid-column: 1;
	grid-row: 9;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(9),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(9) {
	grid-column: 1;
	grid-row: 10;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(4) {
	grid-column: 2;
	grid-row: 1;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(6),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(6) {
	grid-column: 2;
	grid-row: 2;
}

body.indovia-ajax-header-active .main-menu .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(8),
body.indovia-ajax-header-active #site-header.minimized .header-main .products-cats-menu .menu-item-4660 > .dropdown-submenu .mega-menu-content .mr-col:nth-child(8) {
	grid-column: 2;
	grid-row: 3;
}

.indovia-submenu-toggle {
	position: absolute;
	right: 6px;
	top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	color: #555555;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
}

.indovia-department-menu .menu-item-has-children {
	position: relative;
}

.indovia-department-menu .menu-item-has-children > .indovia-submenu-toggle:before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.indovia-department-menu .menu-item-has-children.is-open > .indovia-submenu-toggle:before {
	transform: rotate(135deg);
}

body.indovia-panel-open {
	overflow: hidden;
}

body.indovia-department-open {
	overflow: hidden;
}

body.display-mobile-menu {
	position: fixed !important;
	left: 0;
	right: auto;
	top: var(--indovia-mobile-menu-scroll-top, 0px);
	width: var(--indovia-mobile-menu-scroll-width, 100%);
	overflow: hidden;
}

.indovia-martfury-mobile-nav {
	display: none;
}

.indovia-native-mobile-nav-disabled {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.indovia-ajax-header-active #topbar,
body.indovia-ajax-header-active #site-header,
body.indovia-ajax-header-active .site-header,
body.indovia-ajax-header-active .header-main,
body.indovia-ajax-header-active .header-bar,
body.indovia-ajax-header-active .header-layout-3,
body.indovia-ajax-header-active .indovia-mobile-full-header {
	display: none !important;
}

body.indovia-ajax-header-active .indovia-global-header {
	display: block !important;
}

@media (max-width: 1199px) {
	body.indovia-ajax-header-active #topbar,
	body.indovia-ajax-header-active #site-header,
	body.indovia-ajax-header-active .indovia-mobile-full-header {
		display: none !important;
	}

	body.indovia-ajax-header-active #mf-newsletter-popup,
	body.indovia-ajax-header-active .mfp-wrap,
	body.indovia-ajax-header-active .mfp-bg {
		display: none !important;
	}

	.indovia-global-header {
		display: block;
	}

	body.indovia-mobile-bottom-nav-active {
		padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
	}

	body.indovia-mobile-bottom-nav-active #mf-navigation-mobile {
		display: none !important;
	}

	.indovia-mobile-bottom-nav {
		display: block;
	}

	body.display-mobile-menu .indovia-mobile-bottom-nav,
	body.indovia-panel-open .indovia-mobile-bottom-nav,
	body.indovia-department-open .indovia-mobile-bottom-nav {
		display: none;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile {
		height: calc(62px + env(safe-area-inset-bottom, 0px));
		min-height: calc(62px + env(safe-area-inset-bottom, 0px));
		padding-bottom: env(safe-area-inset-bottom, 0px);
		color: #333333;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-list {
		height: 62px;
		min-height: 62px;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-icon {
		height: 62px;
		padding: 7px 6px 6px;
		color: #333333 !important;
		font-size: 11.5px;
		font-weight: 500;
		line-height: 1.1;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-icon:hover,
	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-icon:focus,
	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-icon:active {
		color: var(--mf-background-primary-color, #dd2400) !important;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile .navigation-icon i {
		margin-bottom: 3px;
		color: inherit !important;
		font-size: 23px;
		line-height: 23px;
	}

	body.indovia-ajax-header-active #mf-navigation-mobile .mini-item-counter {
		background: var(--mf-background-primary-color, #dd2400);
		color: #ffffff;
	}

	.indovia-martfury-mobile-nav.primary-mobile-nav {
		display: block !important;
		position: fixed !important;
		left: -475px !important;
		top: 0 !important;
		width: 475px;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		background-color: #ffffff;
		color: #aaaaaa;
		transition: transform .35s ease;
		z-index: 1000002;
	}

	body.display-mobile-menu .indovia-martfury-mobile-nav.primary-mobile-nav {
		transform: translate3d(475px, 0, 0);
	}

	body.display-mobile-menu #mf-navigation-mobile {
		display: none !important;
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .mobile-nav-header {
		display: flex !important;
		align-items: center !important;
		gap: 12px;
		min-height: 60px;
		padding: 8px 8px 8px 16px !important;
		background: var(--indovia-red, #e51f2d) !important;
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .mobile-nav-header__title {
		flex: 1 1 auto;
		margin: 0 !important;
		color: #20242b !important;
		font-size: 18px;
		line-height: 1.2;
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close {
		position: relative !important;
		top: auto !important;
		right: auto !important;
		display: block !important;
		visibility: visible !important;
		flex: 0 0 44px;
		float: none !important;
		width: 44px !important;
		min-width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		border: 1px solid rgba(255, 255, 255, .72) !important;
		border-radius: 6px !important;
		background: #ffffff !important;
		box-shadow: none !important;
		cursor: pointer;
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close::before,
	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close::after {
		position: absolute;
		left: 11px;
		top: 20px;
		width: 20px;
		height: 2px;
		border-radius: 999px;
		background: var(--indovia-red-dark, #b81822) !important;
		content: "";
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close::before {
		transform: rotate(45deg);
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close::after {
		transform: rotate(-45deg);
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close:hover,
	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-nav-close:focus-visible {
		outline: 3px solid rgba(255, 255, 255, .58) !important;
		outline-offset: 1px;
	}

	.indovia-martfury-mobile-nav .indovia-mobile-department-tree,
	.indovia-martfury-mobile-nav .indovia-mobile-department-tree ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.indovia-martfury-mobile-nav .indovia-mobile-department-tree .menu-item-has-children {
		position: relative;
	}

	.indovia-martfury-mobile-nav .indovia-mobile-department-tree .menu-item-has-children > a {
		padding-right: 62px !important;
	}

	.indovia-mobile-submenu-toggle {
		position: absolute;
		top: 2px;
		right: 6px;
		z-index: 2;
		display: grid;
		width: 44px;
		min-width: 44px;
		height: 44px;
		min-height: 44px;
		padding: 0;
		place-items: center;
		border: 1px solid rgba(184, 24, 34, .38);
		border-radius: 6px;
		background: #ffffff;
		color: var(--indovia-red-dark, #b81822);
		font: inherit;
		cursor: pointer;
	}

	.indovia-mobile-submenu-toggle:hover,
	.indovia-mobile-submenu-toggle:focus-visible {
		border-color: rgba(229, 31, 45, .45);
		color: #b81822;
		outline: 2px solid rgba(229, 31, 45, .18);
		outline-offset: 1px;
	}

	.indovia-mobile-submenu-toggle__glyph {
		display: block;
		font-size: 24px;
		font-weight: 800;
		line-height: 1;
	}

	body.indovia-ajax-header-active .indovia-martfury-mobile-nav .indovia-mobile-submenu-toggle > .indovia-mobile-submenu-toggle__glyph {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: var(--indovia-red-dark, #b81822) !important;
		-webkit-text-fill-color: var(--indovia-red-dark, #b81822) !important;
		font-size: 24px !important;
		font-weight: 800 !important;
		line-height: 1 !important;
		text-indent: 0 !important;
	}

	.indovia-martfury-mobile-nav .indovia-mobile-department-tree > li > ul > li > a {
		padding-left: 32px !important;
	}

	.indovia-martfury-mobile-nav .indovia-mobile-department-tree > li > ul > li > ul > li > a {
		padding-left: 48px !important;
	}
}

@media (min-width: 900px) and (orientation: landscape) {
	body.indovia-ajax-header-active {
		padding-bottom: 0 !important;
	}

	body.indovia-ajax-header-active #topbar,
	body.indovia-ajax-header-active #site-header {
		display: none !important;
	}

	body.indovia-ajax-header-active .indovia-global-header,
	body.indovia-ajax-header-active .indovia-header-spacer {
		display: block !important;
	}

	body.indovia-ajax-header-active .indovia-mobile-full-header,
	body.indovia-mobile-bottom-nav-active .indovia-mobile-bottom-nav,
	body.indovia-mobile-bottom-nav-active #mf-navigation-mobile,
	body.indovia-ajax-header-active .indovia-martfury-mobile-nav.primary-mobile-nav {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.indovia-global-header {
		background: transparent;
		padding: 0;
	}

	.indovia-header-shell {
		max-width: 100%;
	}

	.indovia-primary-row {
		grid-template-columns: 64px auto minmax(360px, 1fr) auto;
		grid-template-areas: "menu brand search actions";
		padding: 26px 48px 22px;
		column-gap: 34px;
	}

	.indovia-brand img {
		width: 280px;
	}

	.indovia-search-form .psearch-content {
		height: 54px;
		grid-template-columns: minmax(0, 1fr) 64px;
	}

	.indovia-search-form .search-field {
		height: 54px !important;
		min-height: 54px !important;
		line-height: 54px !important;
		font-size: 17px !important;
	}

	.indovia-search-submit {
		width: 64px !important;
		height: 54px !important;
		min-width: 64px !important;
		min-height: 54px !important;
		flex-basis: 64px !important;
	}

	.indovia-utility-row {
		max-width: 100%;
		min-height: 56px;
	}

	.indovia-utility-row a {
		height: 56px;
		font-size: 13px;
	}

	.indovia-global-header.is-scrolled {
		padding: 0;
		background: transparent;
	}

	.indovia-global-header.is-scrolled .indovia-header-shell {
		max-width: min(1440px, calc(100vw - 112px));
		border-radius: 12px 12px 0 0;
		box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
	}

	.indovia-global-header.is-scrolled .indovia-primary-row {
		grid-template-columns: 62px minmax(320px, 1fr) auto;
		grid-template-areas: "menu search actions";
		column-gap: 34px;
		padding: 14px 36px;
	}

	.indovia-global-header.is-scrolled .indovia-search-form .psearch-content {
		height: 58px;
		grid-template-columns: minmax(0, 1fr) 68px;
		border-radius: 9px;
	}

	.indovia-global-header.is-scrolled .indovia-search-form .search-field {
		height: 58px !important;
		min-height: 58px !important;
		line-height: 58px !important;
		font-size: 14px !important;
		padding: 0 14px !important;
	}

	.indovia-global-header.is-scrolled .indovia-search-submit {
		width: 68px !important;
		height: 58px !important;
		min-width: 68px !important;
		min-height: 58px !important;
		flex-basis: 68px !important;
	}
}

@media (max-width: 767px) {
	body.indovia-ajax-header-active #mf-newsletter-popup {
		display: none !important;
	}

	.indovia-martfury-mobile-nav.primary-mobile-nav {
		width: 320px;
		left: -320px !important;
	}

	body.display-mobile-menu .indovia-martfury-mobile-nav.primary-mobile-nav {
		transform: translate3d(320px, 0, 0);
	}

	.indovia-department-dialog {
		left: 8px;
		top: 8px;
		width: calc(100vw - 16px);
		max-height: calc(100vh - 16px);
		overflow: hidden;
	}

	.indovia-department-content {
		min-height: 0;
		max-height: calc(100vh - 66px);
		overflow: auto;
	}

	.indovia-department-menu {
		width: 100%;
		min-height: 0;
		border-right: 0;
	}

	.indovia-department-menu > li > .dropdown-submenu,
	.indovia-department-menu > li > .sub-menu {
		position: static;
		width: 100%;
		min-height: 0;
		max-height: none;
		padding: 14px 18px 18px 48px;
		overflow: visible;
		box-shadow: none;
		background-size: 150px auto;
		background-position: right bottom !important;
	}

	.indovia-department-menu > li:hover > .dropdown-submenu,
	.indovia-department-menu > li:hover > .sub-menu {
		display: none;
	}

	.indovia-department-menu > li.is-open > .dropdown-submenu,
	.indovia-department-menu > li.is-open > .sub-menu {
		display: block;
	}

	.indovia-department-menu .row {
		display: block;
		margin: 0;
	}

	.indovia-department-menu .mr-col,
	.indovia-department-menu .col-md-12,
	.indovia-department-menu .col-md-6,
	.indovia-department-menu .col-md-4,
	.indovia-department-menu .col-md-3,
	.indovia-department-menu .col-md-1-5 {
		max-width: 100%;
		padding: 0 0 16px;
	}

	.indovia-department-menu .menu-item-mega > a {
		font-size: 13px;
	}

	.indovia-department-menu .mega-menu-submenu .sub-menu a,
	.indovia-department-menu .menu-item-mega .sub-menu a,
	.indovia-department-menu > li > .sub-menu a {
		font-size: 12px;
	}

	.indovia-martfury-mobile-nav .indovia-department-menu > li > .dropdown-submenu .menu-item-mega > a,
	.indovia-martfury-mobile-nav .indovia-department-menu > li > .sub-menu > li > a {
		padding-left: 16px !important;
		font-weight: 400 !important;
	}

	.indovia-martfury-mobile-nav .indovia-department-menu .mega-menu-submenu .sub-menu a,
	.indovia-martfury-mobile-nav .indovia-department-menu .menu-item-mega .sub-menu a {
		padding-left: 28px !important;
		font-weight: 400 !important;
	}

	.indovia-martfury-mobile-nav .menu > li > .sub-menu > li > a {
		padding-left: 16px !important;
		font-weight: 400 !important;
	}

	.indovia-martfury-mobile-nav .menu > li > .sub-menu > li > .sub-menu > li > a {
		padding-left: 28px !important;
		font-weight: 400 !important;
	}

	.indovia-primary-row {
		grid-template-columns: 44px minmax(0, 1fr) 114px;
		column-gap: 8px;
		justify-content: stretch;
		padding: 24px 20px 20px;
	}

	.indovia-brand {
		justify-self: center;
	}

	.indovia-brand img {
		width: min(170px, 100%);
	}

	.indovia-header-actions {
		gap: 6px;
		width: 114px;
		min-width: 114px;
		justify-self: end;
	}

	.indovia-action,
	.indovia-action svg {
		width: 34px;
		height: 34px;
	}

	.indovia-count {
		right: -5px;
		bottom: 0;
		min-width: 17px;
		height: 17px;
		padding: 0 4px;
		font-size: 10px;
		line-height: 17px;
	}

	.indovia-search-wrap {
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
	}

	.indovia-search-form .psearch-content {
		grid-template-columns: minmax(0, 1fr) 58px;
		height: 48px;
		width: 100% !important;
		max-width: 100% !important;
	}

	.indovia-search-form .search-field {
		height: 48px !important;
		min-height: 48px !important;
		padding: 0 18px !important;
		font-size: 15px !important;
		line-height: 48px !important;
	}

	.indovia-search-submit {
		width: 58px !important;
		height: 48px !important;
		min-width: 58px !important;
		min-height: 48px !important;
		flex-basis: 58px !important;
	}

	.indovia-global-header.is-scrolled .indovia-primary-row {
		grid-template-columns: 42px minmax(0, 1fr) 78px;
		column-gap: 10px;
		padding: 10px 16px;
	}

	.indovia-global-header.is-scrolled .indovia-search-form .search-field {
		font-size: 13px !important;
		padding: 0 12px !important;
	}

	.indovia-global-header.is-scrolled .indovia-header-actions {
		width: 78px;
		min-width: 78px;
	}

	.indovia-utility-row a {
		gap: 4px;
		font-size: 12px;
	}

	.indovia-utility-row svg {
		width: 13px;
		height: 13px;
	}
}

@media (max-width: 479px) {
	.indovia-martfury-mobile-nav.primary-mobile-nav {
		width: 280px;
		left: -280px !important;
	}

	body.display-mobile-menu .indovia-martfury-mobile-nav.primary-mobile-nav {
		transform: translate3d(280px, 0, 0);
	}
}

@media (max-width: 430px) {
	body.indovia-ajax-header-active #mf-newsletter-popup {
		display: none !important;
	}

	.indovia-primary-row {
		grid-template-columns: 42px minmax(0, 1fr) 104px;
		column-gap: 8px;
		justify-content: stretch;
		padding: 24px 16px 20px;
	}

	.indovia-brand img {
		width: min(150px, 100%);
	}

	.indovia-header-actions {
		gap: 4px;
		width: 104px;
		min-width: 104px;
	}

	.indovia-action,
	.indovia-action svg {
		width: 32px;
		height: 32px;
	}

	.indovia-count {
		right: -5px;
		bottom: 0;
		min-width: 17px;
		height: 17px;
		padding: 0 4px;
		font-size: 10px;
		line-height: 17px;
	}

	.indovia-search-wrap {
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
	}

	.indovia-search-form .psearch-content {
		grid-template-columns: minmax(0, 1fr) 58px;
		height: 48px;
		width: 100% !important;
		max-width: 100% !important;
	}

	.indovia-search-form .search-field {
		height: 48px !important;
		min-height: 48px !important;
		padding: 0 18px !important;
		font-size: 15px !important;
		line-height: 48px !important;
	}

	.indovia-search-submit {
		width: 58px !important;
		height: 48px !important;
		min-width: 58px !important;
		min-height: 48px !important;
		flex-basis: 58px !important;
	}

	.indovia-utility-row a {
		gap: 3px;
		font-size: 11px;
	}

	.indovia-utility-row svg {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 360px) {
	.indovia-primary-row {
		padding-left: 12px;
		padding-right: 12px;
		grid-template-columns: 38px minmax(0, 1fr) 104px;
	}

	.indovia-brand img {
		width: min(136px, 100%);
	}

	.indovia-header-actions {
		gap: 4px;
		width: 104px;
		min-width: 104px;
	}

	.indovia-search-wrap {
		width: 100%;
		max-width: 100%;
	}

	.indovia-utility-row a {
		font-size: 11px;
	}
}

/* Hybrid Premium V2 visual layer: keeps existing drawer/search/cart behavior intact. */
.indovia-global-header {
	--indovia-red: #e51f2d;
	--indovia-red-dark: #b81822;
	--indovia-ink: #20242b;
	--indovia-hamburger-ink: #20242b;
	--indovia-muted: #66717e;
	--indovia-cream: #fff7ee;
	--indovia-ivory: #fffdf9;
	--indovia-line: rgba(32, 36, 43, .1);
	--indovia-soft-shadow: 0 18px 45px rgba(55, 38, 18, .08);
	background: linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
	color: var(--indovia-ink);
	font-family: "Inter", "Plus Jakarta Sans", "Nunito Sans", "Work Sans", Arial, sans-serif;
	box-shadow: 0 1px 0 rgba(32, 36, 43, .08);
}

.indovia-header-shell {
	background: transparent;
}

.indovia-primary-row {
	grid-template-columns: 44px minmax(150px, 230px) minmax(280px, 1fr) auto;
	grid-template-areas: "menu brand search actions";
	align-items: center;
	gap: 18px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 16px 36px 12px;
}

.indovia-menu-button {
	width: 38px;
	height: 38px;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	color: var(--indovia-ink);
}

.indovia-menu-button:hover,
.indovia-menu-button:focus {
	border-color: rgba(229, 31, 45, .16);
	background: rgba(229, 31, 45, .06);
}

.indovia-menu-button span {
	width: 18px;
	height: 2px;
	margin-left: 0;
}

body.indovia-ajax-header-active .indovia-global-header .indovia-menu-button > span {
	background: var(--indovia-hamburger-ink) !important;
	color: var(--indovia-hamburger-ink) !important;
}

.indovia-brand {
	color: var(--indovia-ink) !important;
}

.indovia-brand img {
	width: min(214px, 100%);
	max-height: 36px;
	object-fit: contain;
}

.indovia-brand-fallback {
	color: var(--indovia-ink);
}

.indovia-search-form .psearch-content,
.indovia-global-header.is-scrolled .indovia-search-form .psearch-content {
	height: 40px;
	border: 1px solid rgba(32, 36, 43, .12);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(55, 38, 18, .05);
}

.indovia-search-form .search-field,
.indovia-global-header.is-scrolled .indovia-search-form .search-field {
	height: 38px !important;
	min-height: 38px !important;
	padding: 0 18px !important;
	background: transparent !important;
	color: var(--indovia-ink) !important;
	font-size: 13px !important;
	line-height: 38px !important;
}

.indovia-search-form .search-field::placeholder {
	color: #8a929d;
}

.indovia-search-submit,
.indovia-global-header.is-scrolled .indovia-search-submit {
	width: 72px !important;
	min-width: 72px !important;
	height: 34px !important;
	min-height: 34px !important;
	flex-basis: 72px !important;
	align-self: center !important;
	margin-right: 3px !important;
	border-radius: 999px !important;
	background: var(--indovia-red) !important;
	color: #ffffff !important;
}

.indovia-search-submit::after {
	content: "Search";
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.indovia-search-submit svg {
	display: none;
}

.indovia-header-actions {
	gap: 14px;
	min-width: 184px;
}

.indovia-action {
	flex-direction: column;
	gap: 3px;
	width: 48px;
	height: 42px;
	color: var(--indovia-ink) !important;
	font-size: 10px;
	font-weight: 650;
	line-height: 1;
}

.indovia-action:hover,
.indovia-action:focus {
	color: var(--indovia-red) !important;
}

.indovia-action svg,
.indovia-global-header.is-scrolled .indovia-action svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.indovia-action-label {
	display: block;
	color: inherit;
	font-size: 10px;
	font-weight: 650;
	letter-spacing: 0;
}

.indovia-count {
	right: 3px;
	top: 1px;
	bottom: auto;
	min-width: 15px;
	height: 15px;
	padding: 0 4px;
	background: var(--indovia-red);
	color: #fff;
	font-size: 9px;
	font-weight: 850;
	line-height: 15px;
}

.indovia-utility-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 42px;
	border-top: 1px solid rgba(32, 36, 43, .07);
	background: rgba(255, 247, 238, .78);
	box-shadow: none;
}

.indovia-category-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	padding: 0 13px;
	border: 0;
	border-radius: 6px;
	background: var(--indovia-red);
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	cursor: pointer;
}

.indovia-category-trigger:hover,
.indovia-category-trigger:focus {
	background: var(--indovia-red-dark);
}

.indovia-category-trigger__icon,
.indovia-category-trigger__icon::before,
.indovia-category-trigger__icon::after {
	display: block;
	width: 12px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
	content: "";
}

.indovia-category-trigger__icon {
	position: relative;
}

.indovia-category-trigger__icon::before,
.indovia-category-trigger__icon::after {
	position: absolute;
	left: 0;
}

.indovia-category-trigger__icon::before {
	top: -4px;
}

.indovia-category-trigger__icon::after {
	top: 4px;
}

.indovia-utility-menu {
	width: auto;
	min-height: 42px;
	gap: 22px;
	padding: 0;
}

.indovia-utility-menu > li {
	padding: 0;
}

.indovia-utility-menu > li + li::before {
	display: none;
}

.indovia-utility-row a,
.indovia-utility-menu > li > a {
	height: 42px;
	color: var(--indovia-ink) !important;
	font-size: 12px;
	font-weight: 750;
}

.indovia-utility-row a:hover,
.indovia-utility-row a:focus,
.indovia-utility-menu > li > a:hover,
.indovia-utility-menu > li > a:focus {
	color: var(--indovia-red) !important;
}

.indovia-utility-menu .sub-menu {
	border: 1px solid rgba(32, 36, 43, .1);
	border-radius: 8px;
	background: #fffdf9;
	box-shadow: 0 18px 36px rgba(55, 38, 18, .12);
}

.indovia-utility-menu .sub-menu a {
	color: var(--indovia-ink) !important;
}

.indovia-global-header.is-scrolled {
	background: transparent;
}

.indovia-global-header.is-scrolled .indovia-header-shell {
	max-width: min(1360px, calc(100vw - 40px));
	border: 1px solid rgba(32, 36, 43, .1);
	border-radius: 0 0 12px 12px;
	background: #fffdf9;
	box-shadow: 0 10px 28px rgba(55, 38, 18, .1);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.indovia-global-header.is-scrolled .indovia-primary-row {
	grid-template-columns: 38px minmax(118px, 150px) minmax(280px, 1fr) auto;
	grid-template-areas: "menu brand search actions";
	column-gap: 12px;
	padding: 10px 22px;
}

.indovia-global-header.is-scrolled .indovia-brand {
	display: inline-flex;
	min-width: 0;
	overflow: hidden;
	justify-self: start;
}

.indovia-global-header.is-scrolled .indovia-brand img {
	width: min(150px, 100%);
	max-height: 28px;
}

.indovia-global-header.is-scrolled .indovia-action-label {
	display: none !important;
}

@media (min-width: 768px) {
	body.indovia-ajax-header-active .indovia-global-header.is-scrolled .indovia-menu-button {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		color: var(--indovia-hamburger-ink) !important;
	}
}

body.woocommerce-cart .indovia-global-header.is-scrolled,
body.woocommerce-checkout .indovia-global-header.is-scrolled,
body.indovia-purchase-surface .indovia-global-header.is-scrolled {
	background: #fffdf9 !important;
}

.indovia-department-dialog {
	border: 1px solid rgba(32, 36, 43, .1);
	border-radius: 8px;
	background: #fffdf9;
	box-shadow: 0 24px 70px rgba(32, 36, 43, .2);
}

.indovia-department-head {
	background: #fffdf9;
	color: var(--indovia-ink);
}

.indovia-department-menu {
	border-right-color: rgba(32, 36, 43, .09);
	background: #fffdf9;
}

.indovia-department-menu a {
	border-bottom-color: rgba(32, 36, 43, .08);
	color: var(--indovia-ink) !important;
	font-weight: 650;
}

.indovia-department-menu i {
	display: inline-grid;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	border-radius: 999px;
	background: rgba(229, 31, 45, .08);
	color: var(--indovia-red);
	place-items: center;
}

.indovia-department-menu > li:hover > a,
.indovia-department-menu > li.is-open > a {
	background: #fff4ea;
	color: var(--indovia-red) !important;
}

.indovia-department-menu > li > .dropdown-submenu,
.indovia-department-menu > li > .sub-menu {
	background-color: #fffdf9;
	box-shadow: 14px 0 30px rgba(55, 38, 18, .1);
}

@media (max-width: 767px) {
	.indovia-global-header {
		background: #fffdf9;
	}

	.indovia-primary-row {
		grid-template-columns: 34px minmax(0, 1fr) 102px;
		grid-template-areas:
			"menu brand actions"
			"search search search";
		gap: 8px;
		padding: 12px 14px 12px;
	}

	.indovia-brand {
		justify-self: start;
	}

	.indovia-brand img {
		width: min(154px, 100%);
		max-height: 30px;
	}

	.indovia-header-actions {
		gap: 3px;
		width: 102px;
		min-width: 102px;
	}

	.indovia-action,
	.indovia-action svg {
		width: 32px;
		height: 32px;
	}

	.indovia-action-label {
		display: none;
	}

	.indovia-menu-button {
		width: 34px;
		height: 34px;
	}

	.indovia-search-form .psearch-content {
		grid-template-columns: minmax(0, 1fr) 42px;
		height: 40px;
	}

	.indovia-search-form .search-field[type="text"],
	.indovia-global-header.is-scrolled .indovia-search-form .search-field[type="text"] {
		width: 100% !important;
		min-width: 0 !important;
		height: 38px !important;
		min-height: 38px !important;
		padding: 0 14px !important;
		font-size: 13px !important;
		line-height: 38px !important;
	}

	.indovia-search-submit,
	.indovia-global-header.is-scrolled .indovia-search-submit {
		width: 36px !important;
		min-width: 36px !important;
		height: 34px !important;
		min-height: 34px !important;
		flex-basis: 36px !important;
	}

	.indovia-search-submit::after {
		content: "";
	}

	.indovia-search-submit svg {
		display: block;
		width: 17px;
		height: 17px;
		stroke-width: 2.5;
	}

	.indovia-utility-row {
		display: none;
	}

	.indovia-global-header.is-scrolled .indovia-primary-row {
		grid-template-columns: 34px 38px minmax(0, 1fr) 66px;
		grid-template-areas: "menu brand search actions";
		column-gap: 6px;
		row-gap: 0;
		padding: 8px 10px;
	}

	.indovia-global-header.is-scrolled .indovia-brand {
		display: inline-flex;
		width: 38px;
		max-width: 38px;
		min-width: 0;
		overflow: hidden;
		justify-self: start;
	}

	.indovia-global-header.is-scrolled .indovia-brand img {
		width: 142px;
		max-width: none;
		flex: 0 0 142px;
	}

	.indovia-global-header.is-scrolled .indovia-menu-button {
		display: inline-flex !important;
		width: 34px;
		height: 34px;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		color: var(--indovia-hamburger-ink) !important;
	}

	.indovia-global-header.is-scrolled .indovia-menu-button span {
		width: 18px;
		height: 2px;
		margin-left: 0;
	}

	.indovia-global-header.is-scrolled .indovia-search-wrap,
	.indovia-global-header.is-scrolled .indovia-search-wrap .product-extra-search,
	.indovia-global-header.is-scrolled .indovia-search-form {
		width: 100% !important;
		min-width: 0 !important;
		height: 36px;
		justify-self: stretch;
	}

	body.indovia-ajax-header-active .indovia-global-header.is-scrolled .indovia-search-form .search-wrapper {
		display: block !important;
		flex: 1 1 auto !important;
		width: auto !important;
		min-width: 0 !important;
	}

	body.indovia-ajax-header-active .indovia-global-header.is-scrolled .indovia-search-form .psearch-content {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 32px;
		width: 100% !important;
		min-width: 0 !important;
		height: 36px;
		border-color: rgba(32, 36, 43, .14);
		border-radius: 999px;
		background: #ffffff;
		box-shadow: 0 4px 14px rgba(55, 38, 18, .06);
	}

	.indovia-global-header.is-scrolled .indovia-search-form .search-field[type="text"] {
		height: 34px !important;
		min-height: 34px !important;
		padding: 0 9px !important;
		font-size: 11px !important;
		line-height: 34px !important;
	}

	.indovia-global-header.is-scrolled .indovia-search-submit {
		width: 32px !important;
		min-width: 32px !important;
		height: 32px !important;
		min-height: 32px !important;
		flex-basis: 32px !important;
		margin: 1px !important;
		border: 0 !important;
		border-radius: 999px !important;
		background: var(--indovia-red) !important;
		color: #ffffff !important;
	}

	.indovia-global-header.is-scrolled .indovia-search-submit:hover,
	.indovia-global-header.is-scrolled .indovia-search-submit:focus-visible {
		border-color: rgba(229, 31, 45, .18) !important;
		background: rgba(229, 31, 45, .07) !important;
	}

	.indovia-global-header.is-scrolled .indovia-header-actions {
		gap: 2px;
		width: 66px;
		min-width: 66px;
	}

	.indovia-global-header.is-scrolled .indovia-action-account {
		display: none !important;
	}

	.indovia-global-header.is-scrolled .indovia-header-actions .indovia-action-wishlist,
	.indovia-global-header.is-scrolled .indovia-header-actions .indovia-action-cart {
		display: inline-flex !important;
		flex: 0 0 32px !important;
		width: 32px !important;
		height: 32px !important;
	}

	.indovia-martfury-mobile-nav .menu.indovia-mobile-department-tree > li > .sub-menu > li > a {
		padding-left: 32px !important;
	}

	.indovia-martfury-mobile-nav .menu.indovia-mobile-department-tree > li > .sub-menu > li > .sub-menu > li > a {
		padding-left: 48px !important;
	}
}
