/**
 * Javis ExMenu front-end styles.
 * Deliberately dependency-free and scoped to .jex-root.
 */

[data-jex-native-slot][hidden],
[data-jex-enhanced-slot][hidden] {
	display: none !important;
}

.jex-root {
	--jex-accent: #2563eb;
	--jex-accent-hover: #1d4ed8;
	--jex-text: #101828;
	--jex-muted: #667085;
	--jex-surface: #fff;
	--jex-surface-end: #fff;
	--jex-soft: #f7f7f5;
	--jex-border: #e4e7ec;
	--jex-overlay-color: #101828;
	--jex-panel-radius: 22px;
	--jex-item-radius: 14px;
	--jex-panel-max: 1320px;
	--jex-panel-padding: 12px;
	--jex-panel-gap: 6px;
	--jex-item-padding-y: 12px;
	--jex-item-padding-x: 14px;
	--jex-item-row-gap: 8px;
	--jex-item-column-gap: 12px;
	--jex-panel-border-width: 1px;
	--jex-panel-border-color: var(--jex-border);
	--jex-panel-bg-end: var(--jex-surface-end);
	--jex-panel-bg-angle: 135deg;
	--jex-item-hover-bg: #eff6ff;
	--jex-item-hover-text: #1d4ed8;
	--jex-mobile-separator-color: #e4e7ec;
	--jex-mobile-separator-width: 1px;
	--jex-mobile-separator-inset: 8px;
	--jex-dropdown-offset: 14px;
	--jex-dropdown-duration: 180ms;
	--jex-panel-closed-y: -8px;
	--jex-panel-closed-scale: 1;
	--jex-shadow: 0 24px 70px rgb(16 24 40 / 16%), 0 8px 24px rgb(16 24 40 / 8%);
	--jex-focus: 0 0 0 3px color-mix(in srgb, var(--jex-accent) 28%, transparent);
	position: relative;
	isolation: isolate;
	z-index: 900;
	color: var(--jex-text);
	font: inherit;
	line-height: 1.4;
}

.jex-animation--fade {
	--jex-panel-closed-y: 0px;
}

.jex-animation--scale {
	--jex-panel-closed-y: -3px;
	--jex-panel-closed-scale: 0.975;
}

.jex-animation--none {
	--jex-dropdown-duration: 0ms;
	--jex-panel-closed-y: 0px;
	--jex-panel-closed-scale: 1;
}

.jex-root *,
.jex-root *::before,
.jex-root *::after {
	box-sizing: border-box;
}

.jex-root ul,
.jex-root li {
	float: none;
	list-style: none;
	margin: 0;
	padding: 0;
	text-indent: 0;
}

/* Neutralize legacy theme submenu rules without affecting navigation outside ExMenu. */
.jex-root .jex-menu,
.jex-root .jex-menu ul {
	max-width: none;
	list-style: none;
}

.jex-root .jex-menu {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	float: none;
	gap: 2px;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: transparent;
}

.jex-root .jex-menu > .jex-item,
.jex-root .jex-panel > .jex-item,
.jex-root .jex-submenu--nested > .jex-item {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	opacity: 1;
	visibility: visible;
}

.jex-root .jex-menu > .jex-item--top {
	position: relative;
	display: flex;
	align-items: center;
}

.jex-root .jex-panel > .jex-item,
.jex-root .jex-submenu--nested > .jex-item {
	position: relative;
	display: block;
}

.jex-root .jex-panel > .jex-panel-content-item {
	position: relative;
	display: block;
	float: none;
	width: 100%;
	height: auto;
	opacity: 1;
	visibility: visible;
}

.jex-root .jex-menu .jex-link {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	height: auto;
	float: none;
	color: var(--jex-text);
	text-decoration: none;
	text-indent: 0;
	white-space: normal;
	opacity: 1;
	visibility: visible;
}

.jex-root button,
.jex-root a {
	font: inherit;
}

.jex-root a {
	text-decoration: none;
}

/* ExMenu owns one disclosure chevron; suppress arrows injected by themes. */
.jex-root .jex-has-submenu > .jex-link::before,
.jex-root .jex-has-submenu > .jex-link::after,
.jex-root .jex-has-submenu::before,
.jex-root .jex-has-submenu::after {
	display: none !important;
	content: none !important;
}

/* Themes may inject their own submenu button after wp_nav_menu renders. */
.jex-root .jex-item.jex-has-submenu > :is(
	button.sub-menu-toggle,
	button.submenu-toggle,
	button.dropdown-toggle,
	button[class*="sub-menu-toggle"],
	button[class*="submenu-toggle"]
):not(.jex-disclosure) {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.jex-stage,
.jex-menu-container {
	position: static;
}

.jex-drawer__head,
.jex-mobile-toggle,
.jex-overlay {
	display: none;
}

.jex-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
}

.jex-item {
	position: relative;
}

.jex-item--top {
	display: flex;
	align-items: center;
}

