body.harfest-age-gate-active {
	overflow: hidden !important;
}

.harfest-age-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

.harfest-age-gate__overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 1;
}

.harfest-age-gate__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	padding: 40px 36px;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 2px;
	color: #fff;
	text-align: center;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.harfest-age-gate__title {
	margin: 0 0 16px;
	font-family: "neue-haas-grotesk-text", "Hanken Grotesk", sans-serif;
	font-size: clamp(22px, 4vw, 28px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.harfest-age-gate__text {
	margin: 0 0 32px;
	font-family: "neue-haas-grotesk-text", "Hanken Grotesk", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

.harfest-age-gate__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.harfest-age-gate__btn {
	display: block;
	width: 100%;
	padding: 14px 24px;
	border: none;
	border-radius: 0;
	font-family: "neue-haas-grotesk-text", "Hanken Grotesk", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.harfest-age-gate__btn--confirm {
	background: #fff;
	color: #000;
}

.harfest-age-gate__btn--confirm:hover,
.harfest-age-gate__btn--confirm:focus-visible {
	background: rgba(255, 255, 255, 0.88);
}

.harfest-age-gate__btn--deny {
	background: transparent;
	color: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.harfest-age-gate__btn--deny:hover,
.harfest-age-gate__btn--deny:focus-visible {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.harfest-age-gate__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.harfest-age-gate.is-hidden {
	display: none;
}

@media (min-width: 480px) {
	.harfest-age-gate__actions {
		flex-direction: row;
	}

	.harfest-age-gate__btn {
		flex: 1;
	}
}
