.gcnc-share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.gcnc-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	transition: opacity .15s, background-color .2s;
	flex-shrink: 0;
	line-height: 1;
}

.gcnc-share__btn:hover,
.gcnc-share__btn:focus {
	opacity: .82;
	text-decoration: none;
	color: #fff;
}

.gcnc-share__btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	opacity: 1;
}

/* ── Shapes ─────────────────────────────────────────────────────────────────── */

.gcnc-share--circle .gcnc-share__btn {
	border-radius: 50%;
}

.gcnc-share--square .gcnc-share__btn {
	border-radius: 6px;
}

.gcnc-share--pill .gcnc-share__btn {
	border-radius: 999px;
	width: auto;
	min-width: 40px;
	padding: 0 14px;
}

/* ── Platform colors ─────────────────────────────────────────────────────────── */

.gcnc-share__btn[data-platform="whatsapp"] { background: #25d366; }
.gcnc-share__btn[data-platform="twitter"]  { background: #000; }
.gcnc-share__btn[data-platform="facebook"] { background: #1877f2; }
.gcnc-share__btn[data-platform="email"]    { background: #6b7280; }
.gcnc-share__btn[data-platform="copy"]     { background: #6b7280; }

.gcnc-share__btn[data-platform="copy"].is-copied { background: #16a34a; }

/* ── Copy icon toggle ────────────────────────────────────────────────────────── */

.gcnc-share__icon--check              { display: none; }
.is-copied .gcnc-share__icon--link    { display: none; }
.is-copied .gcnc-share__icon--check   { display: inline; }

/* ── Screen-reader live region ───────────────────────────────────────────────── */

.gcnc-share__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
