/**
 * TITAUDOU Floating Social Sidebar
 *
 * Fixed vertical social icons on the right edge of all pages.
 *
 * @package Astra
 * @since 1.0.0
 */

.titaudou-social-float {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9998;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.titaudou-social-float-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #1a3a6b;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: all 0.25s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.titaudou-social-float-item:last-child {
	border-bottom: none;
}

.titaudou-social-float-item:hover {
	background: #2a5298;
	color: #fff;
	width: 58px;
}

.titaudou-social-float-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.titaudou-social-float-icon svg {
	width: 22px !important;
	height: 22px !important;
	fill: currentColor !important;
	display: block !important;
}

/* Label tooltip on hover */
.titaudou-social-float-label {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	background: #1a3a6b;
	color: #fff;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	pointer-events: none;
}

.titaudou-social-float-label::after {
	content: '';
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #1a3a6b;
}

.titaudou-social-float-item:hover .titaudou-social-float-label {
	opacity: 1;
	visibility: visible;
	right: 68px;
}

/* WeChat cursor */
.titaudou-social-float-wechat {
	cursor: copy;
}

/* Copied toast (shared with social-links.js) */
.titaudou-social-copied {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a3a6b;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 14px;
	z-index: 9999;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.titaudou-social-copied.show {
	opacity: 1;
}

/* Responsive: hide on small screens to avoid blocking content */
@media (max-width: 768px) {
	.titaudou-social-float {
		bottom: 0;
		top: auto;
		transform: none;
		flex-direction: row;
		width: 100%;
		justify-content: center;
	}

	.titaudou-social-float-item {
		flex: 1;
		height: 44px;
		border-bottom: none;
		border-right: 1px solid rgba(255, 255, 255, 0.12);
	}

	.titaudou-social-float-item:last-child {
		border-right: none;
	}

	.titaudou-social-float-item:hover {
		width: 48px;
	}

	.titaudou-social-float-label {
		display: none;
	}
}
