/* Age verification popup */

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

/* Shown via JS by adding .is-active */
.age-gate.is-active {
	display: flex;
}

/* When the user is denied, stop any interaction with the page behind. */
body.age-gate-locked {
	overflow: hidden;
}

.age-gate__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.age-gate__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 760px;
	background: #fff;
	border-top: 6px solid #000;
	border-bottom: 6px solid #000;
	padding: 60px 30px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.age-gate__title {
	font-size: 56px;
	line-height: 1.1;
	margin: 0 0 20px;
	color: #111;
}

.age-gate__text {
	font-size: 18px;
	color: #777;
	max-width: 560px;
	margin: 0 auto 30px;
}

.age-gate__box--deny .age-gate__text {
	margin-bottom: 0;
}

.age-gate__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.age-gate__btn {
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 16px 28px;
}

.age-gate__btn--yes {
	background: #7a6552;
	color: #fff;
}

.age-gate__btn--yes:hover {
	background: #5f4f40;
}

.age-gate__btn--no {
	background: #f2f2f2;
	color: #333;
}

.age-gate__btn--no:hover {
	background: #e4e4e4;
}

@media (max-width: 575px) {
	.age-gate__title {
		font-size: 36px;
	}

	.age-gate__text {
		font-size: 16px;
	}

	.age-gate__btn {
		width: 100%;
	}
}
