/* ── Floating cookie icon ──────────────────────────────────────────── */
.lat46-cookie-icon {
	position: fixed;
	z-index: 99998;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #1a1a1a;
	color: #fff;
	border: 2px solid #cc0000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	transition: background .2s, transform .2s;
	padding: 0;
}

.lat46-cookie-icon:hover {
	background: #cc0000;
	transform: scale(1.1);
}

/* Posizioni configurabili */
.lat46-cookie-icon--bottom-left  { bottom: 20px; left: 20px; }
.lat46-cookie-icon--bottom-right { bottom: 20px; right: 20px; }
.lat46-cookie-icon--top-left     { top: 90px; left: 20px; }
.lat46-cookie-icon--top-right    { top: 90px; right: 20px; }

/* Su schermi piccoli avvicina l'icona ai bordi per non sprecare spazio */
@media (max-width: 600px) {
	.lat46-cookie-icon { width: 40px; height: 40px; }
	.lat46-cookie-icon--bottom-left  { bottom: 12px; left: 12px; }
	.lat46-cookie-icon--bottom-right { bottom: 12px; right: 12px; }
	.lat46-cookie-icon--top-left     { top: 70px; left: 12px; }
	.lat46-cookie-icon--top-right    { top: 70px; right: 12px; }
}

/* ── Age gate overlay ──────────────────────────────────────────────── */
#lat46-age-gate {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, .75);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.lat46-age-gate__box {
	background: var(--cc-bg, #fff);
	color: var(--cc-text, #333);
	border-radius: 8px;
	padding: 32px 28px;
	max-width: 420px;
	width: 100%;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.lat46-age-gate__question {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 24px;
	line-height: 1.4;
}

.lat46-age-gate__yes,
.lat46-age-gate__no {
	display: inline-block;
	margin: 6px;
	padding: 10px 24px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-size: .9rem;
	font-weight: 600;
	transition: opacity .15s;
}

.lat46-age-gate__yes {
	background: #cc0000;
	color: #fff;
}

.lat46-age-gate__no {
	background: #555;
	color: #fff;
}

.lat46-age-gate__yes:hover,
.lat46-age-gate__no:hover {
	opacity: .85;
}

@media (max-width: 480px) {
	.lat46-age-gate__box {
		padding: 24px 16px;
	}
	.lat46-age-gate__yes,
	.lat46-age-gate__no {
		display: block;
		width: 100%;
		margin: 6px 0;
	}
}

/* ── Override variabili Vanilla Cookie Consent ─────────────────────── */
/* Override variabili Vanilla Cookie Consent */
:root {
	--cc-font-family: inherit;
	--cc-primary-color: #0073aa;
	--cc-btn-primary-bg: #0073aa;
	--cc-btn-primary-hover-bg: #005a87;
	--cc-btn-secondary-bg: #f0f0f0;
	--cc-btn-secondary-color: #333;
	--cc-btn-secondary-hover-bg: #ddd;
	--cc-toggle-on-bg: #0073aa;
	--cc-separator-border-color: #eee;
}
