.viewer-360 {
	max-width: 600px;
	margin: 0 auto;
	user-select: none;
	-webkit-user-select: none;
}

.viewer-360__stage {
	position: relative !important;
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
	cursor: grab;
}

.viewer-360__stage:active {
	cursor: grabbing;
}

.viewer-360__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
	transition: opacity 0.12s ease;
}

.viewer-360__image.is-loading {
	opacity: 0.4;
}

/* ── Przyciski strzałek ── */

.viewer-360__btn {
	position: absolute !important;
	width: 44px !important;
	height: 44px !important;
	background: rgba(0, 0, 0, 0.5) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50% !important;
	font-size: 1.2rem !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	z-index: 20 !important;
	transition: background 0.18s;
}

.viewer-360__btn:hover {
	background: rgba(0, 0, 0, 0.75) !important;
}

.viewer-360__btn--left  {
	left: 10px !important;
	right: auto !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%) !important;
}
.viewer-360__btn--right {
	right: 10px !important;
	left: auto !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%) !important;
}
.viewer-360__btn--up {
	top: 10px !important;
	bottom: auto !important;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
}
.viewer-360__btn--down {
	bottom: 10px !important;
	top: auto !important;
	left: 50% !important;
	right: auto !important;
	transform: translateX(-50%) !important;
}
