/* GDPR / cookie-consent modal z-index overrides */
.gdpr_lightbox,.gdpr_lightbox-wrap,.gdpr_lightbox-container,.gdpr_lightbox-content,.gdpr_lightbox-close,
#moove_gdpr_cookie_modal,.moove_gdpr_cookie_modal,
#moove_gdpr_cookie_info_bar,.moove-gdpr-info-bar-container,.moove-gdpr-cookie-modal-content {
	z-index: 100000 !important;
}

/* Overlay */
#s2r-va-overlay {
	position: fixed;
	top: 25%; left: 40%;
	width: 20%; height: 50%;
	z-index: 99999;
	background: rgba(255, 255, 255, 0.3);
	overflow: hidden;
	border-radius: 30px;
	min-height: 350px;
	font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Close button */
#s2r-va-close {
	position: fixed;
	top: 25%; left: 40%;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(66, 66, 66, 0.7);
	background: rgba(0, 0, 0, 0.15);
	color: #5b5b5b;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	padding: 0;
	margin-top: 28px;
	margin-left: 28px;
}
#s2r-va-close:hover { background: rgba(255, 255, 255, 0.35); }

/* React root */
#s2r-va-root {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	overflow: hidden;
	background: transparent;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	color: #fff;
	box-sizing: border-box;
}
#s2r-va-root *, #s2r-va-root *::before, #s2r-va-root *::after {
	box-sizing: border-box;
}
#s2r-va-root header, #s2r-va-root footer, #s2r-va-root main,
#s2r-va-root nav, #s2r-va-root section, #s2r-va-root article,
#s2r-va-root aside, #s2r-va-root hgroup, #s2r-va-root figure,
#s2r-va-root figcaption {
	background-color: transparent !important;
	position: static !important;
}

/* Mobile */
@media (max-width: 768px) {
	#s2r-va-overlay {
		top: 20%; left: 2%;
		width: 96%; height: 60%;
		border-radius: 10px;
		min-height: 350px;
	}
	#s2r-va-close {
		top: 20%; left: 2%;
		margin-top: 16px; margin-left: 16px;
	}
}

/* Launcher bar */
#s2r-va-launcher {
	position: fixed;
	bottom: 0; right: 0;
	width: 350px;
	background: #9bc34a;
	color: #fff;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 48px;
	cursor: pointer;
	z-index: 99998;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	box-shadow: -2px -2px 12px rgba(0, 0, 0, 0.15);
	transition: background 0.2s;
	box-sizing: border-box;
	border: none;
	user-select: none;
	border-radius: 8px 8px 0 0;
}
#s2r-va-launcher:hover { background: #8db33e; }
#s2r-va-launcher:focus { outline: 3px solid rgba(255, 255, 255, 0.6); outline-offset: -3px; }
