html.ohb-age-gate-locked,
body.ohb-age-gate-locked {
	overflow: hidden;
}

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

.ohb-age-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.72);
	backdrop-filter: blur(3px);
}

.ohb-age-gate__panel {
	position: relative;
	width: 100%;
	max-width: 500px;
	background: #f8f4ec;
	color: #1f1a17;
	border: 1px solid rgba(31, 26, 23, 0.1);
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.ohb-age-gate__content {
	padding: 36px 30px;
	text-align: center;
}

.ohb-age-gate__brand {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8b6b3f;
}

.ohb-age-gate__title {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 700;
}

.ohb-age-gate__message {
	margin: 0 auto 24px;
	max-width: 34ch;
	font-size: 16px;
	line-height: 1.6;
	color: #5a4a3f;
}

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

.ohb-age-gate__button {
	min-width: 140px;
	padding: 14px 20px;
	border: 0;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.ohb-age-gate__button:hover {
	transform: translateY(-1px);
}

.ohb-age-gate__button:focus-visible {
	outline: 3px solid rgba(139, 107, 63, 0.35);
	outline-offset: 3px;
}

.ohb-age-gate__button--yes {
	background: #2d241f;
	color: #ffffff;
}

.ohb-age-gate__button--yes:hover {
	background: #1d1714;
}

.ohb-age-gate__button--no {
	background: #ded4c7;
	color: #2d241f;
}

.ohb-age-gate__button--no:hover {
	background: #d2c5b4;
}

@media (max-width: 640px) {
	.ohb-age-gate__content {
		padding: 28px 22px;
	}

	.ohb-age-gate__title {
		font-size: 28px;
	}

	.ohb-age-gate__actions {
		flex-direction: column;
	}

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