/* SocialSharePlus - Button Styles */
.ssp-share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
	clear: both;
}
.ssp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.15s;
	border: 0;
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1;
}
.ssp-button:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}
.ssp-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.ssp-text {
	white-space: nowrap;
}

/* Colors - Network Brand */
.ssp-color-default .ssp-facebook    { background: #1877F2; color: #fff; }
.ssp-color-default .ssp-twitter     { background: #000000; color: #fff; }
.ssp-color-default .ssp-reddit      { background: #FF4500; color: #fff; }
.ssp-color-default .ssp-linkedin    { background: #0A66C2; color: #fff; }
.ssp-color-default .ssp-pinterest   { background: #E60023; color: #fff; }
.ssp-color-default .ssp-whatsapp    { background: #25D366; color: #fff; }
.ssp-color-default .ssp-telegram    { background: #26A5E4; color: #fff; }
.ssp-color-default .ssp-email       { background: #666; color: #fff; }
.ssp-color-default .ssp-buffer      { background: #231F20; color: #fff; }
.ssp-color-default .ssp-pocket      { background: #EF4056; color: #fff; }
.ssp-color-default .ssp-hacker_news { background: #FF6600; color: #fff; }
.ssp-color-default .ssp-tumblr      { background: #35465C; color: #fff; }
.ssp-color-default .ssp-flipboard   { background: #E12828; color: #fff; }
.ssp-color-default .ssp-mix         { background: #FF8126; color: #fff; }

/* Colors - Dark */
.ssp-color-dark .ssp-button {
	background: #333;
	color: #fff;
}
/* Colors - Light */
.ssp-color-light .ssp-button {
	background: #f0f0f0;
	color: #333;
	border: 1px solid #ddd;
}
.ssp-color-light .ssp-button:hover {
	background: #e0e0e0;
}

/* Shapes */
.ssp-shape-square .ssp-button     { border-radius: 0; }
.ssp-shape-rounded .ssp-button    { border-radius: 4px; }
.ssp-shape-circle .ssp-button     { border-radius: 50%; padding: 10px; }
.ssp-shape-circle .ssp-text       { display: none; }

/* Sizes */
.ssp-size-small .ssp-button  { padding: 6px 10px; font-size: 12px; }
.ssp-size-small .ssp-icon    { width: 14px; height: 14px; }
.ssp-size-medium .ssp-button { padding: 8px 14px; font-size: 13px; }
.ssp-size-large .ssp-button  { padding: 10px 18px; font-size: 15px; }
.ssp-size-large .ssp-icon    { width: 20px; height: 20px; }

/* Floating Bar */
.ssp-floating-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	background: #fff;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.ssp-floating-bar.ssp-visible {
	transform: translateY(0);
}
.ssp-floating-bar .ssp-button {
	flex-shrink: 0;
}
.ssp-floating-bar .ssp-text {
	display: none;
}
.ssp-floating-bar.ssp-size-large .ssp-text {
	display: inline;
}

@media (max-width: 768px) {
	.ssp-share {
		justify-content: center;
	}
	.ssp-floating-bar {
		gap: 4px;
		padding: 8px 10px;
	}
	.ssp-size-medium .ssp-button { padding: 6px 10px; font-size: 13px; }
	.ssp-size-medium .ssp-text   { display: none; }
}
