/* ==========================================================================
   Social Share (.sentio-ss)
   ==========================================================================
   Extracted from frontend.css during the Batch 8 mechanical extraction
   (2026-04-18). Behavior-preserving.
   9 networks · 3 display modes · 4 shapes · 4 hover anims · brand
   colors · sticky mode · copy to clipboard · custom share content.

   Class-prefix collision with side-scroll (.sentio-ss — Batch 7/8 later) —
   distinct CSS blocks, never collide on the same page. Pre-existing
   widget-settings-backlog entry: email-share customization. Preserved
   as-is per mechanical-extraction behavior-preservation rule.
   ========================================================================== */

/* ── Base layout ── */
.sentio-ss {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.sentio-ss--vertical {
	flex-direction: column;
	align-items: stretch;
}

/* ── Button base ── */
.sentio-ss__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 6px;
	background-color: #555;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

/* ── Icon ── */
.sentio-ss__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	fill: currentColor;
}

/* ── Label ── */
.sentio-ss__label {
	white-space: nowrap;
}

/* ── Copy feedback ── */
.sentio-ss__copied {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: inherit;
	color: inherit;
	font-size: 12px;
	font-weight: 600;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.sentio-ss__btn--copy_link.sentio-ss--copied .sentio-ss__copied {
	opacity: 1;
}

/* ═══════════════════════════════════════════════
 * Display Modes (Diff #3)
 * ═══════════════════════════════════════════════ */
.sentio-ss--icon .sentio-ss__label { display: none; }
.sentio-ss--label .sentio-ss__icon { display: none; }
.sentio-ss--icon .sentio-ss__btn { padding: 10px; }

/* ═══════════════════════════════════════════════
 * Shape Styles (Diff #4)
 * ═══════════════════════════════════════════════ */
.sentio-ss--rounded .sentio-ss__btn { border-radius: 6px; }
.sentio-ss--pill .sentio-ss__btn    { border-radius: 999px; }
.sentio-ss--circle .sentio-ss__btn  { border-radius: 50%; width: 44px; height: 44px; padding: 0; }
.sentio-ss--circle .sentio-ss__label { display: none; }
.sentio-ss--square .sentio-ss__btn  { border-radius: 0; }

/* ═══════════════════════════════════════════════
 * Hover Animations (Diff #5)
 * ═══════════════════════════════════════════════ */
.sentio-ss--hover-grow .sentio-ss__btn:hover {
	transform: scale(1.1);
}
.sentio-ss--hover-slide-up .sentio-ss__btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.sentio-ss--hover-glow .sentio-ss__btn:hover {
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}
.sentio-ss--hover-darken .sentio-ss__btn:hover {
	filter: brightness(0.8);
}

/* ═══════════════════════════════════════════════
 * Official Brand Colors (Diff #6)
 * ═══════════════════════════════════════════════ */
.sentio-ss--official .sentio-ss__btn--facebook  { background-color: #1877F2; color: #fff; }
.sentio-ss--official .sentio-ss__btn--twitter    { background-color: #000000; color: #fff; }
.sentio-ss--official .sentio-ss__btn--linkedin   { background-color: #0A66C2; color: #fff; }
.sentio-ss--official .sentio-ss__btn--pinterest  { background-color: #E60023; color: #fff; }
.sentio-ss--official .sentio-ss__btn--whatsapp   { background-color: #25D366; color: #fff; }
.sentio-ss--official .sentio-ss__btn--telegram   { background-color: #26A5E4; color: #fff; }
.sentio-ss--official .sentio-ss__btn--reddit     { background-color: #FF4500; color: #fff; }
.sentio-ss--official .sentio-ss__btn--email      { background-color: #666666; color: #fff; }
.sentio-ss--official .sentio-ss__btn--copy_link  { background-color: #666666; color: #fff; }

/* Hover darkens brand colors */
.sentio-ss--official .sentio-ss__btn--facebook:hover  { background-color: #1565D8; }
.sentio-ss--official .sentio-ss__btn--twitter:hover    { background-color: #222222; }
.sentio-ss--official .sentio-ss__btn--linkedin:hover   { background-color: #0854A0; }
.sentio-ss--official .sentio-ss__btn--pinterest:hover  { background-color: #C8001E; }
.sentio-ss--official .sentio-ss__btn--whatsapp:hover   { background-color: #1DA851; }
.sentio-ss--official .sentio-ss__btn--telegram:hover   { background-color: #1E8FC5; }
.sentio-ss--official .sentio-ss__btn--reddit:hover     { background-color: #D83B00; }
.sentio-ss--official .sentio-ss__btn--email:hover      { background-color: #4D4D4D; }
.sentio-ss--official .sentio-ss__btn--copy_link:hover  { background-color: #4D4D4D; }

/* ═══════════════════════════════════════════════
 * Sticky / Floating Mode (Diff #7)
 * ═══════════════════════════════════════════════ */
.sentio-ss--sticky {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	flex-direction: column;
	z-index: 999;
}
.sentio-ss--sticky-left  { left: 0; }
.sentio-ss--sticky-right { right: 0; }

/* Rounded edges on screen-edge side */
.sentio-ss--sticky-left .sentio-ss__btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.sentio-ss--sticky-right .sentio-ss__btn {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

/* Disable sticky in editor (Elementor iframe conflicts) */
.elementor-editor-active .sentio-ss--sticky {
	position: relative;
	top: auto;
	transform: none;
}

