/* Klient widzi czystą grafikę; obszary ujawniają się tylko chwilowo lub przy interakcji. */
.dallas-gazette-hotspot-marker {
	display: none !important;
}

.dallas-gazette-hotspots.is-introducing .dallas-gazette-hotspot-region {
	background: rgba(255, 193, 5, 0.14);
	border-color: #ffc105;
	animation: dallas-gazette-hotspot-intro 0.75s ease-in-out 2;
}

@keyframes dallas-gazette-hotspot-intro {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 5, 0); }
	50% { box-shadow: 0 0 0 5px rgba(255, 193, 5, 0.28); }
}

.dallas-gazette-interaction-hint {
	position: absolute;
	top: 18px;
	left: 50%;
	z-index: 6;
	max-width: calc(100% - 150px);
	padding: 9px 15px;
	color: #2b2b27;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	background: rgba(255, 193, 5, 0.96);
	border-radius: 999px;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -10px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dallas-gazette-interaction-hint.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Powrót jest kontekstową akcją mobilną, a nie elementem treści produktu. */
.dallas-gazette-return:not([hidden]) {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
	z-index: 99990;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin: 0;
	padding: 10px 20px;
	color: #d65114;
	font-weight: 800;
	background: #ffc105;
	border: 2px solid #d65114;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dallas-gazette-return:not([hidden]):hover,
.dallas-gazette-return:not([hidden]):focus-visible {
	color: #ffc105;
	background: #d65114;
}

/* Mysz nie zostawia obwódki menu; klawiatura nadal otrzymuje czytelny fokus. */
.dallas-gazette-menu-link:focus:not(:focus-visible) {
	outline: 0 !important;
	box-shadow: none !important;
}

@media (max-width: 768px) {
	.dallas-gazette-interaction-hint {
		top: 9px;
		max-width: calc(100% - 120px);
		font-size: 12px;
	}

	.dallas-gazette-return:not([hidden]) {
		right: 50%;
		width: min(88vw, 340px);
		transform: translateX(50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dallas-gazette-hotspots.is-introducing .dallas-gazette-hotspot-region {
		animation: none;
	}

	.dallas-gazette-interaction-hint {
		transition: none;
	}
}
