.qa-product-hero-dropzone {
	position: relative;
	display: grid;
	gap: 10px;
	padding: 12px;
	overflow: hidden;
	border: 1px solid rgba(102, 192, 244, 0.24);
	border-radius: 10px;
	background:
		linear-gradient(145deg, rgba(20, 136, 252, 0.1), transparent 48%),
		rgba(8, 17, 31, 0.86);
	color: #dbeafe;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.qa-product-hero-dropzone > input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.qa-product-hero-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.qa-product-hero-header > span {
	display: grid;
	gap: 2px;
}

.qa-product-hero-header small {
	color: #76e5ff;
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.qa-product-hero-header strong {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
}

.qa-product-hero-header em {
	display: inline-grid;
	min-width: 42px;
	height: 22px;
	place-items: center;
	border: 1px solid rgba(118, 229, 255, 0.22);
	border-radius: 999px;
	background: rgba(118, 229, 255, 0.08);
	color: #c9f7ff;
	font: 800 0.68rem/1 "JetBrains Mono", monospace;
	font-style: normal;
}

.qa-product-hero-preview {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 21 / 9;
	place-items: center;
	overflow: hidden;
	border: 1px dashed rgba(118, 229, 255, 0.3);
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(20, 136, 252, 0.08), transparent 56%),
		#0b1019;
}

.qa-product-hero-preview img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qa-product-hero-preview img[hidden] {
	display: none;
}

.qa-product-hero-preview > span {
	position: relative;
	z-index: 1;
	padding: 6px 9px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(2, 7, 15, 0.78);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 850;
	backdrop-filter: blur(8px);
}

.qa-product-hero-meta {
	color: var(--qa-muted);
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.35;
	text-align: center;
}

.qa-product-hero-dropzone.is-loaded .qa-product-hero-preview {
	border-style: solid;
}

.qa-product-hero-dropzone.is-dragging,
.qa-product-hero-dropzone:hover,
.qa-product-hero-dropzone:focus-within {
	border-color: rgba(118, 229, 255, 0.68);
	box-shadow: 0 0 24px rgba(20, 136, 252, 0.18);
}

.qa-product-hero-dropzone.is-error {
	border-color: rgba(251, 113, 133, 0.72);
}
