/* BudClub Age Gate */
.bc-age-gate,
.bc-age-gate * {
	box-sizing: border-box;
}

.bc-age-gate[hidden] {
	display: none !important;
}

.bc-age-gate {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	padding: 18px;
	font-family: var(--bc-font-body, inherit);
}

.bc-age-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 6, 4, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.bc-age-gate__dialog {
	position: relative;
	width: min(100%, 520px);
	border: 1px solid rgba(158, 240, 26, 0.26);
	border-radius: 28px;
	padding: clamp(28px, 4vw, 42px);
	background:
		radial-gradient(circle at 50% -10%, rgba(158, 240, 26, 0.12), transparent 40%),
		linear-gradient(180deg, #141611 0%, #0d0f0b 100%);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
	text-align: center;
	color: #f4f3ec;
	outline: none;
}

.bc-age-gate__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.bc-age-gate__logo a,
.bc-age-gate__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: clamp(34px, 7vw, 50px);
	line-height: 0.95;
	font-weight: 950;
	letter-spacing: -0.06em;
	pointer-events: none;
}

.bc-age-gate__logo .custom-logo {
	display: block;
	width: auto;
	max-width: min(260px, 72vw);
	max-height: 78px;
	height: auto;
}

.bc-age-gate__logo .budclub-logo {
	font-family: var(--bc-font-display, Anton, sans-serif);
	color: #9ef01a;
	text-shadow: 0 2px 0 #0c0d0a, 0 0 0 2px #0c0d0a;
}

.bc-age-gate__logo .budclub-logo span {
	color: #ffffff;
	-webkit-text-stroke: 1px #0c0d0a;
	text-shadow: 0 2px 0 #0c0d0a;
}

.bc-age-gate__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9ef01a;
}

.bc-age-gate__title {
	margin: 0;
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.06;
	font-weight: 950;
	letter-spacing: -0.035em;
	color: #f4f3ec;
}

.bc-age-gate__copy {
	max-width: 410px;
	margin: 14px auto 22px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 650;
	color: #b7bea9;
}

.bc-age-gate__remember {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 24px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(158, 240, 26, 0.16);
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	color: #f4f3ec;
	cursor: pointer;
	user-select: none;
}

.bc-age-gate__remember input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bc-age-gate__check {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	border: 2px solid rgba(255,255,255,0.18);
	background: #0c0d0a;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.02);
	position: relative;
	flex: 0 0 auto;
}

.bc-age-gate__remember input:checked + .bc-age-gate__check {
	border-color: #9ef01a;
	background: #9ef01a;
}

.bc-age-gate__remember input:checked + .bc-age-gate__check::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 3px;
	width: 7px;
	height: 13px;
	border: solid #0c0d0a;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.bc-age-gate__actions {
	display: flex;
	justify-content: center;
}

.bc-age-gate__enter {
	width: min(100%, 260px);
	min-height: 58px;
	border: 0;
	border-radius: 999px;
	background: #9ef01a;
	color: #0c0d0a;
	font-size: 17px;
	font-weight: 950;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 14px 32px rgba(158, 240, 26, 0.2);
	transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.bc-age-gate__enter:hover,
.bc-age-gate__enter:focus-visible {
	filter: brightness(1.04);
	transform: translateY(-1px);
	box-shadow: 0 18px 36px rgba(158, 240, 26, 0.28);
	outline: none;
}

body.bc-age-gate-open {
	overflow: hidden !important;
}

.bc-age-gate-noscript {
	position: fixed;
	inset: 0;
	z-index: 2147483001;
	display: grid;
	place-items: center;
	padding: 24px;
	background: #0c0d0a;
	color: #f4f3ec;
	text-align: center;
	font-weight: 800;
}

@media (max-width: 520px) {
	.bc-age-gate {
		padding: 14px;
	}

	.bc-age-gate__dialog {
		border-radius: 22px;
	}

	.bc-age-gate__copy {
		font-size: 13px;
	}

	.bc-age-gate__remember {
		font-size: 14px;
	}

	.bc-age-gate__enter {
		width: 100%;
		min-height: 56px;
	}
}
