#header .ot-nav {
	width: 100%;
}

#header .ot-top-cta {
	background: transparent;
	border: 1px solid #49B749;
	border-radius: 999px;
	color: #49B749;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.6px;
	padding: 6px 14px;
	text-decoration: none;
	text-transform: uppercase;
}

#header .ot-top-cta:hover,
#header .ot-top-cta:focus {
	background: rgba(73, 183, 73, 0.08);
	color: #ffffff;
}

#header .ot-top-cta__icon {
	font-size: 12px;
	line-height: 1;
	color: #49B749;
}

#header .ot-overlay-scrim {
	background: rgba(0, 0, 0, 0.15);
	border: 0;
	cursor: pointer;
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 150;
}

#header .ot-menu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

#header .ot-menu-panel {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
}

#header .ot-menu-header {
	display: none;
}

#header .ot-menu {
	display: flex;
	align-items: center;
	/* gap: 16px; */
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: flex-end;
	width: 100%;
}

#header .ot-menu-link {
	color: #1f1f1f;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 8px 6px;
	text-decoration: none;
	text-transform: uppercase;
}

#header .ot-menu-item {
	position: relative;
	list-style: none;
}

#header .ot-nav .ot-mega {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

#header.ot-overlay-open .ot-overlay-scrim {
	display: block;
}

#header .ot-nav .ot-menu-item.has-mega:hover > .ot-mega,
#header .ot-nav .ot-menu-item.has-mega:focus-within > .ot-mega {
	display: block !important;
	opacity: 1 !important;
	transform: translate(-50%, 0);
	visibility: visible !important;
}

#header .ot-menu-item.is-open > .ot-mega {
	display: block !important;
	opacity: 1 !important;
	transform: translate(-50%, 0);
	visibility: visible !important;
}

#header .ot-mega {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
	left: 50%;
	opacity: 0;
	padding: 18px;
	position: absolute;
	top: calc(100% + 8px);
	transform: translate(-50%, 10px);
	transition: all 0.2s ease;
	visibility: hidden;
	width: min(980px, calc(100vw - 40px));
	z-index: 200;
}

#header .ot-mega-inner {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 220px);
}

#header .ot-mega-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#header .ot-mega-title {
	color: #1f1f1f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

#header .ot-mega-link {
	background: #f5f6f7;
	border-radius: 10px;
	color: #1f1f1f;
	display: block;
	padding: 8px 10px;
	text-decoration: none;
}

#header .ot-mega-link:hover,
#header .ot-mega-link:focus {
	background: #e7f3ea;
	color: #1f7f2b;
}

#header .ot-mega-feature {
	display: flex;
}

#header .ot-feature-card {
	background: #f1f7f2;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 100%;
	padding: 14px;
}

#header .ot-feature-img {
	border-radius: 10px;
	height: auto;
	object-fit: cover;
	width: 100%;
}

#header .ot-feature-title {
	color: #1f1f1f;
	font-weight: 700;
}

#header .ot-feature-text {
	color: #3a3a3a;
	font-size: 0.9em;
}

#header .ot-feature-cta {
	color: #1f7f2b;
	font-weight: 600;
	margin-top: auto;
	text-decoration: none;
}

#header .ot-menu-close {
	display: none;
}

@media (max-width: 991px) {
	#header .ot-overlay-scrim {
		display: none !important;
	}
	#header .ot-menu-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 16px;
	}

	#header .ot-menu-panel {
		align-items: stretch;
		background: #ffffff;
		flex-direction: column;
		inset: 0;
		overflow: auto;
		padding: 20px;
		position: fixed;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		z-index: 2000;
	}

	#header .ot-menu-toggle:checked ~ .ot-menu-panel {
		transform: translateX(0);
	}

	#header .ot-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	#header .ot-menu-link {
		font-size: 14px;
		padding: 12px 6px;
	}

	#header .ot-mega {
		display: block !important;
		box-shadow: none;
		margin: 4px 0 12px;
		opacity: 1;
		padding: 0;
		position: static;
		transform: none;
		visibility: visible;
		width: 100%;
	}

	#header .ot-mega-inner {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	#header .ot-feature-card {
		order: -1;
	}

	#header .ot-menu-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 6px 10px;
		border: 1px solid #e1e1e1;
		border-radius: 999px;
		cursor: pointer;
		font-size: 12px;
	}
}

@media (min-width: 992px) {
	#header .ot-menu-button {
		display: none;
	}
}

.ot-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 3000;
}

.ot-modal.is-open {
	display: flex;
}

.ot-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.ot-modal__panel {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.5);
	max-width: 640px;
	width: 100%;
	padding: 24px;
	z-index: 1;
}

.ot-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: #666666;
	cursor: pointer;
}

.ot-modal__title {
	margin-bottom: 16px;
}

.ot-modal__form .form-group {
	margin-bottom: 12px;
}

.ot-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
}

body.ot-modal-open {
	overflow: hidden;
}
