.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--main-text-dark-color);
	font-size: 12px;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 1003;
	display: inline-flex;
	align-items: center;
}

.back-to-top__icon {
	font-size: 18px;
	line-height: 1;
}

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

@media (max-width: 640px) {
	.back-to-top {
		right: 16px;
		bottom: 16px;
	}
}
