/* DSM Social Share — skin styles */

.dsm-ss-wrap {
	--dsm-ss-accent: #aa3333;
	margin: 32px 0;
}

.dsm-ss-heading {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	opacity: 0.85;
}

.dsm-ss-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dsm-ss-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #fff;
	background: #333;
	min-height: 44px;
	min-width: 44px;
	padding: 8px 14px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 0.9em;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.dsm-ss-btn:hover,
.dsm-ss-btn:focus-visible {
	filter: brightness(1.15);
	transform: translateY(-1px);
	color: #fff;
}

.dsm-ss-btn .dsm-ss-icon { display: flex; flex-shrink: 0; }

/* Per-network base colors */
.dsm-ss-twitter   { background: #000; }
.dsm-ss-facebook  { background: #1877f2; }
.dsm-ss-pinterest { background: #e60023; }
.dsm-ss-linkedin  { background: #0a66c2; }
.dsm-ss-reddit    { background: #ff4500; }
.dsm-ss-tumblr    { background: #34526f; }

/* ---- Icon-only style ---- */
.dsm-ss-style-icon_only .dsm-ss-btn { padding: 10px; }
.dsm-ss-style-icon_only .dsm-ss-label {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* ---- Bar skin: full-width row ---- */
.dsm-ss-skin-bar .dsm-ss-buttons { justify-content: flex-start; }

/* ---- Compact icons ---- */
.dsm-ss-skin-compact .dsm-ss-btn { padding: 8px; min-width: 40px; }
.dsm-ss-skin-compact .dsm-ss-label {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* ---- Minimal text links ---- */
.dsm-ss-skin-minimal .dsm-ss-btn {
	background: none;
	color: inherit;
	padding: 4px 0;
	min-height: auto;
	border-bottom: 1px solid transparent;
}
.dsm-ss-skin-minimal .dsm-ss-btn:hover { border-color: var(--dsm-ss-accent); color: var(--dsm-ss-accent); }
.dsm-ss-skin-minimal .dsm-ss-icon { display: none; }

/* ---- Floating sidebar: sticks to viewport edge, follows scroll ---- */
.dsm-ss-skin-floating_sidebar {
	position: fixed;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 400;
	margin: 0;
}
.dsm-ss-skin-floating_sidebar .dsm-ss-buttons { flex-direction: column; }
.dsm-ss-skin-floating_sidebar .dsm-ss-btn { padding: 10px; min-width: 44px; justify-content: center; }
.dsm-ss-skin-floating_sidebar .dsm-ss-label {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
@media (max-width: 900px) {
	.dsm-ss-skin-floating_sidebar { display: none; } /* avoid overlapping narrow mobile content */
}

/* ---- Floating bottom bar: mobile-friendly sticky footer ---- */
.dsm-ss-skin-floating_bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
	background: rgba(10,10,10,0.95);
	backdrop-filter: blur(6px);
	padding: 10px 14px;
	margin: 0;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.dsm-ss-skin-floating_bottom .dsm-ss-heading { display: none; }
.dsm-ss-skin-floating_bottom .dsm-ss-buttons { justify-content: center; }
