/* Verhindert Markieren/Ziehen von Bildern per CSS als zusätzliche Hürde */
img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Das Quell-Element für den Hinweistext bleibt unsichtbar,
   ist aber weiterhin im HTML-Quelltext vorhanden (wichtig für TranslatePress). */
.foto-schutz-hidden-source {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Toast-Hinweis */
.foto-schutz-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	max-width: 320px;
	background: rgba(20, 20, 20, 0.92);
	color: #fff;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 999999;
}

.foto-schutz-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}