.jex-link {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	color: var(--jex-text);
	text-decoration: none;
	outline: none;
	transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.jex-link--top {
	min-height: 46px;
	padding: 11px 13px;
	border-radius: 6px;
	background: transparent;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.jex-has-submenu > .jex-link--top {
	padding-inline-end: 5px;
}

.jex-root:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top {
	width: auto !important;
	height: auto !important;
	min-height: 46px !important;
	padding: 11px 13px !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	aspect-ratio: auto !important;
}

.jex-root:not(.jex-context--footer) .jex-menu > .jex-item--top.jex-has-submenu > .jex-link--top {
	padding-inline-end: 5px !important;
}

.jex-link:hover,
.jex-link:focus-visible,
.jex-item.jex-open > .jex-link,
.jex-item.current-menu-item > .jex-link,
.jex-item.current-menu-ancestor > .jex-link {
	color: var(--jex-accent);
}

.jex-link:focus-visible,
.jex-disclosure:focus-visible,
.jex-mobile-toggle:focus-visible,
.jex-drawer__close:focus-visible {
	outline: 2px solid var(--jex-accent);
	outline-offset: 2px;
	box-shadow: var(--jex-focus);
}

.jex-disclosure {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 32px;
	height: 36px;
	margin: 0 6px 0 -5px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	outline: none;
}

.jex-disclosure:hover {
	background: var(--jex-soft);
}

/* Desktop top navigation remains text-first, including the disclosure control. */
.jex-root:not(.jex-is-mobile) .jex-menu > .jex-item--top > .jex-disclosure:hover {
	background: transparent;
	color: var(--jex-accent);
}

.jex-disclosure svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 160ms ease;
}

.jex-item.jex-open > .jex-disclosure svg {
	transform: rotate(180deg);
}

.jex-root .jex-menu > .jex-item--top > .jex-panel {
	position: absolute;
	top: calc(100% + var(--jex-dropdown-offset, 14px));
	left: 0;
	right: auto;
	z-index: 40;
	display: grid;
	width: min(920px, calc(100vw - 32px));
	height: auto !important;
	min-height: 0 !important;
	max-height: none;
	margin: 0;
	clip: auto;
	clip-path: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(var(--jex-panel-x, 0), var(--jex-panel-closed-y, -8px), 0) scale(var(--jex-panel-closed-scale, 1));
	transform-origin: top center;
	transition: opacity var(--jex-dropdown-duration, 180ms) ease, visibility var(--jex-dropdown-duration, 180ms) ease, transform var(--jex-dropdown-duration, 180ms) ease;
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-panel__surface {
	overflow: visible;
	padding: var(--jex-panel-padding, 12px);
	border: var(--jex-panel-border-width, 1px) solid var(--jex-panel-border-color, var(--jex-border));
	border-radius: var(--jex-panel-radius);
	background-color: var(--jex-panel-bg, var(--jex-surface));
	background-image: linear-gradient(rgb(16 24 40 / var(--jex-panel-overlay, 0)), rgb(16 24 40 / var(--jex-panel-overlay, 0))), var(--jex-panel-bg-image, none), linear-gradient(var(--jex-panel-bg-angle, 135deg), var(--jex-panel-bg, var(--jex-surface)), var(--jex-panel-bg-end, var(--jex-panel-bg, var(--jex-surface))));
	background-position: center, var(--jex-panel-bg-position, center center), center;
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: auto, cover, auto;
	box-shadow: var(--jex-shadow);
}

.jex-root .jex-panel > .jex-item > .jex-link {
	display: flex;
	width: 100%;
	height: auto;
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-width--narrow {
	width: min(340px, calc(100vw - 32px));
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-width--content {
	width: min(920px, calc(100vw - 32px));
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-width--full {
	width: min(var(--jex-panel-max), calc(100vw - 32px));
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-width--custom {
	width: min(var(--jex-panel-custom-width, 920px), calc(100vw - 32px));
}

.jex-panel__surface {
	overflow: visible;
	padding: var(--jex-panel-padding, 12px);
	border: var(--jex-panel-border-width, 1px) solid var(--jex-panel-border-color, var(--jex-border));
	border-radius: var(--jex-panel-radius);
	background-color: var(--jex-panel-bg, var(--jex-surface));
	background-image: linear-gradient(rgb(16 24 40 / var(--jex-panel-overlay, 0)), rgb(16 24 40 / var(--jex-panel-overlay, 0))), var(--jex-panel-bg-image, none), linear-gradient(var(--jex-panel-bg-angle, 135deg), var(--jex-panel-bg, var(--jex-surface)), var(--jex-panel-bg-end, var(--jex-panel-bg, var(--jex-surface))));
	background-position: center, var(--jex-panel-bg-position, center center), center;
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: auto, cover, auto;
	box-shadow: var(--jex-shadow);
}

.jex-panel {
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-root .jex-panel .jex-link {
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-no-shadow .jex-panel__surface {
	box-shadow: 0 8px 24px rgb(16 24 40 / 8%);
}

.jex-root.jex-no-shadow .jex-menu > .jex-item--top > .jex-panel.jex-panel__surface {
	box-shadow: 0 8px 24px rgb(16 24 40 / 8%);
}

.jex-panel--shadow-none.jex-panel__surface,
.jex-panel--shadow-none .jex-panel__surface {
	box-shadow: none !important;
}

.jex-panel--shadow-soft.jex-panel__surface,
.jex-panel--shadow-soft .jex-panel__surface {
	box-shadow: 0 14px 36px rgb(16 24 40 / 12%) !important;
}

.jex-panel--shadow-elevated.jex-panel__surface,
.jex-panel--shadow-elevated .jex-panel__surface {
	box-shadow: 0 30px 90px rgb(16 24 40 / 22%), 0 10px 28px rgb(16 24 40 / 10%) !important;
}

.jex-root .jex-menu > .jex-item--top > .jex-panel--scrollable.jex-panel__surface,
.jex-panel--scrollable > .jex-panel__surface {
	max-height: min(var(--jex-panel-max-height, 720px), calc(100dvh - 120px));
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
}

.jex-root .jex-menu > .jex-item--top.jex-open > .jex-panel,
.jex-root.jex-no-js .jex-menu > .jex-item--top:hover > .jex-panel,
.jex-root.jex-no-js .jex-menu > .jex-item--top:focus-within > .jex-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(var(--jex-panel-x, 0), 0, 0) scale(1);
}

.jex-submenu--dropdown {
	display: grid;
	row-gap: var(--jex-item-row-gap, var(--jex-panel-gap, 6px));
	column-gap: var(--jex-item-column-gap, var(--jex-panel-gap, 6px));
	min-width: 280px;
}

.jex-submenu--grid {
	display: grid;
	grid-template-columns: repeat(var(--jex-columns, 3), minmax(0, 1fr));
	grid-auto-flow: row dense;
	row-gap: var(--jex-item-row-gap, var(--jex-panel-gap, 6px));
	column-gap: var(--jex-item-column-gap, var(--jex-panel-gap, 6px));
	align-items: stretch;
}

.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-submenu--dropdown,
.jex-root .jex-menu > .jex-item--top > .jex-panel.jex-submenu--grid {
	display: grid;
	float: none;
	inset-inline-start: 0;
	inset-inline-end: auto;
}

.jex-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.jex-root .jex-panel > .jex-panel-filter {
	position: relative;
	display: block !important;
	float: none;
	grid-column: 1 / -1;
	order: -10;
	width: 100%;
	height: auto;
	margin: 0 0 4px;
	opacity: 1;
	visibility: visible;
}

.jex-panel-filter__control {
	position: relative;
	display: block;
}

.jex-panel-filter__control svg {
	position: absolute;
	top: 50%;
	inset-inline-start: 14px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--jex-muted);
	stroke-width: 1.8;
	stroke-linecap: round;
	transform: translateY(-50%);
	pointer-events: none;
}

.jex-panel-filter__input {
	display: block;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding-block: 10px;
	padding-inline: 42px 14px;
	border: 1px solid var(--jex-panel-border-color, var(--jex-border));
	border-radius: min(var(--jex-item-radius), 14px);
	background: color-mix(in srgb, var(--jex-surface) 94%, transparent);
	color: var(--jex-text);
	font: inherit;
	font-size: 14px;
	line-height: 1.3;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.jex-panel-filter__input:focus-visible {
	border-color: var(--jex-accent);
	box-shadow: var(--jex-focus);
}

.jex-panel--custom-background .jex-panel-filter__input {
	border-color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 22%, transparent);
	background: color-mix(in srgb, var(--jex-panel-bg, var(--jex-surface)) 78%, transparent);
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-panel--custom-background .jex-panel-filter__control svg {
	stroke: var(--jex-panel-text, var(--jex-text));
}

.jex-root [hidden] {
	display: none !important;
}

.jex-link--child {
	width: 100%;
	min-height: 50px;
	gap: 13px;
	padding: var(--jex-item-padding-y, 12px) var(--jex-item-padding-x, 14px);
	border-radius: var(--jex-item-radius);
}

.jex-submenu--grid > .jex-item > .jex-link--child {
	min-height: 88px;
	padding: var(--jex-item-padding-y, 12px) var(--jex-item-padding-x, 14px);
}

.jex-link--child:hover,
.jex-link--child:focus-visible,
.jex-item.jex-open > .jex-link--child {
	background: var(--jex-soft);
	color: var(--jex-text);
	transform: translateY(-1px);
}

.jex-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border: 1px solid color-mix(in srgb, var(--jex-border) 76%, transparent);
	border-radius: 13px;
	background: var(--jex-soft);
	color: var(--jex-text);
}

.jex-icon svg {
	width: 21px;
	height: 21px;
}

.jex-icon--custom {
	overflow: hidden;
	padding: 7px;
}

.jex-icon__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.jex-panel--custom-background .jex-icon {
	border-color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 18%, transparent);
	background: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 9%, transparent);
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-panel--custom-background .jex-link--child:hover,
.jex-panel--custom-background .jex-link--child:focus-visible,
.jex-panel--custom-background .jex-item.jex-open > .jex-link--child {
	background: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 10%, transparent);
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-link:hover .jex-icon,
.jex-link:focus-visible .jex-icon {
	border-color: color-mix(in srgb, var(--jex-accent) 25%, var(--jex-border));
	background: color-mix(in srgb, var(--jex-accent) 8%, var(--jex-surface));
	color: var(--jex-accent);
}

.jex-panel--custom-background .jex-link:hover .jex-icon,
.jex-panel--custom-background .jex-link:focus-visible .jex-icon {
	border-color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 28%, transparent);
	background: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 14%, transparent);
	color: var(--jex-panel-text, var(--jex-text));
}

/* Commercial-grade interaction states: mouse, keyboard, open trail, and current page stay in sync. */
.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) {
	background: var(--jex-item-hover-bg);
	color: var(--jex-item-hover-text);
	transform: translateY(-1px);
}

.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) :is(.jex-link__headline, .jex-link__description) {
	color: var(--jex-item-hover-text) !important;
}

.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) .jex-icon {
	border-color: color-mix(in srgb, var(--jex-item-hover-text) 34%, transparent);
	background: color-mix(in srgb, var(--jex-item-hover-bg) 76%, var(--jex-surface));
	color: var(--jex-item-hover-text);
}

.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: var(--jex-item-hover-bg);
	color: var(--jex-item-hover-text);
}

.jex-root.jex-item-hover--tint :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child,
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: color-mix(in srgb, var(--jex-item-hover-bg) 76%, transparent);
}

.jex-root.jex-item-hover--solid :is(
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: var(--jex-item-hover-bg);
}

.jex-root.jex-item-hover--outline :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child,
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: transparent;
	box-shadow: inset 0 0 0 2px var(--jex-item-hover-bg);
}

.jex-root.jex-item-hover--underline :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child,
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: transparent;
	box-shadow: inset 0 -2px 0 var(--jex-item-hover-text);
}

/* Top-level navigation stays visually quiet; treatments belong to panel cards. */
.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--top:hover,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) {
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: var(--jex-accent);
	transform: none;
}

.jex-root[class*="jex-item-hover--"] .jex-menu > .jex-item--top > .jex-link--top:focus-visible {
	background: transparent !important;
	background-image: none !important;
	box-shadow: var(--jex-focus) !important;
	color: var(--jex-accent);
	transform: none;
}

.jex-root[class*="jex-item-hover--"] :is(
	.jex-link--top:hover,
	.jex-link--top:focus-visible,
	.jex-item.jex-open > .jex-link--top,
	.jex-item.current-menu-item > .jex-link--top,
	.jex-item.current-menu-ancestor > .jex-link--top
) .jex-link__headline {
	color: var(--jex-accent) !important;
}

.jex-root:not(.jex-is-mobile) .jex-menu > .jex-item--top:is(:hover, .jex-open) > .jex-disclosure {
	background: transparent;
	color: var(--jex-accent);
}

.jex-link__copy {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.jex-link__headline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-width: 0;
	gap: 7px;
	color: var(--jex-panel-text, var(--jex-text));
	font-size: 15px;
	font-weight: 650;
	letter-spacing: -0.012em;
}

