/* Boutik 360 Viewer */

.b360v {
	position: relative;
	overflow: hidden;
	touch-action: pan-y; /* permite scroll vertical da página; drag horizontal roda o objeto */
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	line-height: 0;
	outline-offset: 3px;
}

.b360v.is-dragging {
	cursor: grabbing;
}

.b360v-frame {
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
}

/* Barra de carregamento */
.b360v-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(0, 0, 0, 0.12);
	transition: opacity 0.4s ease;
}

.b360v-progress-bar {
	width: 0;
	height: 100%;
	background: #2b6cb0;
	transition: width 0.15s ease;
}

.b360v-progress.is-done {
	opacity: 0;
	pointer-events: none;
}

/* Hint "Vista 360°" — pill permanente em baixo, ao centro */
.b360v-hint {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 999px;
	background: #757575;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	pointer-events: none;
	white-space: nowrap;
	z-index: 2;
}

.b360v-hint svg {
	flex-shrink: 0;
	display: block;
}

/* Placeholder no editor */
.b360v-empty {
	padding: 40px 20px;
	text-align: center;
	border: 2px dashed #cbd5e0;
	border-radius: 6px;
	color: #718096;
	font-size: 14px;
	line-height: 1.4;
}

/* Canvas de renderização (v1.0.1) */
.b360v-canvas {
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
}
