html.zak-age-gate-open,
body.zak-age-gate-open {
	overflow: hidden;
}

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

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

.zak-age-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(4px);
}

.zak-age-gate__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	padding: 36px;
	text-align: center;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.zak-age-gate__panel h2 {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1.2;
}

.zak-age-gate__panel p {
	margin: 0 0 26px;
	font-size: 17px;
	line-height: 1.6;
}

.zak-age-gate__buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.zak-age-gate__button {
	min-width: 120px;
	padding: 12px 22px;
	border: 0;
	border-radius: 4px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.zak-age-gate__button:hover,
.zak-age-gate__button:focus {
	transform: translateY(-1px);
}

.zak-age-gate__button--yes {
	color: #fff;
	background: #7a3f18;
}

.zak-age-gate__button--no {
	color: #333;
	background: #e5e5e5;
}

@media (max-width: 520px) {
	.zak-age-gate__panel {
		padding: 28px 20px;
	}

	.zak-age-gate__buttons {
		flex-direction: column;
	}

	.zak-age-gate__button {
		width: 100%;
	}
}