.fsw-ec5f18c4-container {
	--fsw-accent: #ff6a00;
	--fsw-text: #ffffff;
	--fsw-shadow: rgba(0, 0, 0, 0.4);
	
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fsw-ec5f18c4-hidden {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

.fsw-ec5f18c4-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Glassmorphism Card Style */
.fsw-ec5f18c4-card {
	background: rgba(17, 17, 17, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 106, 0, 0.3);
	border-radius: 16px;
	padding: 24px;
	width: 320px;
	box-shadow: 0 12px 40px var(--fsw-shadow);
	position: relative;
	transition: border-color 0.3s ease;
}

.fsw-ec5f18c4-card:hover {
	border-color: var(--fsw-accent);
}

/* Close Button */
.fsw-ec5f18c4-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	color: #888;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
	transition: color 0.2s ease;
}

.fsw-ec5f18c4-close:hover {
	color: var(--fsw-accent);
}

/* Header styling */
.fsw-ec5f18c4-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.fsw-ec5f18c4-icon-main {
	font-size: 20px;
}

.fsw-ec5f18c4-header h3 {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Description text */
.fsw-ec5f18c4-desc {
	margin: 0 0 20px 0;
	color: #ccc;
	font-size: 13px;
	line-height: 1.5;
}

/* Button stack */
.fsw-ec5f18c4-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fsw-ec5f18c4-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 8px;
	text-decoration: none !important;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.fsw-ec5f18c4-btn i, .fsw-ec5f18c4-btn svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.fsw-ec5f18c4-telegram {
	background: #0088cc;
}

.fsw-ec5f18c4-facebook {
	background: #1877f2;
}

.fsw-ec5f18c4-btn:hover {
	transform: scale(1.02);
	filter: brightness(1.1);
	box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
}

/* Mobile Bubble Trigger */
.fsw-ec5f18c4-bubble {
	display: none;
	width: 56px;
	height: 56px;
	border-radius: 50px;
	background: var(--fsw-accent);
	border: 2px solid #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.3);
	color: #fff;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.fsw-ec5f18c4-bubble span {
	font-size: 24px;
}

.fsw-ec5f18c4-bubble:hover {
	transform: scale(1.05);
}

/* Responsive Overrides */
@media (max-width: 767px) {
	.fsw-ec5f18c4-container {
		bottom: 20px;
		right: 20px;
	}
	
	.fsw-ec5f18c4-bubble {
		display: flex;
	}
	
	.fsw-ec5f18c4-card {
		display: none;
		position: absolute;
		bottom: 70px;
		right: 0;
		width: 290px;
		animation: fswFadeUp_ec5f18c4 0.3s ease;
	}
	
	.fsw-ec5f18c4-container.fsw-ec5f18c4-expanded .fsw-ec5f18c4-card {
		display: block;
	}
}

@keyframes fswFadeUp_ec5f18c4 {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
