/* 悬浮联系方式 + 公众号二维码弹窗 */
.wechat-qr-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 99999; align-items: center; justify-content: center; }
.wechat-qr-modal.active { display: flex; }
.wechat-qr-modal-content {
	background: #fff; border: 3px solid #0A0A0A; padding: 36px; width: 320px;
	text-align: center; box-shadow: var(--brutal-shadow-xl); position: relative;
	clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.floating-contact { position: fixed; right: 24px; bottom: 80px; z-index: 9998; display: flex; flex-direction: column; gap: 12px; }
.floating-contact .box {
	display: flex; align-items: center; gap: 8px; padding: 12px 18px;
	background: #fff; border: 2px solid #0A0A0A; box-shadow: 4px 4px 0 #EDEDEC;
	text-decoration: none; color: #0A0A0A; font-size: 13px; font-weight: 700;
	font-family: var(--brutal-font-sans);
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
	transition: all .25s ease; white-space: nowrap;
}
.floating-contact .box:hover {
	background: #0A0A0A; color: #fff;
	transform: translate(-3px,-3px); box-shadow: 7px 7px 0 #EDEDEC;
}
.floating-contact .box i { font-size: 15px; }
.wechat-qr-modal-title {
	font-family: var(--brutal-font-serif); font-size: 20px; font-weight: 800;
	color: #0A0A0A; margin-bottom: 20px;
}
