/**
 * KZ Catalog Flavor Swatches
 * Round flavor color dots on catalog cards, between the product image and title.
 */

/* The swatch row. Reserves a fixed height on EVERY card (even empty ones) so
   mixed flavor / non-flavor rows stay vertically aligned under JetWooBuilder's
   "Equal Columns Height". Tweak --kzcfs-slot-h to taste. */
.kzcfs-swatches {
	--kzcfs-slot-h: 34px;
	min-height: var(--kzcfs-slot-h);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 10px 0 4px;
	padding: 0 8px;
	position: relative;
	z-index: 2; /* sit above any card-wide product link overlay */
}

/* Each swatch is a link wrapping a colored dot + a tooltip. */
.kzcfs-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	line-height: 0;
}

.kzcfs-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--kzcfs-color, #ddd);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
	cursor: pointer;
}

.kzcfs-swatch:hover .kzcfs-dot,
.kzcfs-swatch:focus-visible .kzcfs-dot {
	transform: scale(1.15);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(0, 0, 0, 0.12);
}

/* Tooltip: flavor name on hover. */
.kzcfs-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: #10233f; /* Divine Health navy */
	color: #fff;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	padding: 6px 8px;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.12s ease, transform 0.12s ease;
	z-index: 5;
}

.kzcfs-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #10233f;
}

.kzcfs-swatch:hover .kzcfs-tooltip,
.kzcfs-swatch:focus-visible .kzcfs-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
