/*
 * Shop social-media links: a discreet row of circular icon chips in the
 * shop sidebar (markup in shops/includes/social_links.html).
 */

.epla-social-label {
	display: block;
}

.epla-social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.epla-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px #e0ddd7;
	color: #6d7a80;
	transition: color .15s ease, box-shadow .15s ease;
}

/* Center via margins, not flex alignment: sidebar themes override the
   anchor's display with ID-based selectors we can't outrank. */
.epla-social-link svg { display: block; margin: 8px auto 0; }

.epla-social-link:hover,
.epla-social-link:focus-visible {
	color: #16a085;
	box-shadow: 0 0 0 1px #16a085;
}

.epla-social-link:focus-visible {
	outline: 2px solid #1abc9c;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.epla-social-link { transition: none; }
}
