/* Custom Mega Menu — 0fc4c63b */

.cmm-0fc4c63b-wrapper {
	position: relative;
	z-index: 1000;
	--cmm-bp: 1024px;
}

/* Top-level nav */
.cmm-0fc4c63b-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.cmm-0fc4c63b-top-item {
	position: relative;
	list-style: none;
}

.cmm-0fc4c63b-top-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	position: relative;
	transition: color 0.25s ease, background-color 0.25s ease;
	cursor: pointer;
	white-space: nowrap;
}

/* Active underline indicator */
.cmm-0fc4c63b-top-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: transparent;
	transition: background-color 0.25s ease;
	border-radius: 2px;
}

/* Arrow icon */
.cmm-0fc4c63b-arrow {
	display: inline-flex;
	align-items: center;
	transition: transform 0.25s ease;
	line-height: 1;
}

.cmm-0fc4c63b-arrow svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: currentColor;
}

.cmm-0fc4c63b-top-item.cmm-active .cmm-0fc4c63b-arrow {
	transform: rotate(180deg);
}

/* Dropdown panel */
.cmm-0fc4c63b-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1001;
	min-width: 280px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, transform, visibility;
	transition-timing-function: ease;
}

.cmm-0fc4c63b-wrapper[data-animation="fade"] .cmm-0fc4c63b-dropdown {
	transform: translateY(0);
}

.cmm-0fc4c63b-wrapper[data-animation="slide"] .cmm-0fc4c63b-dropdown {
	transform: translateY(-8px);
}

.cmm-0fc4c63b-top-item.cmm-active > .cmm-0fc4c63b-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* Dropdown items */
.cmm-0fc4c63b-dd-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	position: relative;
	transition-property: background-color, color;
	transition-timing-function: ease;
	box-sizing: border-box;
	overflow: hidden;
}

.cmm-0fc4c63b-dd-item.cmm-has-separator + .cmm-0fc4c63b-dd-item.cmm-has-separator {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #E5E7EB;
}

.cmm-0fc4c63b-dd-label {
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.cmm-0fc4c63b-dd-tagline {
	line-height: 1.5;
	margin-top: 2px;
	transition: color 0.2s ease;
}

/* ===================== Mobile Toggle / Drawer ===================== */

.cmm-0fc4c63b-toggle,
.cmm-0fc4c63b-close {
	display: none;
	background: transparent;
	border: 0;
	padding: 8px;
	margin: 0;
	cursor: pointer;
	color: #0B2545;
	line-height: 1;
	font-size: 24px;
}

.cmm-0fc4c63b-toggle svg,
.cmm-0fc4c63b-close svg {
	display: block;
	width: 1em;
	height: 1em;
}

.cmm-0fc4c63b-toggle i,
.cmm-0fc4c63b-close i {
	display: block;
	font-size: inherit;
	line-height: 1;
}

.cmm-0fc4c63b-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(11, 37, 69, 0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
	z-index: 9998;
}

.cmm-0fc4c63b-drawer-header {
	display: none;
	justify-content: flex-end;
	margin-bottom: 12px;
}

/*
 * Drawer is a layout passthrough on desktop (children flow into the wrapper).
 * It only becomes a real positioned box when the JS adds .cmm-is-mobile,
 * which is driven by the user-configured breakpoint (data-breakpoint).
 * Keeping this rule outside of any media query avoids a mismatch between
 * a hardcoded CSS breakpoint and the JS-applied class.
 */
.cmm-0fc4c63b-drawer {
	display: contents;
}

/* Mobile collapsed state: applied by JS when viewport <= configured breakpoint */
.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-overlay {
	display: block;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-drawer {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100vh;
	height: 100dvh;
	background-color: #fff;
	z-index: 9999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
}

/* Suppress entry animation on initial paint. JS adds .cmm-is-ready on the
   next frame after first evaluation, which re-enables transitions for
   subsequent open/close. */
.cmm-0fc4c63b-wrapper:not(.cmm-is-ready) .cmm-0fc4c63b-drawer,
.cmm-0fc4c63b-wrapper:not(.cmm-is-ready) .cmm-0fc4c63b-overlay {
	transition: none !important;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile[data-drawer-position="right"] .cmm-0fc4c63b-drawer {
	right: 0;
	transform: translateX(100%);
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile[data-drawer-position="left"] .cmm-0fc4c63b-drawer {
	left: 0;
	transform: translateX(-100%);
	box-shadow: 8px 0 24px rgba(0, 0, 0, 0.12);
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile[data-drawer-position="full"] .cmm-0fc4c63b-drawer {
	left: 0;
	right: 0;
	width: 100% !important;
	transform: translateY(-100%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile.cmm-is-open .cmm-0fc4c63b-drawer {
	transform: translate(0, 0);
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile.cmm-is-open .cmm-0fc4c63b-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-drawer-header {
	display: flex;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Mobile: stack the nav vertically */
.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-nav {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-top-item {
	width: 100%;
	border-bottom: 1px solid #E5E7EB;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-top-link {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 14px 4px;
}

/* Mobile: dropdowns become inline accordions */
.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-dropdown {
	position: static;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	display: none;
	min-width: 0;
	width: 100%;
	box-shadow: none;
	border: 0;
	margin: 0;
	padding: 0 0 8px;
	background-color: transparent;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-top-item.cmm-active > .cmm-0fc4c63b-dropdown {
	display: block;
}

.cmm-0fc4c63b-wrapper.cmm-is-mobile .cmm-0fc4c63b-top-link::after {
	display: none;
}

/* Lock body scroll while drawer is open */
body.cmm-0fc4c63b-body-locked {
	overflow: hidden;
}
