.ssb-share-wrap {
	margin: 28px 0;
	padding: 16px 0;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ssb-label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 14px;
	color: #333;
}

.ssb-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ssb-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	color: #fff;
	background: #555;
	border: none;
	cursor: pointer;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.ssb-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	color: #fff;
}

.ssb-style-rounded .ssb-btn { border-radius: 6px; }
.ssb-style-pill .ssb-btn { border-radius: 999px; }
.ssb-style-square .ssb-btn { border-radius: 0; }

.ssb-icon { font-size: 15px; line-height: 1; }

.ssb-facebook  { background: #1877f2; }
.ssb-x         { background: #000000; }
.ssb-pinterest { background: #e60023; }
.ssb-reddit    { background: #ff4500; }
.ssb-tumblr    { background: #35465c; }
.ssb-instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.ssb-tiktok    { background: #000000; }
.ssb-quora     { background: #b92b27; }
.ssb-medium    { background: #292929; }

/* Modal */
.ssb-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ssb-modal {
	background: #fff;
	border-radius: 10px;
	max-width: 460px;
	width: 100%;
	padding: 24px;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ssb-modal h3 { margin-top: 0; }

.ssb-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}

.ssb-modal-caption-wrap { margin: 16px 0; }

#ssb-modal-caption {
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	font-size: 13px;
	border: 1px solid #ccc;
	border-radius: 6px;
	resize: vertical;
	margin-bottom: 8px;
}

.ssb-modal-image-wrap { margin-bottom: 16px; }
.ssb-modal-image-wrap img { border-radius: 6px; margin-bottom: 8px; }

.ssb-modal .button {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #f5f5f5;
	color: #333;
}

.ssb-modal .button-primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 10px 16px;
	font-weight: 600;
}
