/* Lightweight in-page Try-On UI container */
.inpage-tryon-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.55);
}

.inpage-tryon-overlay.show { display: flex; }

.inpage-tryon-panel {
	position: relative;
	width: min(1200px, 96vw);
	height: min(92vh, 900px);
	background: #0b0b0b;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.45);
	overflow: hidden;
}

.inpage-tryon-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

.inpage-tryon-stage {
	position: absolute;
	inset: 0;
	padding: 12px;
	display: grid;
	place-items: center;
}

.inpage-tryon-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	background: #0b0b0b;
}


