/* ============ Pixfort-header verbergen (glitchte) ============ */
.pixfort-header-area,
.pixfort-header-area.pix-topbar,
.pixfort-header-area.pix-header,
header.pixfort-header,
.pix-header-placeholder,
.pixfort-header-placeholder { display: none !important; }

/* ============ Custom header (Giga Kozijn) ============ */
.gkh-topbar, .gkh-header, .gkh-drawer {
	--gkh-primary: #F35E06;
	--gkh-primary-dark: #d24f00;
	--gkh-ink: #1f2933;
	--gkh-dark: #14212e;
	--gkh-muted: #5b6b7b;
	--gkh-border: #e7ecf1;
	font-family: inherit;
	box-sizing: border-box;
}
.gkh-topbar *, .gkh-header *, .gkh-drawer *,
.gkh-topbar *::before, .gkh-header *::before, .gkh-drawer *::before { box-sizing: border-box; }

.gkh-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 22px;
}

/* Topbar */
.gkh-topbar {
	background: var(--gkh-primary);
	color: #fff;
	font-size: 13px;
	line-height: 1;
}
.gkh-topbar .gkh-container {
	display: flex;
	gap: 26px;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	flex-wrap: wrap;
}
.gkh-topbar span { display: inline-flex; align-items: center; gap: 7px; }
.gkh-check { color: #fff; font-weight: 800; }

/* Header bar */
.gkh-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	background: #fff;
	border-bottom: 1px solid var(--gkh-border);
	transition: box-shadow .2s ease;
}
.gkh-header.is-stuck { box-shadow: 0 6px 24px rgba(20,33,46,.10); }
.gkh-header__row {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 72px;
}
.gkh-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.gkh-logo img { height: 44px; width: auto; display: block; }

