.jenh-overlay-menu {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	font-family: inherit;
	--jenh-overlay-menu-column-width: 310px;
}

.jenh-overlay-menu *,
.jenh-overlay-menu *::before,
.jenh-overlay-menu *::after {
	box-sizing: border-box;
}

.jenh-overlay-menu__button {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.16);
	color: currentColor;
	font: inherit;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
}

.jenh-overlay-menu__button:hover,
.jenh-overlay-menu__button:focus-visible,
.jenh-overlay-menu.is-open .jenh-overlay-menu__button {
	background: rgba(255, 255, 255, 0.26);
	outline: none;
}

.jenh-overlay-menu__button-chevron,
.jenh-overlay-menu__chevron {
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	flex: 0 0 auto;
	opacity: 0.72;
}

.jenh-overlay-menu__chevron {
	transform: rotate(-45deg);
	margin-left: auto;
}

.jenh-overlay-menu__panel {
	position: fixed;
	top: var(--jenh-overlay-menu-panel-top, 96px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	min-width: min(960px, calc(100vw - 24px));
	max-width: calc(100vw - 24px);
	max-height: calc(100vh - var(--jenh-overlay-menu-panel-top, 96px) - 16px);
	overflow: hidden;
	background: #fff;
	color: #1c1c1c;
	border: 1px solid #e7e7e7;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.jenh-overlay-menu__panel[hidden] {
	display: none;
}

.jenh-overlay-menu__close {
	display: none;
}

.jenh-overlay-menu__adminbar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-bottom: 1px solid #ececec;
	background: #f7f7f7;
	font-size: 13px;
}

.jenh-overlay-menu__edit-toggle,
.jenh-overlay-menu__sort-toggle {
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	background: #fff;
	color: #1f1f1f;
	cursor: pointer;
	font: inherit;
}

.jenh-overlay-menu__edit-toggle[aria-pressed="true"],
.jenh-overlay-menu__sort-toggle[aria-pressed="true"] {
	background: #1f2933;
	border-color: #1f2933;
	color: #fff;
}

.jenh-overlay-menu__edit-status {
	color: #646970;
}

.jenh-overlay-menu.is-editing .jenh-overlay-menu__item[data-jenh-term-id],
.jenh-overlay-menu.is-editing .jenh-overlay-menu-mobile__link[data-jenh-term-id] {
	cursor: text;
}

.jenh-overlay-menu.is-sorting .jenh-overlay-menu__item[data-jenh-term-id] {
	cursor: grab;
	position: relative;
}

.jenh-overlay-menu.is-sorting .jenh-overlay-menu__item[data-jenh-term-id]::before {
	content: "\22EE\22EE";
	flex: 0 0 auto;
	color: #7a7f85;
	font-size: 12px;
	letter-spacing: -2px;
	margin-right: 2px;
}

.jenh-overlay-menu__item.is-dragging {
	opacity: 0.55;
}

.jenh-overlay-menu__item.is-drop-target {
	box-shadow: inset 0 2px 0 #737b85;
}

.jenh-overlay-menu__edit-input {
	width: 100%;
	min-width: 0;
	border: 1px solid #9aa4af;
	border-radius: 4px;
	padding: 5px 7px;
	background: #fff;
	color: #1f1f1f;
	font: inherit;
	line-height: 1.2;
}

.jenh-overlay-menu__desktop {
	display: flex;
	align-items: stretch;
	min-height: 360px;
	max-height: inherit;
}

.jenh-overlay-menu__column {
	width: var(--jenh-overlay-menu-column-width);
	min-width: 260px;
	max-width: 340px;
	max-height: inherit;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 8px 0;
	border-right: 1px solid #ececec;
	background: #fff;
	scrollbar-width: thin;
	scrollbar-color: #c9c9c9 #f7f7f7;
}

.jenh-overlay-menu__column::-webkit-scrollbar {
	width: 8px;
}

.jenh-overlay-menu__column::-webkit-scrollbar-track {
	background: #f7f7f7;
}

.jenh-overlay-menu__column::-webkit-scrollbar-thumb {
	background: #c9c9c9;
	border-radius: 8px;
}

.jenh-overlay-menu__column:last-child {
	border-right: 0;
}

