/* Product */
#ns_product-summary .ns_form.variations_form .ns_product-attribute-actions a.ns_link-line {
	font-size: 12px;
	line-height: 18px;
	color: var(--hipnos-color-neutral-3);
}

/* Woo variation swatches */
ul.variable-items-wrapper.image-variable-items-wrapper {
	list-style: none;
	display: flex;
	gap: 8px;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item {
	cursor: pointer;
	display: block;
	border-radius: var(--hipnos-border-radius);
	transition: box-shadow var(--hipnos-transition-ease);
	max-width: 57.33px;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item img {
	position: relative;
	display: block;
	border-radius: var(--hipnos-border-radius);

	z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
	ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item:hover {
		box-shadow: var(--hipnos-box-shadow-style-1);
	}
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item > .variable-item-contents {
	position: relative;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item > .variable-item-contents:after {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;

	border-radius: var(--hipnos-border-radius);
	box-shadow: inset 0px 0px 0px 4px var(--hipnos-color-secondary-1);

	opacity: 0;
	-webkit-transition: opacity var(--hipnos-transition-ease);
	-o-transition: opacity var(--hipnos-transition-ease);
	transition: opacity var(--hipnos-transition-ease);

	z-index: 2;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item.selected > .variable-item-contents:after {
	opacity: 1;
}