/* Exhibit Central — Product Demos Tab
   Scoped to #exhibitrsgdx-product-demos so plugin styles always
   win over the active WooCommerce theme without !important hacks. */

#exhibitrsgdx-product-demos.exhibitrsgdx-product-demos {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-product-demo {
	background: var(--exhibitrsgdx-color-surface-high, #1e1e1e);
	border: 1px solid var(--exhibitrsgdx-color-border, #2e2e2e);
	border-radius: 6px;
	overflow: hidden;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-product-demo__title {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--exhibitrsgdx-color-text, #f5f5f5);
	font-family: var(--exhibitrsgdx-font-sans, inherit);
	margin: 0;
	padding: 14px 18px;
	border-bottom: 1px solid var(--exhibitrsgdx-color-border, #2e2e2e);
	background: var(--exhibitrsgdx-color-surface, #161616);
}

#exhibitrsgdx-product-demos .exhibitrsgdx-product-demo__player {
	padding: 16px 18px;
}

/* Poster overlay */
#exhibitrsgdx-product-demos .exhibitrsgdx-video-poster {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
	background: #000;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-video-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0.85;
	transition: opacity 0.2s;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-video-poster:hover img {
	opacity: 0.65;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-video-play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	box-shadow: none;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-video-play-btn i {
	font-size: 4rem;
	color: #fff;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
	transition: transform 0.15s, filter 0.15s;
}

#exhibitrsgdx-product-demos .exhibitrsgdx-video-poster:hover .exhibitrsgdx-video-play-btn i {
	transform: scale(1.12);
	filter: drop-shadow(0 3px 12px rgba(0,0,0,.75));
}

/* iframe embed */
#exhibitrsgdx-product-demos .exhibitrsgdx-video-iframe {
	display: block;
	width: 100%;
	border: none;
	border-radius: 4px;
}

/* HTML5 video */
#exhibitrsgdx-product-demos video {
	display: block;
	border-radius: 4px;
	background: #000;
}
