/* ============================================================
   Age Verification Popup - age-verify.css
   ============================================================ */

/* Overlay (full screen, blur background) */
#avp-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 2147483647; /* highest possible */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

#avp-overlay.avp-hidden {
	display: none !important;
}

/* Card (white modal) */
.avp-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 48px 44px 44px;
	max-width: 460px;
	width: 100%;
	text-align: center;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
}

/* ---- Verification Card ---- */

/* Big bold title */
.avp-title {
	color: #1a3560;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 3px;
	margin: 0 0 10px 0;
	line-height: 1.2;
	font-family: inherit;
}

/* Small blue subtitle */
.avp-subtitle {
	color: #4a8fd4;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin: 0 0 28px 0;
}

/* Description text */
.avp-message {
	color: #555;
	font-size: 14.5px;
	line-height: 1.75;
	margin: 0 0 36px 0;
}

/* Button row */
.avp-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
}

/* Shared button base */
.avp-btn-yes,
.avp-btn-no {
	flex: 1;
	max-width: 190px;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
	font-family: inherit;
}

/* "I Am 21+" – dark navy filled */
.avp-btn-yes {
	background: #1a3560;
	color: #ffffff;
}
.avp-btn-yes:hover {
	background: #122748;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(26,53,96,0.35);
}
.avp-btn-yes:active {
	transform: translateY(0);
}

/* "I Am Under 21" – light gray outlined */
.avp-btn-no {
	background: #f2f2f2;
	color: #666;
	border: 1px solid #e0e0e0;
}
.avp-btn-no:hover {
	background: #e8e8e8;
}

/* ---- Access Denied Card ---- */

/* Red X icon in pink circle */
.avp-denied-icon {
	width: 68px;
	height: 68px;
	background: #ffe8e8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px auto;
}

.avp-denied-icon svg {
	width: 34px;
	height: 34px;
}

.avp-denied-title {
	color: #1a1a1a;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 14px 0;
	font-family: inherit;
}

.avp-denied-msg {
	color: #666;
	font-size: 14px;
	line-height: 1.75;
	margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
	.avp-card {
		padding: 36px 24px 32px;
		border-radius: 16px;
	}
	.avp-title {
		font-size: 24px;
	}
	.avp-buttons {
		flex-direction: column;
		align-items: center;
	}
	.avp-btn-yes,
	.avp-btn-no {
		max-width: 100%;
		width: 100%;
	}
}