.jex-link__label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.jex-link__description {
	display: -webkit-box;
	overflow: hidden;
	color: var(--jex-muted);
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-transform: none;
}

.jex-panel--custom-background .jex-link__description {
	color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 72%, transparent);
}

.jex-root.jex-description-case--none :is(.jex-link__description, .jex-featured__description) {
	text-transform: none !important;
}

.jex-root.jex-description-case--lowercase :is(.jex-link__description, .jex-featured__description) {
	text-transform: lowercase !important;
}

.jex-root.jex-description-case--uppercase :is(.jex-link__description, .jex-featured__description) {
	text-transform: uppercase !important;
}

.jex-root.jex-description-case--capitalize :is(.jex-link__description, .jex-featured__description) {
	text-transform: capitalize !important;
}

.jex-root :is(.jex-link__description, .jex-featured__description).jex-text-case--none {
	text-transform: none !important;
}

.jex-root :is(.jex-link__description, .jex-featured__description).jex-text-case--lowercase {
	text-transform: lowercase !important;
}

.jex-root :is(.jex-link__description, .jex-featured__description).jex-text-case--uppercase {
	text-transform: uppercase !important;
}

.jex-root :is(.jex-link__description, .jex-featured__description).jex-text-case--capitalize {
	text-transform: capitalize !important;
}

.jex-badge {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 2px 7px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--jex-accent) 11%, var(--jex-surface));
	color: var(--jex-accent-hover);
	font-size: 9.5px;
	font-weight: 750;
	letter-spacing: 0.055em;
	line-height: 1;
	text-transform: uppercase;
}

.jex-link--dynamic .jex-icon--dynamic {
	overflow: hidden;
	padding: 0;
	background: var(--jex-soft);
}

.jex-link--dynamic .jex-icon--dynamic .jex-icon__image {
	object-fit: cover;
}

.jex-dynamic__meta {
	color: var(--jex-muted);
	font-size: 11px;
	font-weight: 650;
	line-height: 1.35;
}

.jex-panel--custom-background .jex-dynamic__meta {
	color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 70%, transparent);
}

.jex-item-style--heading > .jex-link {
	min-height: auto;
	padding-block: 15px 7px;
	background: transparent;
	transform: none;
}

