/*
 * Desktop nav dropdown — matches live nvpg.nl.
 * Dropdown spans full nav-row width (minus 100px on each side), white pill
 * with 40px radius, 35px padding, NO shadow. Contains two side-by-side ULs
 * ("column width-33 menu") rendered via flex-row.
 */

/* li.has-children stays static (matches live) — submenu-wrap positions against document. */

/* Hide the dropdown by default — override Toon-CMS default shown/hidden state. */
.row.nth-child-1 li.has-children > .submenu-wrap.slide {
	display: none;
}

/* Reveal on hover, focus-within, or .open class. Match live pill geometry. */
.row.nth-child-1 li.has-children:hover > .submenu-wrap,
.row.nth-child-1 li.has-children:focus-within > .submenu-wrap,
.row.nth-child-1 li.has-children.open > .submenu-wrap,
.row.nth-child-1 li.has-children:hover > .submenu-wrap.slide,
.row.nth-child-1 li.has-children:focus-within > .submenu-wrap.slide,
.row.nth-child-1 li.has-children.open > .submenu-wrap.slide {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 0 !important;
	position: absolute !important;
	top: 80px !important;
	left: 100px !important;
	right: auto !important;
	width: calc(100vw - 200px) !important;
	max-width: none !important;
	height: auto !important;
	min-width: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	border-radius: 40px !important;
	padding: 35px !important;
	margin: 0 !important;
	z-index: 100 !important;
}

/* Each of the 2 ULs becomes one equal-width column inside the flex row. */
.row.nth-child-1 li.has-children .submenu-wrap ul,
.row.nth-child-1 li.has-children .submenu-wrap ul.column,
.row.nth-child-1 li.has-children .submenu-wrap ul.menu {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	flex: 1 1 0 !important;
	width: auto !important;
	float: none !important;
}

.row.nth-child-1 li.has-children .submenu-wrap li,
.row.nth-child-1 li.has-children .submenu-wrap ul > li {
	padding: 6px 10px 6px 0 !important;
	width: 100% !important;
	float: none !important;
	display: block !important;
	background: transparent !important;
	list-style: none !important;
}

.row.nth-child-1 li.has-children .submenu-wrap a {
	display: block !important;
	padding: 0 !important;
	color: #000 !important;
	font-family: 'Lato', sans-serif !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	text-decoration: none !important;
	white-space: normal !important;
	background: transparent !important;
	line-height: 1.5 !important;
}

.row.nth-child-1 li.has-children .submenu-wrap a:hover,
.row.nth-child-1 li.has-children .submenu-wrap a:focus {
	color: #3a4c2f !important;
	text-decoration: underline !important;
}

/* Hide the mobile chevron button in desktop nav */
.row.nth-child-1 li.has-children > button.open-menu {
	display: none;
}

/* Hide down-arrow on nav items without children */
.row.nth-child-1 li.no-children .menu-arrow,
.row.nth-child-1 li.no-children .drop-down {
	display: none !important;
}

/* Arrow down (▼) by default, rotates to up (▲) on hover / when .open */
.row.nth-child-1 li.has-children .menu-arrow,
.row.nth-child-1 li.has-children .drop-down {
	transition: transform 0.15s ease;
	display: inline-block;
}

.row.nth-child-1 li.has-children:hover .menu-arrow,
.row.nth-child-1 li.has-children.open .menu-arrow,
.row.nth-child-1 li.has-children:hover .drop-down,
.row.nth-child-1 li.has-children.open .drop-down {
	transform: rotate(180deg);
}
