/* ── Wrapper ─────────────────────────────────────────────────────────────── */
.atteks-size-swatch-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

/* ── Individual swatch button ────────────────────────────────────────────── */
.atteks-size-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 48px;
	padding: 0 14px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	background: #fff;
	color: #333;
	font-size: 0.9em;
	font-weight: 500;
	letter-spacing: .02em;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}

/* ── Hover ───────────────────────────────────────────────────────────────── */
.atteks-size-swatch:hover:not(.disabled) {
	border-color: #333;
}

/* ── Selected ────────────────────────────────────────────────────────────── */
.atteks-size-swatch.selected {
	background: #1c1c1c;
	border-color: #1c1c1c;
	color: #fff;
}

/* ── Size chart link ─────────────────────────────────────────────────────── */
.atteks-size-chart-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-size: 0.88em;
	color: #444;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(0,0,0,.25);
	cursor: pointer;
	transition: color .15s, text-decoration-color .15s;
}
.atteks-size-chart-link:hover {
	color: #111;
	text-decoration-color: rgba(0,0,0,.6);
}
.atteks-size-chart-icon {
	flex-shrink: 0;
	position: relative;
	top: -1px;
}

/* ── Disabled / out of stock ─────────────────────────────────────────────── */
.atteks-size-swatch.disabled {
	opacity: 0.38;
	cursor: not-allowed;
	position: relative;
	/* diagonal strike-through line */
	overflow: hidden;
}
.atteks-size-swatch.disabled::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: rotate(-18deg);
	opacity: 0.55;
}
