/* Scroll to Top Button Styles */
.scroll-to-top-btn {
	position: fixed;
	bottom: 100px;
	right: 100px;
	z-index: 9999; /* High z-index to ensure it floats above everything */
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	transform: translateY(20px);
}

.scroll-to-top-btn.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-to-top-btn:hover {
	transform: translateY(-5px);
}

/* 반응형: 태블릿/모바일에서 숨김 */
@media (max-width: 1023px) {
	.scroll-to-top-btn {
		display: none !important;
	}
}
