/* 모바일 전용 플로팅 퀵메뉴 (인스타그램 / 카카오톡 오픈채팅방 / 맨 아래에서만 나타나는 위로가기) */

.odf-quick-menu {
	position: fixed;
	right: 16px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.odf-quick-menu__btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.odf-quick-menu__btn svg {
	width: 22px;
	height: 22px;
	display: block;
}

.odf-quick-menu__btn--instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.odf-quick-menu__btn--kakao {
	background: #FEE500;
}

.odf-quick-menu__btn--top {
	background: #FFFFFF;
	border: 1px solid var(--odf-border, #E4E1D8);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.odf-quick-menu__btn--top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* PC에서는 노출하지 않음 (모바일 전용 기능) */
@media (min-width: 768px) {
	.odf-quick-menu {
		display: none;
	}
}
