/* Landingspagina "Onthaasten" — losstaand van de reguliere site-CSS, alleen
   geladen op deze ene pagina (page-template-blank.php, dus geen menu/footer). */

/* De WPFront-notificatiebalk ("Word deel van de community...") hookt in op
   wp_body_open, vóór Divi's eigen header-check — daardoor verschijnt hij ook
   op deze template-loze pagina. Hier bewust verborgen: geen afleiding vlak
   boven de hero. */
#wpfront-notification-bar-spacer,
#wpfront-notification-bar {
	display: none !important;
}

.lp-root {
	max-width: 100%;
	margin: 0;
	color: #222125;
	background: #FAF7F2;
}

.lp-root * {
	box-sizing: border-box;
}

/* Topbar: enkel logo, geen navigatie */
.lp-topbar {
	text-align: center;
	padding: 24px 20px;
}
.lp-topbar img {
	height: 40px;
	width: auto;
}

/* Hero */
.lp-hero {
	position: relative;
	text-align: center;
	padding: 56px 20px 72px;
	background: linear-gradient(180deg, #EFF6F4 0%, #FAF7F2 100%);
	overflow: hidden;
}
.lp-hero:before {
	content: "";
	position: absolute;
	top: -160px;
	right: -160px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(92,168,159,0.16) 0%, rgba(92,168,159,0) 70%);
	pointer-events: none;
}
.lp-hero-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 48px;
	text-align: left;
}
.lp-hero-text {
	flex: 1 1 0;
	min-width: 0;
}
.lp-hero-badge {
	display: inline-block;
	background: #fff;
	color: #4a8f87;
	border: 1px solid #5CA89F;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin: 0 0 18px;
}
.lp-hero-image {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
}
.lp-hero-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 24px 32px rgba(34, 33, 37, 0.16));
}
.lp-hero h1 {
	font-size: 42px;
	line-height: 1.2;
	margin: 0 0 20px;
	color: #222125;
}
.lp-hero-sub {
	font-size: 18px;
	line-height: 1.6;
	color: #444;
	margin: 0 0 32px;
}
.lp-cta-button {
	display: inline-block;
	background: #5CA89F;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 16px 36px;
	border-radius: 6px;
	font-size: 17px;
	transition: background 0.2s ease;
}
.lp-cta-button:hover {
	background: #4a8f87;
	color: #fff;
}

/* USP's */
.lp-usps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}
.lp-usp {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 500;
	max-width: 260px;
}
.lp-usp img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* Bundle-banner */
.lp-bundle-banner {
	background: #5CA89F;
	color: #fff;
	text-align: center;
	padding: 18px 20px;
	font-size: 18px;
	font-weight: 600;
}
.lp-bundle-banner strong {
	text-decoration: underline;
}

/* Productgrid */
.lp-products {
	max-width: 1100px;
	margin: 0 auto;
	padding: 56px 20px;
	text-align: center;
}
.lp-products h2 {
	font-size: 28px;
	margin: 0 0 40px;
	color: #222125;
}
.lp-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: left;
}
.lp-product-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
}
.lp-product-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.lp-product-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.lp-product-card h3 {
	font-size: 17px;
	margin: 0 0 8px;
	color: #222125;
}
.lp-product-card .lp-price {
	font-weight: 700;
	color: #5CA89F;
	margin: 0 0 10px;
}
.lp-product-card p.lp-desc {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	margin: 0 0 16px;
	flex-grow: 1;
}
.lp-product-card .lp-buy-button {
	display: block;
	width: 100%;
	text-align: center;
	background: #222125;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 12px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s ease;
}
.lp-product-card .lp-buy-button:hover {
	background: #5CA89F;
	color: #fff;
}
.lp-product-card .lp-buy-button:disabled {
	opacity: 0.7;
	cursor: default;
}

/* Winkelwagen-balk: verschijnt onderin zodra er iets is toegevoegd, zodat je
   op deze menu-loze pagina toch kunt afrekenen zonder terug te bladeren. */
.lp-cart-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -120px;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
	padding: 14px 20px;
	z-index: 9999;
	transition: bottom 0.3s ease;
}
.lp-cart-bar--visible {
	bottom: 0;
}
.lp-cart-bar-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.lp-cart-bar-info {
	font-size: 14px;
	flex: 1 1 260px;
	min-width: 220px;
}
.lp-cart-progress {
	background: #eee;
	border-radius: 999px;
	height: 6px;
	margin: 8px 0 4px;
	overflow: hidden;
}
.lp-cart-progress-bar {
	background: #5CA89F;
	height: 100%;
	width: 0;
	transition: width 0.3s ease;
}
.lp-cart-progress-note {
	font-size: 12px;
	color: #666;
}
.lp-cart-bar-checkout {
	padding: 12px 28px;
	white-space: nowrap;
}

/* Trust badges */
.lp-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px 56px;
}
.lp-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 240px;
}
.lp-trust-item img {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}
.lp-trust-item strong {
	display: block;
	font-size: 14px;
}
.lp-trust-item span {
	font-size: 13px;
	color: #666;
}

/* Footer minimaal */
.lp-footer {
	text-align: center;
	padding: 24px 20px;
	font-size: 13px;
	color: #888;
}
.lp-footer a {
	color: #888;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
	.lp-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.lp-hero h1 {
		font-size: 32px;
	}
	.lp-hero-inner {
		flex-direction: column-reverse;
		gap: 32px;
	}
	.lp-hero-text,
	.lp-hero-image {
		text-align: center;
	}
	.lp-hero-image img {
		max-width: 340px;
	}
}

@media (max-width: 600px) {
	.lp-product-grid {
		grid-template-columns: 1fr;
	}
	.lp-hero h1 {
		font-size: 26px;
	}
	.lp-hero-sub {
		font-size: 16px;
	}
	.lp-usps {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 32px;
	}
	.lp-trust {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 32px;
	}
}
