.apf-tooltip {
	position: fixed;
	padding: 6px 10px;
	background: #353c4e;
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.3;
	pointer-events: none;
	transform: translate(-50%, -6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease;
	z-index: 99999;
	white-space: nowrap;
}

.apf-tooltip.is-visible {
	opacity: 1;
	visibility: visible;
}

.apf-tooltip::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 100%;
	width: 8px;
	height: 8px;
	margin-left: -4px;
	background: #353c4e;
	transform: rotate(45deg);
}

/* Hide inline labels under image swatches */
.wapf-swatch--image .wapf-swatch-label {
	display: none !important;
}

/* Ensure image swatches remain focusable outline */
.wapf-swatch--image {
	outline: none;
}

