/* 상담 플로팅 버튼 — 우측 하단 고정 (PC: 아이콘+라벨 알약 / 모바일: 원형 아이콘) */
.hc-consult-fab {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	color: #111;
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hc-consult-fab:hover,
.hc-consult-fab:focus {
	color: #111;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hc-consult-fab__icon {
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.hc-consult-fab {
		right: 16px;
		bottom: 16px;
		width: 54px;
		height: 54px;
		padding: 0;
		justify-content: center;
		border-radius: 50%;
	}

	.hc-consult-fab__label {
		display: none;
	}
}
