/**
 * Il Vino Piemonte — 18+ leeftijdscheck.
 * Schermvullende zwarte achtergrond met een gecentreerde witte bevestigingsbox.
 */

.ivag-age-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #1c1c1c;
}

.ivag-age-gate[hidden] {
	display: none;
}

/* Achtergrond-scroll blokkeren zolang de check open is. */
html.ivag-open,
body.ivag-open {
	overflow: hidden;
}

.ivag-age-gate__box {
	width: 100%;
	max-width: 1160px;
	background: #ffffff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	font-family: inherit;
}

.ivag-age-gate__head {
	position: relative;
	padding: 30px 40px;
}

.ivag-age-gate__close {
	position: absolute;
	top: 18px;
	right: 22px;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	padding: 6px;
}

.ivag-age-gate__text {
	margin: 6px 0 0;
	padding-right: 30px;
	color: #2a3b4d;
	font-size: 16px;
	line-height: 1.5;
}

.ivag-age-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 22px 40px 26px;
	background: #f5f5f5;
}

.ivag-age-gate__btn {
	border: 0;
	cursor: pointer;
	padding: 16px 26px;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	transition: opacity 0.15s ease;
}

.ivag-age-gate__btn:hover {
	opacity: 0.88;
}

.ivag-age-gate__btn--yes {
	background: #000000;
}

.ivag-age-gate__btn--no {
	background: #c9b291;
}

@media (max-width: 600px) {
	.ivag-age-gate__head {
		padding: 26px 20px;
	}

	.ivag-age-gate__actions {
		padding: 18px 20px 22px;
	}

	.ivag-age-gate__btn {
		flex: 1 1 100%;
		text-align: center;
	}
}
