/* Floating Support Button and Panel */
.support-fab {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0,0,0,0.25), 0 6px 6px rgba(0,0,0,0.2);
	cursor: pointer;
	z-index: 2147483000;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-fab:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.28), 0 8px 8px rgba(0,0,0,0.22);
}
.support-fab img,
.support-fab svg {
	width: 28px;
	height: 28px;
	display: block;
}

.support-panel {
	position: fixed;
	right: 20px;
	bottom: 84px; /* 56 + 12 + 16 margin */
	min-width: 280px;
	max-width: 92vw;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.25);
	padding: 16px;
	z-index: 2147483001;
	display: none;
}
.support-panel.open {
	display: block;
}
.support-panel-header {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 12px;
	color: #111;
}
.support-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f2f3f5;
	border-radius: 12px;
	padding: 12px 14px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.support-item + .support-item {
	margin-top: 10px;
}
.support-item:active {
	transform: scale(0.995);
}
.support-item-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.support-item-left svg {
	flex: 0 0 auto;
}
.support-item-title {
	font-size: 14px;
	font-weight: 600;
	color: #212124;
}
.support-item-arrow {
	flex: 0 0 auto;
	fill: #8a8f98;
}

.support-callback-form {
	margin-top: 10px;
	background: #f7f8fa;
	border-radius: 12px;
	padding: 12px;
	display: none;
}
.support-callback-form.open {
	display: block;
}
.support-callback-row { display: flex; gap: 8px; }
.support-field { margin-bottom: 8px; }
.support-input {
	flex: 1 1 auto;
	min-width: 0;
	background: #fff;
	border: 1px solid #e1e4e8;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.support-input:focus {
	border-color: #b3b9c4;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.support-submit {
	flex: 0 0 auto;
	width: 100%;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease, transform 0.1s ease;
}
.support-submit:active {
	transform: translateY(1px);
}

@media (max-width: 400px) {
	.support-panel {
		right: 12px;
		left: 12px;
		max-width: none;
	}
	.support-fab {
		right: 16px;
		bottom: 16px;
	}
}