/* Desktop nav */
.gkh-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}
.gkh-nav__item { position: relative; }
.gkh-nav__item > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 14px;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--gkh-ink);
	text-decoration: none;
	border-radius: 8px;
	white-space: nowrap;
	transition: color .15s, background .15s;
}
.gkh-nav__item > a:hover { color: var(--gkh-primary); background: #fff5ef; }
.gkh-caret { transition: transform .2s ease; }
.gkh-has-drop:hover > a .gkh-caret { transform: rotate(180deg); }

/* Dropdown */
.gkh-drop {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	background: #fff;
	border: 1px solid var(--gkh-border);
	border-radius: 14px;
	box-shadow: 0 18px 44px rgba(20,33,46,.14);
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 50;
}
.gkh-has-drop:hover > .gkh-drop,
.gkh-has-drop:focus-within > .gkh-drop {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.gkh-drop::before { /* hover-brug */
	content: "";
	position: absolute;
	top: -8px; left: 0; right: 0; height: 8px;
}
.gkh-drop__list { display: flex; flex-direction: column; min-width: 240px; }
.gkh-drop__list a {
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 15px;
	color: var(--gkh-ink);
	text-decoration: none;
	white-space: nowrap;
}
.gkh-drop__list a:hover { background: #fff5ef; color: var(--gkh-primary); }

/* Mega dropdown (kolommen) */
.gkh-mega { display: flex; gap: 6px; }
.gkh-mega__col {
	display: flex;
	flex-direction: column;
	min-width: 220px;
	padding: 6px;
}
.gkh-mega__col + .gkh-mega__col { border-left: 1px solid var(--gkh-border); }
.gkh-mega__head {
	font-size: 14px;
	font-weight: 700;
	color: var(--gkh-primary);
	text-decoration: none;
	padding: 8px 12px 6px;
}
.gkh-mega__head:hover { text-decoration: underline; }
.gkh-mega__link {
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14.5px;
	color: var(--gkh-muted);
	text-decoration: none;
	white-space: nowrap;
}
.gkh-mega__link:hover { background: #f6f8fa; color: var(--gkh-ink); }

/* Actions */
.gkh-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.gkh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background .15s, color .15s, border-color .15s, transform .05s;
	white-space: nowrap;
}
.gkh-btn--primary { background: var(--gkh-primary); color: #fff; border-color: var(--gkh-primary); }
.gkh-btn--primary:hover { background: var(--gkh-primary-dark); border-color: var(--gkh-primary-dark); color: #fff; }
.gkh-btn--primary:active { transform: translateY(1px); }
.gkh-btn--block { width: 100%; }

/* Burger */
.gkh-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0 10px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.gkh-burger span {
	display: block;
	height: 2.5px;
	width: 100%;
	background: var(--gkh-ink);
	border-radius: 3px;
	transition: transform .2s, opacity .2s;
}

/* Klantenservice-icoon met online-dot */
.gkh-support {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f4f6f8;
	color: var(--gkh-ink);
	flex: 0 0 auto;
	text-decoration: none;
	transition: background .15s;
}
.gkh-support:hover { background: #eaeef2; }
.gkh-support svg { width: 22px; height: 22px; }
.gkh-support__dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid #fff;
}
.gkh-support__dot::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: rgba(34,197,94,.55);
	z-index: -1;
	animation: gkhPulse 1.9s ease-out infinite;
}
@keyframes gkhPulse {
	0% { transform: scale(.7); opacity: .8; }
	70% { transform: scale(2); opacity: 0; }
	100% { opacity: 0; }
}

/* Drawer */
.gkh-drawer { position: fixed; inset: 0; z-index: 9500; }
.gkh-drawer[hidden] { display: none; }
.gkh-drawer__overlay { position: absolute; inset: 0; background: rgba(20,33,46,.5); opacity: 0; transition: opacity .25s; }
.gkh-drawer.is-open .gkh-drawer__overlay { opacity: 1; }
.gkh-drawer__panel {
	position: absolute;
	top: 0; right: 0;
	height: 100%;
	width: min(360px, 88vw);
	background: #fff;
	box-shadow: -12px 0 40px rgba(20,33,46,.2);
	padding: 18px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .28s cubic-bezier(.4,0,.2,1);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.gkh-drawer.is-open .gkh-drawer__panel { transform: translateX(0); }
.gkh-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.gkh-drawer__head .gkh-logo img { height: 40px; }
.gkh-drawer__close { background: none; border: none; font-size: 32px; line-height: 1; color: var(--gkh-muted); cursor: pointer; }
.gkh-drawer__nav { display: flex; flex-direction: column; }
.gkh-m-link, .gkh-m-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 6px;
	font-size: 17px;
	font-weight: 600;
	color: var(--gkh-ink);
	text-decoration: none;
	background: none;
	border: none;
	border-bottom: 1px solid var(--gkh-border);
	cursor: pointer;
	text-align: left;
}
.gkh-m-toggle[aria-expanded="true"] .gkh-caret { transform: rotate(180deg); }
.gkh-m-sub { display: flex; flex-direction: column; padding: 4px 0 10px; }
.gkh-m-sub[hidden] { display: none; }
.gkh-m-sub a {
	padding: 9px 14px;
	font-size: 15px;
	color: var(--gkh-muted);
	text-decoration: none;
}
.gkh-m-sub a:hover { color: var(--gkh-primary); }
.gkh-m-sub__all { font-weight: 700; color: var(--gkh-ink) !important; }
.gkh-m-sub__deep { padding-left: 28px; font-size: 14px; opacity: .85; }

body.gkh-no-scroll { overflow: hidden; }

/* Responsive */
@media (max-width: 1024px) {
	.gkh-nav { display: none; }
	.gkh-burger { display: flex; padding-left: 0; }
	.gkh-header__row { min-height: 64px; gap: 8px; }
	/* Mobiel: hamburger links, logo gecentreerd, support-icoon rechts */
	.gkh-actions { order: 1; margin: 0; }
	.gkh-logo { order: 2; flex: 1 1 auto; display: flex; justify-content: center; }
	.gkh-support { order: 3; }
	/* Topbar op tablet: 3e USP verbergen zodat het op één regel past */
	.gkh-topbar span:nth-child(3) { display: none; }
	.gkh-topbar .gkh-container { gap: 18px; }
}
@media (max-width: 640px) {
	.gkh-btn--primary:not(.gkh-btn--block) { display: none; } /* CTA in drawer op mobiel */
	/* Topbar: één strakke, gecentreerde regel */
	.gkh-topbar { font-size: 12px; }
	.gkh-topbar .gkh-container { gap: 0; min-height: 34px; flex-wrap: nowrap; padding: 0 14px; }
	.gkh-topbar span:nth-child(2) { display: none; }
	.gkh-topbar span:first-child { text-align: center; }
	.gkh-logo img { height: 36px; }
	.gkh-header__row { gap: 12px; min-height: 60px; }
}