.jex-item-style--heading .jex-link__headline {
	color: var(--jex-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.jex-item-style--heading .jex-icon,
.jex-item-style--heading .jex-link__description {
	display: none;
}

.jex-panel--showcase {
	grid-auto-flow: row;
	grid-auto-rows: minmax(112px, auto);
	row-gap: var(--jex-item-row-gap, var(--jex-panel-gap, 8px));
	column-gap: var(--jex-item-column-gap, var(--jex-panel-gap, 8px));
}

.jex-root .jex-menu > .jex-item--top > .jex-panel--showcase.jex-panel__surface {
	padding: var(--jex-showcase-padding, var(--jex-panel-padding, 12px));
}

.jex-panel--showcase > .jex-item > .jex-link--child {
	align-self: start;
	height: auto !important;
}

/*
	* The walker marks exactly one primary promo per top-level panel. This avoids
	* selector-support ambiguity and gives every additional promo a safe full row.
 */
.jex-panel--showcase > .jex-item-style--featured {
	display: flex !important;
	align-items: stretch;
	grid-column: 1 / -1;
	grid-row: auto;
	order: 50;
	min-width: 0;
	height: auto !important;
	min-height: 0 !important;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-width--rail {
	grid-column: -2 / -1;
	grid-row: 1 / span 2;
	order: 0;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-width--wide {
	grid-column: -3 / -1;
	grid-row: 1 / span 2;
	order: 0;
}

/* Rail promos use their explicit row span without inflating every link-card row. */
.jex-root:not(.jex-is-mobile) .jex-panel--showcase > .jex-featured--primary:is(.jex-featured-width--rail, .jex-featured-width--wide) > .jex-featured {
	align-self: stretch;
	height: 100% !important;
	min-height: 100% !important;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-width--full {
	grid-column: 1 / -1;
	grid-row: auto;
	order: 50;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--1 {
	grid-row: 1 / span 1;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--2 {
	grid-row: 1 / span 2;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--3 {
	grid-row: 1 / span 3;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--4 {
	grid-row: 1 / span 4;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--5 {
	grid-row: 1 / span 5;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-rows--6 {
	grid-row: 1 / span 6;
}

.jex-panel--showcase > .jex-featured--primary.jex-featured-width--full,
.jex-panel--showcase > .jex-featured--overflow {
	grid-row: auto;
}

@media (max-width: 840px) {
	.jex-root:not(.jex-is-mobile) .jex-panel--showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jex-root:not(.jex-is-mobile) .jex-panel--showcase > .jex-featured--primary {
		grid-column: 1 / -1;
		grid-row: auto;
		order: 50;
	}
}

.jex-root .jex-panel .jex-featured {
	position: relative !important;
	display: grid !important;
	align-items: stretch;
	isolation: isolate;
	overflow: hidden !important;
	width: 100% !important;
	height: auto !important;
	min-height: var(--jex-featured-min-height, 280px) !important;
	padding: 0 !important;
	border: var(--jex-featured-border-width, 0) solid var(--jex-featured-border-color, rgb(255 255 255 / 34%));
	border-radius: var(--jex-featured-radius, max(0px, calc(var(--jex-panel-radius) - 8px)));
	background: var(--jex-overlay-color);
	color: #fff;
	line-height: 1.4;
	flex: 1 1 auto;
}

.jex-featured:hover,
.jex-featured:focus-visible {
	color: #fff;
	transform: none;
}

.jex-root .jex-panel .jex-featured,
.jex-root .jex-panel .jex-featured:hover,
.jex-root .jex-panel .jex-featured:focus-visible {
	color: #fff;
}

.jex-featured__media {
	position: absolute;
	inset: 0;
}

.jex-featured__media {
	z-index: 0;
	background: color-mix(in srgb, var(--jex-overlay-color) 80%, #000);
}

.jex-featured__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--jex-featured-image-position, center center);
	transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.jex-featured:hover .jex-featured__image,
.jex-featured:focus-visible .jex-featured__image {
	transform: scale(1.045);
}

.jex-featured__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: auto;
	min-height: var(--jex-featured-min-height, 280px);
	padding: clamp(20px, 2vw, 30px);
	background: linear-gradient(180deg, rgb(3 7 18 / 6%) 4%, rgb(3 7 18 / var(--jex-featured-overlay, 0.72)) 100%);
}

.jex-featured-position--top .jex-featured__overlay {
	align-items: flex-start;
}

.jex-featured-position--center .jex-featured__overlay {
	align-items: center;
}

.jex-featured__copy {
	display: grid;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.jex-featured-align--center .jex-featured__copy {
	text-align: center;
}

.jex-featured-align--right .jex-featured__copy {
	text-align: end;
}

.jex-featured__title {
	display: block;
	overflow: visible;
	font-size: clamp(19px, 2vw, 26px);
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.18;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.jex-featured__description {
	display: block;
	overflow: visible;
	color: rgb(255 255 255 / 88%);
	font-size: 13.5px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.jex-featured__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	justify-self: start;
	min-height: 42px;
	margin-top: 4px;
	padding: 9px 16px;
	border-radius: 999px;
	background: #fff;
	color: #101828;
	font-size: 12px;
	font-weight: 700;
}

.jex-featured-align--center .jex-featured__cta,
.jex-featured-align--center .jex-badge--featured {
	justify-self: center;
}

.jex-featured-align--right .jex-featured__cta,
.jex-featured-align--right .jex-badge--featured {
	justify-self: end;
}

.jex-featured-cta--outline .jex-featured__cta {
	border: 1px solid rgb(255 255 255 / 72%);
	background: rgb(3 7 18 / 18%);
	color: #fff;
	backdrop-filter: blur(8px);
}

.jex-featured-cta--link .jex-featured__cta {
	min-height: 0;
	padding: 4px 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
}

.jex-badge--featured {
	justify-self: start;
	background: rgb(255 255 255 / 92%);
	color: #101828;
}

.jex-panel-content {
	padding: 18px;
	color: var(--jex-text);
}

.jex-panel-content-item {
	grid-column: 1 / -1;
	width: 100%;
}

.jex-panel-content-item .jex-panel-content {
	margin-top: 12px;
	border-top: 1px solid var(--jex-border);
}

.jex-panel-content > :first-child {
	margin-top: 0;
}

.jex-panel-content > :last-child {
	margin-bottom: 0;
}

.jex-products {
	display: grid;
	grid-template-columns: repeat(var(--jex-product-columns, 4), minmax(0, 1fr));
	gap: 12px;
}

.jex-product__link {
	display: grid;
	gap: 7px;
	overflow: hidden;
	padding: 8px;
	border: 1px solid var(--jex-border);
	border-radius: var(--jex-item-radius);
	color: var(--jex-text);
	transition: border-color 160ms ease, transform 160ms ease;
}

.jex-product__link:hover,
.jex-product__link:focus-visible {
	border-color: color-mix(in srgb, var(--jex-accent) 35%, var(--jex-border));
	color: var(--jex-accent-hover);
	transform: translateY(-2px);
}

.jex-product__image {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: calc(var(--jex-item-radius) - 5px);
	background: var(--jex-soft);
}

.jex-product__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jex-product__title {
	font-size: 12px;
	font-weight: 700;
}

.jex-product__price {
	color: var(--jex-muted);
	font-size: 11px;
}

.jex-cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--jex-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 750;
}

.jex-submenu--nested {
	position: absolute;
	top: var(--jex-nested-y, -8px);
	inset-inline-start: calc(100% + 6px);
	z-index: 4;
	display: grid;
	gap: 2px;
	width: clamp(280px, 24vw, 360px);
	max-width: calc(100vw - 32px);
	padding: 8px;
	border: 1px solid var(--jex-border);
	border-radius: var(--jex-item-radius);
	background: var(--jex-surface);
	box-shadow: 0 14px 40px rgb(16 24 40 / 14%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(6px);
	transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}

.jex-panel--custom-background .jex-submenu--nested {
	border-color: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 18%, transparent);
	background: var(--jex-panel-bg, var(--jex-surface));
}

[dir="rtl"] .jex-submenu--nested {
	transform: translateX(-6px);
}

.jex-submenu--nested.jex-submenu--flip {
	inset-inline-start: auto;
	inset-inline-end: calc(100% + 6px);
	transform: translateX(-6px);
}

[dir="rtl"] .jex-submenu--nested.jex-submenu--flip {
	transform: translateX(6px);
}

.jex-item.jex-open > .jex-submenu--nested,
.jex-no-js .jex-item:hover > .jex-submenu--nested,
.jex-no-js .jex-item:focus-within > .jex-submenu--nested {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}

.jex-submenu--nested .jex-disclosure {
	position: absolute;
	top: 7px;
	inset-inline-end: 5px;
	margin: 0;
}

.jex-submenu--nested .jex-has-submenu > .jex-link {
	padding-inline-end: 43px;
}

.jex-hide-desktop {
	display: none;
}

body.jex-scroll-lock {
	overflow: hidden;
}

/* JavaScript-controlled mobile drawer; class-based to honor any breakpoint. */
.jex-is-mobile {
	z-index: 9999;
}

.jex-is-mobile .jex-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid var(--jex-border);
	border-radius: 999px;
	background: var(--jex-surface);
	color: var(--jex-text);
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
	outline: none;
}

.jex-mobile-toggle__icon {
	display: grid;
	gap: 4px;
	width: 18px;
}

.jex-mobile-toggle__icon span {
	display: block;
	width: 18px;
	height: 1.5px;
	border-radius: 2px;
	background: currentColor;
}

.jex-is-mobile .jex-overlay {
	position: fixed;
	inset: 0;
	z-index: 9997;
	display: block;
	background: color-mix(in srgb, var(--jex-overlay-color) 44%, transparent);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.jex-is-mobile .jex-stage {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9998;
	display: flex;
	flex-direction: column;
	width: min(92vw, 420px);
	max-width: 100vw;
	max-height: 100dvh;
	overflow-x: hidden;
	overflow-x: clip;
	padding: 0;
	background: var(--jex-surface);
	box-shadow: 0 0 60px rgb(16 24 40 / 20%);
	overscroll-behavior: contain;
	visibility: hidden;
	transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 260ms ease;
}

.jex-is-mobile.jex-drawer--right .jex-stage {
	right: 0;
	transform: translateX(105%);
}

.jex-is-mobile.jex-drawer--left .jex-stage {
	left: 0;
	transform: translateX(-105%);
}

.jex-is-mobile.jex-drawer-open .jex-stage {
	visibility: visible;
	transform: translateX(0);
}

.jex-is-mobile.jex-drawer-open .jex-overlay {
	opacity: 1;
	visibility: visible;
}

.jex-is-mobile .jex-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 auto;
	min-height: 64px;
	padding: max(10px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
	border-bottom: 1px solid var(--jex-border);
}

.jex-drawer__title {
	font-size: 17px;
	font-weight: 750;
	letter-spacing: -0.02em;
}

.jex-drawer__close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--jex-border);
	border-radius: 12px;
	background: var(--jex-surface);
	color: var(--jex-text);
	line-height: 1;
	cursor: pointer;
	outline: none;
}

.jex-close-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
}

.jex-close-icon::before,
.jex-close-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1.75px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.jex-close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.jex-close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.jex-is-mobile .jex-menu-container,
.jex-is-mobile .jex-stage > nav,
.jex-is-mobile .jex-stage > .jex-menu,
.jex-is-mobile .jex-stage > div:not(.jex-drawer__head) {
	min-height: 0;
	max-width: 100%;
}

.jex-is-mobile .jex-stage > nav,
.jex-is-mobile .jex-stage > .jex-menu-container,
.jex-is-mobile .jex-stage > .jex-menu {
	overflow-x: hidden;
	overflow-y: auto;
	flex: 1 1 auto;
}

/* Let a theme's existing hamburger/drawer own the outer mobile container. */
.jex-mobile-mode--inline.jex-is-mobile {
	z-index: auto;
}

.jex-mobile-mode--inline.jex-is-mobile :is(.jex-mobile-toggle, .jex-overlay),
.jex-mobile-shell-adopted.jex-is-mobile :is(.jex-mobile-toggle, .jex-overlay) {
	display: none !important;
}

.jex-mobile-mode--inline.jex-is-mobile .jex-stage {
	position: static;
	inset: auto;
	display: block;
	width: 100%;
	max-height: none;
	background: transparent;
	box-shadow: none;
	overscroll-behavior: auto;
	visibility: visible;
	transform: none;
	transition: none;
}

.jex-mobile-mode--inline.jex-is-mobile .jex-drawer__head {
	display: none;
}

.jex-theme-owned-mobile.jex-is-mobile .jex-drawer__head {
	position: sticky;
	top: 0;
	z-index: 8;
	display: flex;
	background: var(--jex-drawer-surface, #fff);
	color: var(--jex-drawer-text, #101828);
}

/* Wrapping wp_nav_menu() changes selectors such as nav > .menu-container.
 * Restore the full mobile track generically so theme flex/grid shells cannot
 * squeeze the enhanced menu into the width of its text or close control. */
.jex-theme-owned-mobile.jex-is-mobile,
.jex-theme-owned-mobile.jex-is-mobile .jex-stage,
.jex-theme-owned-mobile.jex-is-mobile .jex-stage > :not(.jex-drawer__head) {
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.jex-theme-owned-mobile.jex-is-mobile {
	flex: 1 1 100%;
	align-self: stretch;
}

.jex-theme-owned-mobile.jex-theme-owner-has-close.jex-is-mobile .jex-drawer__head {
	display: none !important;
}

.jex-mobile-mode--inline.jex-is-mobile .jex-stage > nav,
.jex-mobile-mode--inline.jex-is-mobile .jex-stage > .jex-menu-container,
.jex-mobile-mode--inline.jex-is-mobile .jex-stage > .jex-menu {
	overflow: visible;
	flex: none;
}

.jex-is-mobile .jex-menu {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 2px;
	padding: 12px max(16px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

.jex-root.jex-is-mobile .jex-menu {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	flex-wrap: nowrap;
}

.jex-is-mobile .jex-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	border: 0 !important;
}

.jex-root.jex-is-mobile .jex-menu > .jex-item,
.jex-root.jex-is-mobile .jex-panel > .jex-item,
.jex-root.jex-is-mobile .jex-submenu--nested > .jex-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	min-width: 0;
}

.jex-is-mobile .jex-link {
	flex: 1 1 auto;
	min-height: 52px;
	padding: 10px 12px;
	border-radius: 10px;
}

.jex-is-mobile .jex-link--top {
	font-size: 16px;
	font-weight: 680;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top {
	min-height: 52px !important;
	padding: 10px 12px !important;
	border-radius: 10px !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top.jex-has-submenu > .jex-link--top {
	padding-inline-end: 10px !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top:is(.jex-open, .current-menu-item, .current-menu-ancestor) > .jex-link--top,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top:focus-visible {
	background: color-mix(in srgb, var(--jex-accent) 9%, var(--jex-drawer-surface, #fff)) !important;
}

.jex-is-mobile .jex-disclosure {
	position: static;
	width: 44px;
	height: 44px;
	margin: 0;
	border: 1px solid var(--jex-border);
	border-radius: 10px;
	background: var(--jex-soft);
	color: var(--jex-text);
}

.jex-is-mobile .jex-panel--custom-background .jex-disclosure {
	background: color-mix(in srgb, var(--jex-panel-text, var(--jex-text)) 10%, transparent);
	color: var(--jex-panel-text, var(--jex-text));
}

.jex-root.jex-is-mobile .jex-menu > .jex-item--top > .jex-panel,
.jex-is-mobile .jex-submenu--nested {
	position: static;
	inset: auto;
	order: 3;
	display: none;
	width: 100%;
	min-width: 0 !important;
	max-width: 100% !important;
	padding: 0 0 9px;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition: none;
}

.jex-root.jex-is-mobile .jex-submenu--nested {
	width: calc(100% - 12px) !important;
	margin: 3px 0 8px;
	margin-inline-start: 12px;
	padding: 4px 0 7px;
	border-inline-start: 2px solid color-mix(in srgb, var(--jex-accent) 38%, var(--jex-drawer-border, #e4e7ec));
}

.jex-root.jex-is-mobile .jex-menu > .jex-item--top > .jex-panel.jex-panel__surface {
	overflow: visible;
	margin: 2px 0 9px;
	padding: min(var(--jex-panel-padding, 12px), 24px);
	border: min(var(--jex-panel-border-width, 1px), 4px) solid var(--jex-panel-border-color, color-mix(in srgb, var(--jex-border) 76%, transparent));
	border-radius: min(var(--jex-panel-radius), 24px);
	background-color: var(--jex-panel-bg, var(--jex-soft));
	box-shadow: none;
}

.jex-root.jex-is-mobile .jex-menu > .jex-item--top.jex-open > .jex-panel,
.jex-is-mobile .jex-item.jex-open > .jex-submenu--nested {
	display: grid;
}

.jex-is-mobile .jex-panel__surface {
	margin: 2px 0 9px;
	padding: min(var(--jex-panel-padding, 12px), 24px);
	border: min(var(--jex-panel-border-width, 1px), 4px) solid var(--jex-panel-border-color, color-mix(in srgb, var(--jex-border) 76%, transparent));
	border-radius: min(var(--jex-panel-radius), 24px);
	background-color: var(--jex-panel-bg, var(--jex-soft));
	box-shadow: none;
}

.jex-root.jex-is-mobile .jex-panel--scrollable.jex-panel__surface,
.jex-is-mobile .jex-panel--scrollable > .jex-panel__surface {
	max-height: none;
	overflow: visible;
	scrollbar-gutter: auto;
}

.jex-is-mobile .jex-submenu--grid,
.jex-is-mobile .jex-submenu--dropdown {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	row-gap: min(var(--jex-item-row-gap, var(--jex-panel-gap, 6px)), 16px);
	column-gap: 0;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item,
.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item > .jex-link {
	border: 0 !important;
	background-image: none;
}

/* Remove residual theme dividers before drawing exactly one selected separator. */
.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item::before,
.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item::after,
.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item > .jex-link::before,
.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item > .jex-link::after {
	display: none !important;
	border: 0 !important;
	box-shadow: none !important;
	content: none !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer):not(.jex-mobile-separator--none) :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item:not(:last-child):not(.jex-item-style--featured)::after {
	position: absolute;
	z-index: 1;
	inset-inline: var(--jex-mobile-separator-inset);
	bottom: 0;
	height: var(--jex-mobile-separator-width);
	background: var(--jex-mobile-separator-color);
	content: "" !important;
	display: block !important;
	pointer-events: none;
}

.jex-root.jex-is-mobile:not(.jex-context--footer).jex-mobile-separator--dashed :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item:not(:last-child):not(.jex-item-style--featured)::after {
	background: repeating-linear-gradient(90deg, var(--jex-mobile-separator-color) 0 8px, transparent 8px 13px);
}

.jex-root.jex-is-mobile:not(.jex-context--footer).jex-mobile-separator--dotted :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item:not(:last-child):not(.jex-item-style--featured)::after {
	background: repeating-linear-gradient(90deg, var(--jex-mobile-separator-color) 0 2px, transparent 2px 6px);
}

.jex-root.jex-is-mobile:not(.jex-context--footer).jex-mobile-separator--dot :is(.jex-menu, .jex-panel, .jex-submenu--nested) > .jex-item:not(:last-child):not(.jex-item-style--featured)::after {
	inset-inline: auto;
	left: 50%;
	width: calc(var(--jex-mobile-separator-width) + 5px);
	height: calc(var(--jex-mobile-separator-width) + 5px);
	border-radius: 50%;
	transform: translate(-50%, 50%);
}

.jex-is-mobile .jex-submenu .jex-link--child {
	min-height: 62px;
	padding: min(var(--jex-item-padding-y, 12px), 14px) min(var(--jex-item-padding-x, 14px), 18px);
}

.jex-is-mobile .jex-icon {
	width: 40px;
	height: 40px;
}

.jex-is-mobile .jex-panel--showcase .jex-item-style--featured {
	grid-column: auto;
	grid-row: auto;
	order: 50;
}

.jex-root.jex-is-mobile .jex-panel .jex-featured {
	height: auto !important;
	min-height: clamp(220px, var(--jex-featured-min-height, 280px), 420px) !important;
	margin-top: 6px;
	border-radius: var(--jex-featured-radius, var(--jex-item-radius));
}

.jex-root.jex-is-mobile .jex-featured__overlay {
	position: relative;
	min-height: clamp(220px, var(--jex-featured-min-height, 280px), 420px);
	padding: clamp(18px, 6vw, 26px);
}

.jex-root.jex-is-mobile .jex-panel > .jex-panel-filter {
	margin: 0 0 6px;
}

.jex-is-mobile .jex-panel-filter__input {
	min-height: 48px;
}

.jex-is-mobile .jex-panel-content {
	padding: 14px 10px;
}

.jex-is-mobile .jex-products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Mobile navigation owns an explicit contrast contract whether Javis or the
 * active theme supplies the outer drawer. */
.jex-root.jex-is-mobile:not(.jex-context--footer) {
	--jex-text: var(--jex-drawer-text, #101828);
	--jex-muted: var(--jex-drawer-muted, #667085);
	--jex-surface: var(--jex-drawer-surface, #fff);
	--jex-soft: var(--jex-drawer-soft, #f7f7f5);
	--jex-border: var(--jex-drawer-border, #e4e7ec);
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-stage {
	color-scheme: normal;
	background-color: var(--jex-drawer-surface, #fff) !important;
	background-image: none !important;
	color: var(--jex-drawer-text, #101828) !important;
}

/* In theme-owned navigation, paint the theme's real drawer surface rather
 * than the static wrapper around it. This prevents detached white/color bars. */
.jex-root.jex-mobile-mode--inline.jex-theme-owned-mobile.jex-is-mobile:not(.jex-context--footer) .jex-stage {
	background: transparent !important;
	box-shadow: none !important;
}

.jex-root.jex-mobile-mode--inline.jex-theme-owned-mobile.jex-is-mobile:not(.jex-context--footer) .jex-stage > :not(.jex-drawer__head) {
	background-color: var(--jex-drawer-surface, #fff) !important;
	background-image: none !important;
	color: var(--jex-drawer-text, #101828) !important;
}

.jex-root.jex-mobile-mode--drawer.jex-is-mobile .jex-stage {
	border: 0;
}

.jex-root.jex-mobile-mode--drawer.jex-drawer--right.jex-is-mobile .jex-stage {
	border-left: 1px solid var(--jex-drawer-border, #e4e7ec);
}

.jex-root.jex-mobile-mode--drawer.jex-drawer--left.jex-is-mobile .jex-stage {
	border-right: 1px solid var(--jex-drawer-border, #e4e7ec);
}

.jex-root.jex-drawer-theme--light.jex-is-mobile:not(.jex-context--footer) .jex-stage {
	color-scheme: light;
}

.jex-root.jex-drawer-theme--dark.jex-is-mobile:not(.jex-context--footer) .jex-stage {
	color-scheme: dark;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-drawer__head {
	border-color: var(--jex-drawer-border, #e4e7ec) !important;
	background: var(--jex-drawer-surface, #fff) !important;
	color: var(--jex-drawer-text, #101828) !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-drawer__title,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel:not(.jex-panel--custom-background) .jex-link,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-submenu--nested .jex-link,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top .jex-link__headline,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel:not(.jex-panel--custom-background) .jex-link__headline,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-submenu--nested .jex-link__headline {
	color: var(--jex-drawer-text, #101828) !important;
	-webkit-text-fill-color: currentColor;
	opacity: 1 !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel:not(.jex-panel--custom-background) .jex-link__description,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-submenu--nested .jex-link__description {
	color: var(--jex-drawer-muted, #667085) !important;
	-webkit-text-fill-color: currentColor;
	opacity: 1 !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-stage :is(.jex-menu, .jex-menu-container) {
	background: transparent !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel__surface:not(.jex-panel--custom-background) {
	--jex-panel-bg: var(--jex-drawer-soft, #f7f7f5);
	--jex-panel-text: var(--jex-drawer-text, #101828);
	--jex-panel-border-color: var(--jex-drawer-border, #e4e7ec);
}

.jex-root.jex-is-mobile:not(.jex-context--footer) :is(.jex-icon, .jex-disclosure) {
	border-color: var(--jex-drawer-border, #e4e7ec) !important;
	background: var(--jex-drawer-soft, #f7f7f5) !important;
	color: var(--jex-drawer-text, #101828) !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel--custom-background :is(.jex-link, .jex-link__headline, .jex-link__description, .jex-icon, .jex-disclosure) {
	color: var(--jex-panel-text, #101828) !important;
	-webkit-text-fill-color: currentColor;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top:is(:hover, .jex-open, .current-menu-item, .current-menu-ancestor) > .jex-link--top .jex-link__headline,
.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-menu > .jex-item--top > .jex-link--top:focus-visible .jex-link__headline {
	color: var(--jex-accent, #2563eb) !important;
}

.jex-root.jex-is-mobile:not(.jex-context--footer) .jex-panel:not(.jex-panel--custom-background) :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) :is(.jex-link__headline, .jex-link__description) {
	color: var(--jex-item-hover-text, #1d4ed8) !important;
	-webkit-text-fill-color: currentColor;
}

.jex-root:is(.jex-mobile-mode--drawer, .jex-theme-owned-mobile).jex-is-mobile .jex-drawer__close {
	position: static !important;
	display: grid !important;
	place-items: center !important;
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--jex-drawer-border, #e4e7ec) !important;
	border-radius: 12px !important;
	background: var(--jex-drawer-surface, #fff) !important;
	box-shadow: none !important;
	color: var(--jex-drawer-text, #101828) !important;
	-webkit-text-fill-color: currentColor;
	line-height: 1 !important;
	text-indent: 0 !important;
	transform: none !important;
	-webkit-appearance: none;
	appearance: none;
}

@media (max-width: 480px) {
	.jex-is-mobile .jex-stage {
		width: 100%;
		max-width: 100vw;
	}

	.jex-is-mobile .jex-products {
		grid-template-columns: minmax(0, 1fr);
	}
}

.jex-is-narrow .jex-hide-mobile {
	display: none;
}

.jex-is-narrow .jex-hide-desktop {
	display: flex;
}

/* Footer context becomes a crawlable, static sitemap-style navigation. */
.jex-context--footer {
	z-index: auto;
}

.jex-context--footer .jex-mobile-toggle,
.jex-context--footer .jex-overlay,
.jex-context--footer .jex-drawer__head,
.jex-context--footer .jex-disclosure,
.jex-context--footer .jex-panel-filter {
	display: none;
}

.jex-root.jex-context--footer .jex-panel > .jex-panel-filter {
	display: none !important;
}

.jex-context--footer .jex-stage {
	position: static;
	display: block;
	width: auto;
	background: transparent;
	box-shadow: none;
	visibility: visible;
	transform: none;
}

.jex-root.jex-context--footer .jex-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	align-items: start;
	gap: 28px;
}

.jex-root.jex-context--footer .jex-menu > .jex-item--top {
	display: block;
}

.jex-context--footer.jex-is-narrow .jex-hide-desktop {
	display: list-item;
}

.jex-context--footer .jex-link--top {
	min-height: auto;
	padding: 0 0 10px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600 !important;
}

.jex-root.jex-context--footer .jex-menu > .jex-item--top > .jex-panel {
	position: static;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-auto-flow: row !important;
	grid-auto-rows: auto !important;
	align-content: start;
	gap: 3px;
	width: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

/* Showcase row spans belong to mega panels, never to static footer groups. */
.jex-root.jex-context--footer .jex-panel > .jex-item {
	grid-column: auto !important;
	grid-row: auto !important;
	order: initial !important;
	align-self: start;
	height: auto !important;
	min-height: 0 !important;
}

.jex-root.jex-context--footer .jex-panel > .jex-item > .jex-link {
	align-self: start;
	height: auto !important;
	min-height: 0 !important;
}

.jex-context--footer .jex-submenu--nested {
	position: static;
	display: grid;
	width: auto;
	padding: 0 0 0 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.jex-context--footer .jex-panel__surface {
	overflow: visible;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.jex-context--footer .jex-submenu {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3px;
}

.jex-context--footer .jex-link--child {
	min-height: auto;
	padding: 5px 0;
	border-radius: 0;
}

.jex-root.jex-context--footer .jex-panel .jex-link {
	color: var(--jex-text);
}

.jex-context--footer .jex-link--child:hover,
.jex-context--footer .jex-link--child:focus-visible {
	background: transparent;
	color: var(--jex-accent);
	transform: none;
}

.jex-root.jex-context--footer[class*="jex-item-hover--"] :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.jex-open > .jex-link--child,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) {
	background: transparent;
	box-shadow: none;
	transform: none;
}

.jex-context--footer .jex-icon,
.jex-context--footer .jex-link__description,
.jex-context--footer .jex-panel-content {
	display: none;
}

.jex-root.jex-context--footer .jex-panel .jex-featured,
.jex-root.jex-context--footer .jex-panel .jex-featured:hover,
.jex-root.jex-context--footer .jex-panel .jex-featured:focus-visible {
	display: flex !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 5px 0 !important;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--jex-text);
}

.jex-context--footer .jex-featured__media,
.jex-context--footer .jex-featured__description,
.jex-context--footer .jex-featured__cta,
.jex-context--footer .jex-badge--featured {
	display: none;
}

.jex-context--footer .jex-featured__overlay {
	position: static;
	display: block;
	height: auto;
	min-height: 0;
	padding: 0;
	background: transparent;
}

.jex-context--footer .jex-featured__copy {
	display: block;
}

.jex-context--footer .jex-featured__title {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
}

/* Footer Studio: server-rendered, crawlable footer presentation. */
.jex-footer-studio {
	--jex-footer-surface: #fafaf8;
	--jex-footer-surface-end: #fff7ed;
	--jex-footer-text: #101828;
	--jex-footer-muted: #667085;
	--jex-footer-accent: #ff7a6b;
	--jex-footer-button-bg: #101828;
	--jex-footer-button-text: #fff;
	--jex-footer-border: #e4e7ec;
	--jex-footer-radius: 0px;
	--jex-footer-max: 1320px;
	--jex-footer-padding-y: 64px;
	--jex-footer-column-gap: 32px;
	--jex-footer-columns: 5;
	--jex-footer-eyebrow-size: 24px;
	--jex-footer-heading-size: 38px;
	--jex-footer-mobile-eyebrow-size: 18px;
	--jex-footer-mobile-heading-size: 34px;
	--jex-footer-gradient-angle: 135deg;
	--jex-footer-intro-gradient-start: #f2b94b;
	--jex-footer-intro-gradient-end: #ff7a6b;
	--jex-footer-intro-gradient-angle: 90deg;
	box-sizing: border-box;
	container-name: jex-footer;
	container-type: inline-size;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	overflow: clip;
	border: 1px solid var(--jex-footer-border);
	border-radius: var(--jex-footer-radius);
	background: var(--jex-footer-surface);
	color: var(--jex-footer-text);
	font: inherit;
	font-synthesis-weight: none;
}

/* Automatic replacement is progressively enhanced; the adjacent rule prevents
 * a flash in conventional classic-theme markup before JavaScript confirms it. */
[data-jex-auto-footer="replace"] + :is(footer#colophon, #colophon.site-footer, footer.site-footer, .site-footer),
body.jex-footer-theme-replace > :is(footer#colophon, #colophon.site-footer, footer.site-footer),
body.jex-footer-theme-replace > #page + :is(footer#colophon, #colophon.site-footer, footer.site-footer),
body.jex-footer-theme-replace .wp-site-blocks > footer,
[data-jex-theme-footer-suppressed="true"] {
	display: none !important;
}

.jex-footer-studio *,
.jex-footer-studio *::before,
.jex-footer-studio *::after {
	box-sizing: border-box;
}

.jex-footer-studio__content {
	max-height: none;
	opacity: 1;
	visibility: visible;
}

.jex-footer-studio__reveal {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: min(100%, var(--jex-footer-max));
	min-height: 68px;
	margin: 0 auto;
	padding: 14px clamp(22px, 5vw, 72px);
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--jex-footer-text);
	font: inherit;
	font-size: 14px;
	font-weight: 600 !important;
	letter-spacing: -0.01em;
	text-align: start;
	text-transform: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

.jex-footer-studio__reveal svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.jex-footer-studio__reveal:hover {
	color: var(--jex-footer-accent);
}

.jex-footer-studio__reveal:focus-visible {
	outline: 2px solid var(--jex-footer-accent);
	outline-offset: -5px;
}

@media (min-width: 901px) and (any-hover: hover) {
	.jex-footer-visibility--reveal.jex-footer-reveal-ready .jex-footer-studio__reveal {
		display: flex;
	}

	.jex-footer-visibility--reveal.jex-footer-reveal-ready .jex-footer-studio__content {
		max-height: 0;
		overflow: hidden;
		overflow: clip;
		opacity: 0;
		visibility: hidden;
		transition: max-height 360ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease, visibility 0s linear 360ms;
	}

	.jex-footer-visibility--reveal.jex-footer-reveal-ready.is-open .jex-footer-studio__content {
		max-height: 5000px;
		opacity: 1;
		visibility: visible;
		transition: max-height 420ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 220ms ease, visibility 0s;
	}

	.jex-footer-visibility--reveal.jex-footer-reveal-ready.is-open .jex-footer-studio__reveal svg {
		transform: rotate(180deg);
	}
}

.jex-footer-background--gradient {
	background: linear-gradient(var(--jex-footer-gradient-angle), var(--jex-footer-surface), var(--jex-footer-surface-end));
}

.jex-footer-studio__inner {
	width: min(100%, var(--jex-footer-max));
	margin-inline: auto;
	padding: var(--jex-footer-padding-y) clamp(22px, 5vw, 72px);
}

.jex-footer-studio__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: clamp(32px, 7vw, 110px);
}

.jex-footer-studio__intro {
	display: grid;
	justify-items: start;
	max-width: 720px;
}

.jex-footer-studio__eyebrow {
	margin: 0;
	color: var(--jex-footer-accent);
	font-size: clamp(14px, var(--jex-footer-eyebrow-size), 36px);
	font-weight: 600 !important;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.jex-footer-studio__title {
	max-width: 760px;
	margin: 2px 0 0;
	color: var(--jex-footer-text);
	font: inherit;
	font-size: clamp(24px, var(--jex-footer-heading-size), 72px);
	font-weight: 650 !important;
	letter-spacing: -0.035em;
	line-height: 1.08;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
	.jex-footer-intro-gradient--eyebrow .jex-footer-studio__eyebrow,
	.jex-footer-intro-gradient--both .jex-footer-studio__eyebrow,
	.jex-footer-intro-gradient--headline .jex-footer-studio__title,
	.jex-footer-intro-gradient--both .jex-footer-studio__title {
		background-image: linear-gradient(var(--jex-footer-intro-gradient-angle), var(--jex-footer-intro-gradient-start), var(--jex-footer-intro-gradient-end));
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
	}
}

.jex-footer-studio__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	margin-top: 22px;
	padding: 10px 18px;
	border: 1px solid var(--jex-footer-button-bg);
	border-radius: 999px;
	background: var(--jex-footer-button-bg);
	color: var(--jex-footer-button-text);
	font-size: 14px;
	font-weight: 600 !important;
	line-height: 1;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.jex-footer-studio__cta:hover {
	color: var(--jex-footer-button-text);
	opacity: 0.9;
	transform: translateY(-1px);
}

.jex-footer-studio__cta:focus-visible,
.jex-footer-studio__brand:focus-visible,
.jex-footer-studio__socials a:focus-visible,
.jex-footer-studio__trust-mark:focus-visible {
	outline: 2px solid var(--jex-footer-accent);
	outline-offset: 3px;
}

.jex-footer-studio__brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 150px;
	min-height: 48px;
	color: var(--jex-footer-text);
	text-decoration: none;
}

.jex-footer-studio__brand:hover {
	color: var(--jex-footer-accent);
}

.jex-footer-studio__logo {
	display: block;
	width: auto;
	max-width: min(210px, 28vw);
	height: auto;
	max-height: 72px;
	object-fit: contain;
}

.jex-footer-studio__brand-text {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 650 !important;
	font-style: italic;
	letter-spacing: -0.055em;
}

.jex-footer-studio__navigation {
	margin-top: clamp(50px, 8vw, 96px);
}

.jex-footer-studio .jex-root.jex-context--footer {
	--jex-text: var(--jex-footer-text);
	--jex-muted: var(--jex-footer-muted);
	--jex-accent: var(--jex-footer-accent);
	--jex-accent-hover: var(--jex-footer-accent);
	isolation: auto;
	color: var(--jex-footer-text);
}

.jex-footer-studio .jex-context--footer .jex-menu-container {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.jex-footer-studio .jex-root.jex-context--footer .jex-menu {
	grid-template-columns: repeat(var(--jex-footer-effective-columns, var(--jex-footer-columns)), minmax(0, 1fr));
	align-items: start;
	gap: var(--jex-footer-column-gap);
}

.jex-footer-columns--1 { --jex-footer-effective-columns: 1; }
.jex-footer-columns--2 { --jex-footer-effective-columns: 2; }
.jex-footer-columns--3 { --jex-footer-effective-columns: 3; }
.jex-footer-columns--4 { --jex-footer-effective-columns: 4; }
.jex-footer-columns--5 { --jex-footer-effective-columns: 5; }
.jex-footer-columns--6 { --jex-footer-effective-columns: 6; }

.jex-footer-studio .jex-context--footer .jex-link--top {
	padding-bottom: 12px;
	color: var(--jex-footer-text);
	font-size: 14px;
	font-weight: 600 !important;
	letter-spacing: -0.005em;
	line-height: 1.35;
}

.jex-footer-studio .jex-context--footer .jex-link--top .jex-link__headline {
	color: inherit;
	font-size: inherit;
	font-weight: 600 !important;
	letter-spacing: inherit;
	line-height: inherit;
}

.jex-footer-studio .jex-context--footer .jex-link--child {
	position: relative;
	justify-self: start;
	width: fit-content;
	max-width: 100%;
	padding: 6px 0;
	color: var(--jex-footer-text);
	font-size: 14px;
	font-weight: 400 !important;
	letter-spacing: 0;
	line-height: 1.5;
}

.jex-footer-studio .jex-context--footer .jex-link--child .jex-link__headline,
.jex-footer-studio .jex-context--footer .jex-featured__title {
	color: inherit;
	font-size: inherit;
	font-weight: 400 !important;
	letter-spacing: inherit;
	line-height: inherit;
}

.jex-footer-studio .jex-context--footer .jex-link--child::after {
	display: none !important;
	content: none !important;
}

.jex-footer-studio .jex-context--footer .jex-link--child:hover,
.jex-footer-studio .jex-context--footer .jex-link--child:focus-visible {
	color: var(--jex-footer-accent);
}

.jex-footer-studio .jex-context--footer :is(.jex-link__label, .jex-featured__title) {
	text-decoration-color: transparent;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color 150ms ease, text-decoration-color 150ms ease;
}

.jex-footer-studio .jex-context--footer :is(
	.jex-link--child:hover,
	.jex-link--child:focus-visible,
	.jex-item.current-menu-item > .jex-link--child,
	.jex-item.current-menu-ancestor > .jex-link--child
) :is(.jex-link__label, .jex-featured__title) {
	text-decoration-color: currentColor;
}

[dir="rtl"] .jex-footer-studio__cta > span:last-child {
	transform: rotate(180deg);
}

.jex-footer-studio .jex-context--footer .jex-submenu--nested {
	padding-inline-start: 10px;
}

.jex-footer-studio__bottom {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
	align-items: end;
	gap: clamp(28px, 5vw, 70px);
	margin-top: clamp(52px, 9vw, 104px);
	padding-top: 24px;
	border-top: 1px solid var(--jex-footer-border);
}

.jex-footer-studio__meta {
	display: grid;
	gap: 4px;
	max-width: 430px;
	font-size: 13px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.jex-footer-studio__meta strong {
	color: var(--jex-footer-text);
	font-weight: 500 !important;
}

.jex-footer-studio__meta span {
	color: var(--jex-footer-muted);
}

.jex-footer-studio__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px;
}

.jex-footer-studio__socials a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--jex-footer-muted);
	text-decoration: none;
	transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.jex-footer-studio__socials a:hover {
	background: color-mix(in srgb, var(--jex-footer-accent) 12%, transparent);
	color: var(--jex-footer-accent);
	transform: translateY(-1px);
}

.jex-footer-studio__socials svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.jex-footer-studio__trust {
	display: grid;
	justify-items: end;
	gap: 10px;
}

.jex-footer-studio__trust > strong {
	color: var(--jex-footer-text);
	font-size: 13px;
	font-weight: 600 !important;
}

.jex-footer-studio__trust-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 9px;
}

.jex-footer-studio__trust-mark {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 1px solid var(--jex-footer-border);
	border-radius: 50%;
	background: var(--jex-footer-surface);
	color: var(--jex-footer-text);
	text-decoration: none;
}

.jex-footer-studio__trust-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.jex-footer-studio__trust-text {
	display: block;
	max-width: 42px;
	padding: 4px;
	font-size: 7px;
	font-weight: 600 !important;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

.jex-footer-preset--travel {
	box-shadow: inset 0 4px 0 var(--jex-footer-accent);
}

.jex-footer-preset--travel .jex-footer-studio__inner {
	padding-inline: clamp(24px, 6vw, 84px);
}

.jex-footer-preset--corporate .jex-footer-studio__navigation,
.jex-footer-preset--corporate .jex-footer-studio__bottom {
	margin-top: clamp(40px, 6vw, 72px);
}

.jex-footer-preset--corporate .jex-footer-studio__eyebrow {
	font-weight: 600 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jex-footer-preset--minimal .jex-footer-studio__top {
	align-items: center;
}

.jex-footer-preset--minimal .jex-footer-studio__eyebrow {
	display: none;
}

.jex-footer-preset--minimal .jex-footer-studio__navigation,
.jex-footer-preset--minimal .jex-footer-studio__bottom {
	margin-top: clamp(36px, 5vw, 60px);
}

@media (max-width: 1100px) {
	.jex-footer-studio:is(.jex-footer-columns--3, .jex-footer-columns--4, .jex-footer-columns--5, .jex-footer-columns--6) .jex-root.jex-context--footer .jex-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jex-footer-studio__bottom {
		grid-template-columns: minmax(220px, 1fr) auto;
		align-items: center;
	}

	.jex-footer-studio__trust {
		grid-column: 1 / -1;
		justify-items: start;
	}

	.jex-footer-studio__trust-list {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.jex-footer-studio {
		border-inline: 0;
		border-radius: min(var(--jex-footer-radius), 24px);
	}

	.jex-footer-studio__inner {
		padding: clamp(40px, var(--jex-footer-padding-y), 64px) 20px;
	}

	.jex-footer-studio__top {
		grid-template-columns: 1fr;
		justify-items: stretch;
		gap: 24px;
		text-align: start;
	}

	.jex-footer-studio__brand {
		grid-row: 1;
		justify-content: center;
		min-width: 0;
		width: 100%;
	}

	.jex-footer-studio__logo {
		max-width: min(172px, 56vw);
		max-height: 66px;
	}

	.jex-footer-studio__intro {
		grid-row: 2;
		justify-items: start;
		width: 100%;
		max-width: none;
	}

	.jex-footer-studio__eyebrow {
		font-size: clamp(14px, var(--jex-footer-mobile-eyebrow-size), 30px);
		text-align: start;
	}

	.jex-footer-studio__title {
		width: 100%;
		max-width: none;
		margin-inline: 0;
		font-size: clamp(24px, var(--jex-footer-mobile-heading-size), 48px);
		line-height: 1.08;
		text-align: start;
	}

	.jex-footer-mobile-align--start .jex-footer-studio__brand {
		justify-content: flex-start;
	}

	.jex-footer-mobile-align--center .jex-footer-studio__intro {
		justify-items: center;
	}

	.jex-footer-mobile-align--center :is(.jex-footer-studio__eyebrow, .jex-footer-studio__title) {
		text-align: center;
	}

	.jex-footer-studio__cta {
		min-height: 48px;
	}

	.jex-footer-studio__navigation {
		margin-top: 42px;
	}

	.jex-footer-studio:is(.jex-footer-columns--1, .jex-footer-columns--2, .jex-footer-columns--3, .jex-footer-columns--4, .jex-footer-columns--5, .jex-footer-columns--6) .jex-root.jex-context--footer .jex-menu {
		grid-template-columns: minmax(0, 1fr);
		align-items: stretch;
		gap: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top {
		width: 100%;
		min-width: 0;
		padding-block: 22px;
		border: 0 !important;
		border-bottom: 1px solid var(--jex-footer-border) !important;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top:first-child {
		padding-top: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top:last-child {
		padding-bottom: 0;
		border-bottom: 0 !important;
	}

	.jex-footer-studio .jex-context--footer .jex-link--top {
		min-height: 44px;
		padding-bottom: 8px;
		font-size: 15px;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top > .jex-panel {
		gap: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-panel > .jex-item > .jex-link--child {
		justify-self: stretch;
		width: 100%;
		min-height: 44px !important;
		padding-block: 10px;
		font-size: 15px;
	}

	.jex-footer-studio__bottom {
		grid-template-columns: 1fr;
		align-items: center;
		justify-items: center;
		gap: 24px;
		margin-top: 44px;
		text-align: center;
	}

	.jex-footer-studio__meta {
		justify-items: center;
		font-size: 14px;
	}

	.jex-footer-studio__socials {
		justify-content: center;
	}

	.jex-footer-studio__socials a {
		width: 44px;
		height: 44px;
	}

	.jex-footer-studio__trust {
		grid-column: auto;
		justify-items: center;
	}

	.jex-footer-studio__trust-list {
		justify-content: center;
	}

	.jex-footer-studio__cta {
		width: 100%;
		max-width: 360px;
	}
}

@media (max-width: 480px) {
	.jex-footer-studio .jex-root.jex-context--footer .jex-menu {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.jex-footer-studio .jex-context--footer .jex-link--top,
	.jex-footer-studio .jex-context--footer .jex-link--child {
		font-size: 15px;
	}
}

/* Container-query parity keeps Footer Studio responsive inside narrow builder
 * columns even when the browser viewport itself is wide. Viewport rules above
 * remain the progressive fallback for browsers without container queries. */
@container jex-footer (max-width: 1100px) {
	.jex-footer-studio:is(.jex-footer-columns--3, .jex-footer-columns--4, .jex-footer-columns--5, .jex-footer-columns--6) .jex-root.jex-context--footer .jex-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jex-footer-studio__bottom {
		grid-template-columns: minmax(220px, 1fr) auto;
		align-items: center;
	}

	.jex-footer-studio__trust {
		grid-column: 1 / -1;
		justify-items: start;
	}

	.jex-footer-studio__trust-list {
		justify-content: flex-start;
	}
}

@container jex-footer (max-width: 720px) {
	.jex-footer-studio__inner {
		padding: clamp(40px, var(--jex-footer-padding-y), 64px) 20px;
	}

	.jex-footer-studio__top {
		grid-template-columns: minmax(0, 1fr);
		justify-items: stretch;
		gap: 24px;
		text-align: start;
	}

	.jex-footer-studio__brand {
		grid-row: 1;
		justify-content: center;
		min-width: 0;
		width: 100%;
	}

	.jex-footer-studio__intro {
		grid-row: 2;
		justify-items: start;
		width: 100%;
		max-width: none;
	}

	.jex-footer-studio__eyebrow {
		font-size: clamp(14px, var(--jex-footer-mobile-eyebrow-size), 30px);
		text-align: start;
	}

	.jex-footer-studio__title {
		width: 100%;
		max-width: none;
		margin-inline: 0;
		font-size: clamp(24px, var(--jex-footer-mobile-heading-size), 48px);
		line-height: 1.08;
		text-align: start;
	}

	.jex-footer-mobile-align--start .jex-footer-studio__brand {
		justify-content: flex-start;
	}

	.jex-footer-mobile-align--center .jex-footer-studio__intro {
		justify-items: center;
	}

	.jex-footer-mobile-align--center :is(.jex-footer-studio__eyebrow, .jex-footer-studio__title) {
		text-align: center;
	}

	.jex-footer-studio__navigation {
		margin-top: 42px;
	}

	.jex-footer-studio:is(.jex-footer-columns--1, .jex-footer-columns--2, .jex-footer-columns--3, .jex-footer-columns--4, .jex-footer-columns--5, .jex-footer-columns--6) .jex-root.jex-context--footer .jex-menu {
		grid-template-columns: minmax(0, 1fr);
		align-items: stretch;
		gap: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top {
		width: 100%;
		min-width: 0;
		padding-block: 22px;
		border: 0 !important;
		border-bottom: 1px solid var(--jex-footer-border) !important;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top:first-child {
		padding-top: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top:last-child {
		padding-bottom: 0;
		border-bottom: 0 !important;
	}

	.jex-footer-studio .jex-context--footer .jex-link--top {
		min-height: 44px;
		padding-bottom: 8px;
		font-size: 15px;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-menu > .jex-item--top > .jex-panel {
		gap: 0;
	}

	.jex-footer-studio .jex-root.jex-context--footer .jex-panel > .jex-item > .jex-link--child {
		justify-self: stretch;
		width: 100%;
		min-height: 44px !important;
		padding-block: 10px;
		font-size: 15px;
	}

	.jex-footer-studio__bottom {
		grid-template-columns: minmax(0, 1fr);
		align-items: center;
		justify-items: center;
		gap: 24px;
		margin-top: 44px;
		text-align: center;
	}

	.jex-footer-studio__meta {
		justify-items: center;
		font-size: 14px;
	}

	.jex-footer-studio__socials,
	.jex-footer-studio__trust-list {
		justify-content: center;
	}

	.jex-footer-studio__socials a {
		width: 44px;
		height: 44px;
	}

	.jex-footer-studio__trust {
		grid-column: auto;
		justify-items: center;
	}

	.jex-footer-studio__cta {
		width: 100%;
		max-width: 360px;
	}
}

@container jex-footer (max-width: 480px) {
	.jex-footer-studio .jex-context--footer :is(.jex-link--top, .jex-link--child) {
		font-size: 15px;
	}
}

@media (forced-colors: active) {
	.jex-panel__surface,
	.jex-icon,
	.jex-mobile-toggle,
	.jex-drawer__close {
		border: 1px solid CanvasText;
	}

	.jex-link:focus-visible,
	.jex-disclosure:focus-visible {
		outline: 2px solid Highlight;
		outline-offset: 2px;
	}

	.jex-footer-studio__eyebrow,
	.jex-footer-studio__title {
		background: none;
		color: CanvasText;
		-webkit-text-fill-color: currentColor;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jex-root *,
	.jex-root *::before,
	.jex-root *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
	}

	.jex-footer-studio *,
	.jex-footer-studio *::before,
	.jex-footer-studio *::after {
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
	}
}
