/* Neon line color customizer */
.neon-customizer {
	margin: 18px 0 8px;
	padding: 16px;
	border: 1px solid #e4e6e4;
	border-radius: 14px;
	background: linear-gradient(180deg, #1a1512 0%, #2a211c 100%);
	color: #f5efe8;
	scroll-margin-top: 96px;
}
.neon-customizer.is-focus {
	box-shadow: 0 0 0 3px rgba(255, 154, 60, 0.45), 0 18px 40px rgba(0, 0, 0, 0.28);
}
.neon-customizer-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
}
.neon-customizer-kicker {
	font-size: 11px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #ff9a3c;
	font-weight: 800;
}
.neon-customizer-title {
	font-size: 18px;
	font-weight: 800;
	margin: 2px 0 0;
}
.neon-customizer-help {
	font-size: 13px;
	color: #c9beb4;
	margin: 0 0 14px;
	line-height: 1.5;
}
.neon-stage {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	min-height: 280px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.neon-stage-bg {
	display: none;
}
.neon-stage-svg-wrap {
	position: relative;
	inset: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 240px;
	padding: 0;
	pointer-events: none;
}
.neon-stage-svg-wrap > svg,
.neon-stage-svg-wrap .neon-design-svg {
	width: 100%;
	height: auto;
	max-height: 420px;
	pointer-events: auto;
}
.neon-design-svg .neon-line {
	cursor: pointer;
	transition: stroke 0.2s ease, fill 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
	pointer-events: stroke;
}
.neon-design-svg .neon-line[data-neon-paint="fill"] {
	pointer-events: all;
}
.neon-design-svg .neon-line.is-selected {
	opacity: 1;
}
.neon-design-svg .neon-line:not(.is-selected) {
	opacity: 0.92;
}
.neon-palette {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.neon-swatch {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.25);
	cursor: pointer;
	box-shadow: 0 0 0 0 transparent;
	position: relative;
	padding: 0;
	background: #333;
}
.neon-swatch.is-active {
	border-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 154, 60, 0.55);
}
.neon-swatch:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}
.neon-line-list {
	margin-top: 14px;
	display: grid;
	gap: 8px;
}
.neon-line-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 8px 10px;
	font-size: 13px;
	cursor: pointer;
}
.neon-line-row.is-active {
	background: rgba(255, 154, 60, 0.18);
}
.neon-line-row .neon-line-color {
	font-weight: 700;
	color: #ffd7a8;
}
.neon-selected-color-label {
	font-size: 12px;
	color: #c9beb4;
	margin-top: 10px;
}
@media (max-width: 767px) {
	.neon-stage {
		min-height: 220px;
		padding: 12px;
	}
	.neon-stage-svg-wrap {
		min-height: 200px;
	}
	.neon-stage-svg-wrap > svg,
	.neon-stage-svg-wrap .neon-design-svg {
		max-height: 300px;
	}
}
