/* ==========================================================
   SEEF Konte Color Swatches
   ========================================================== */

.seef-loop-colors {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 9px;
	margin-bottom: 4px;
}

.seef-loop-swatch {
	display: inline-block;
	width: 18px;
	height: 18px;
	min-width: 18px;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.20);
	outline: none;
	box-shadow: none !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition:
		transform .20s ease,
		border-color .20s ease,
		box-shadow .20s ease;
}

.seef-loop-swatch:hover {
	transform: scale(1.12);
	border-color: #111;
}

.seef-loop-swatch.is-selected {
	outline: 1px solid #111;
	outline-offset: 2px;
}

.seef-loop-swatch::before,
.seef-loop-swatch::after {
	display: none !important;
	content: none !important;
}

/* Animation image : ~0,4 s au total */
.woocommerce ul.products li.product img,
.products .product img,
.woocommerce-product-gallery img {
	transition:
		opacity .20s ease,
		transform .20s ease;
	will-change: opacity, transform;
}

.seef-image-slide-out {
	opacity: 0 !important;
	transform: translateX(-18px) !important;
}

.seef-image-slide-start {
	opacity: 0 !important;
	transform: translateX(18px) !important;
	transition: none !important;
}

.seef-image-slide-in {
	opacity: 1 !important;
	transform: translateX(0) !important;
	transition:
		opacity .20s ease,
		transform .20s ease !important;
}

/* Évite un débordement visuel pendant le glissement */
.product-thumbnail,
.product-image,
.woocommerce-product-gallery__image {
	overflow: hidden;
}
