/* Flatsome Color Group Swatches — frontend styles */

.fcgs-swatches-wrap {
	margin: 16px 0;
}

.fcgs-swatches-title {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #555;
	margin-bottom: 8px;
}

.fcgs-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.fcgs-swatch {
	--fcgs-size: 32px;
	position: relative;
	display: inline-block;
	width: var(--fcgs-size);
	height: var(--fcgs-size);
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #ddd;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
	cursor: pointer;
	flex-shrink: 0;
}

.fcgs-swatch:hover {
	box-shadow: 0 0 0 2px #333;
	transform: translateY(-1px);
}

.fcgs-swatch--active {
	box-shadow: 0 0 0 2px #000;
}

.fcgs-swatch--active::after {
	content: "";
	position: absolute;
	inset: -6px;
	border: 1px solid #000;
	border-radius: 50%;
}

.fcgs-swatch--oos {
	opacity: 0.4;
}

.fcgs-swatch--oos::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 8%;
	width: 84%;
	height: 1px;
	background: #999;
	transform: rotate(-45deg);
}

/* Скрытая подпись — доступна для скринридеров и при необходимости можно включить text-indent: 0 */
.fcgs-swatch-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 480px) {
	.fcgs-swatch {
		--fcgs-size: 28px;
	}
}