.jenh-overlay-menu__item {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 42px;
	padding: 11px 18px;
	color: #1f1f1f;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.25;
	cursor: pointer;
}

.jenh-overlay-menu__item:hover,
.jenh-overlay-menu__item:focus-visible,
.jenh-overlay-menu__item.is-active {
	background: #f1f1f1;
	color: #111;
	outline: none;
	text-decoration: none;
}

.jenh-overlay-menu__label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.jenh-overlay-menu__item--new {
	font-weight: 500;
}

.jenh-overlay-menu__item.has-children {
	background: #f7f7f7;
	font-weight: 500;
}

.jenh-overlay-menu__item.has-children:hover,
.jenh-overlay-menu__item.has-children:focus-visible,
.jenh-overlay-menu__item.has-children.is-active {
	background: #e8e8e8;
}

.jenh-overlay-menu-mobile {
	display: none;
}

.jenh-overlay-menu-mobile__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.jenh-overlay-menu-mobile__list .jenh-overlay-menu-mobile__list {
	padding-left: 12px;
	border-left: 1px solid #ededed;
	margin-left: 16px;
}

.jenh-overlay-menu-mobile__row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #eeeeee;
}

.jenh-overlay-menu-mobile__link {
	display: flex;
	align-items: center;
	min-height: 48px;
	flex: 1 1 auto;
	padding: 12px 16px;
	color: #1f1f1f;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.25;
}

.jenh-overlay-menu-mobile__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	border: 0;
	border-left: 1px solid #eeeeee;
	background: #fff;
	color: #1f1f1f;
	cursor: pointer;
}

.jenh-overlay-menu-mobile__toggle[aria-expanded="true"] .jenh-overlay-menu__chevron {
	transform: rotate(45deg);
}

.jenh-overlay-menu-mobile__link:hover,
.jenh-overlay-menu-mobile__link:focus-visible,
.jenh-overlay-menu-mobile__toggle:hover,
.jenh-overlay-menu-mobile__toggle:focus-visible {
	background: #f4f4f4;
	outline: none;
}

body.jenh-overlay-menu-lock {
	overflow: hidden;
}

.jenh-overlay-menu--hide-mobile.is-mobile {
	display: none !important;
}

.jenh-overlay-menu.is-mobile {
	position: static;
}

.jenh-overlay-menu.is-mobile .jenh-overlay-menu__panel {
	position: fixed;
	inset: 0 0 0 auto;
	top: 0;
	left: auto;
	transform: none;
	width: min(420px, 92vw);
	min-width: 0;
	max-width: 92vw;
	height: 100vh;
	max-height: none;
	overflow-y: auto;
	border: 0;
	box-shadow: -12px 0 24px rgba(0, 0, 0, 0.16);
}

.jenh-overlay-menu.is-mobile .jenh-overlay-menu__panel::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.35);
	transform: translateX(-100%);
	width: 100vw;
}

.jenh-overlay-menu.is-mobile .jenh-overlay-menu__close {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 0;
	border-bottom: 1px solid #e6e6e6;
	background: #fff;
	color: #222;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.jenh-overlay-menu.is-mobile .jenh-overlay-menu__desktop {
	display: none;
}

.jenh-overlay-menu.is-mobile .jenh-overlay-menu-mobile {
	display: block;
	background: #fff;
}

.jenh-new-products__grid.products {
	display: grid;
	grid-template-columns: repeat(var(--jenh-new-products-desktop-columns, 4), minmax(0, 1fr));
	gap: 24px;
	margin-left: 0;
	padding-left: 0;
}

.jenh-new-products__grid.products::before,
.jenh-new-products__grid.products::after {
	display: none;
}

.jenh-new-products__grid.products > li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
}

.jenh-new-products__empty {
	padding: 18px 0;
}

@media (max-width: 849px) {
	.jenh-overlay-menu--hide-mobile {
		display: none !important;
	}

	.jenh-new-products__grid.products {
		grid-template-columns: repeat(var(--jenh-new-products-tablet-columns, 3), minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.jenh-overlay-menu__button {
		min-height: 42px;
		padding: 0 13px;
	}

	.jenh-new-products__grid.products {
		grid-template-columns: repeat(var(--jenh-new-products-mobile-columns, 2), minmax(0, 1fr));
		gap: 16px;
	}
}
