.bm-footer {
	background: #2b2b2b;
	color: #f2f2f2;
	margin-top: 2rem;
}

.bm-footer__main {
	padding: 2.5rem 0 2rem;
}

.bm-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.bm-footer__heading {
	font-size: 0.95rem;
	margin-bottom: 0.85rem;
}

.bm-footer__menu a,
.bm-footer__col p {
	color: #cfcfcf;
	font-size: 0.9rem;
}

.bm-footer__menu a {
	display: inline-block;
	padding: 0.22rem 0;
}

.bm-footer__menu a:hover {
	color: var(--bm-white);
}

.bm-footer__apps {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.8rem;
}

.bm-store {
	display: inline-flex;
	align-items: center;
	min-height: 2.2rem;
	padding: 0 0.7rem;
	border: 1px solid #555;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
}

.bm-footer__bottom {
	border-top: 1px solid #3d3d3d;
	padding: 1rem 0 5.5rem;
}

.bm-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.bm-footer__copy {
	color: #9a9a9a;
	font-size: 0.8rem;
}

.bm-footer__social {
	display: flex;
	gap: 0.5rem;
}

.bm-footer__social-link {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #3d3d3d;
}

.bm-tabbar {
	display: none;
}

@media (max-width: 860px) {
	.bm-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.4rem;
	}
}

@media (max-width: 640px) {
	.bm-tabbar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 35;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		background: var(--bm-white);
		border-top: 1px solid var(--bm-line);
		padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
	}

	.bm-tabbar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.15rem;
		font-size: 0.65rem;
		font-weight: 700;
		color: var(--bm-muted);
	}

	.bm-tabbar__item.is-active {
		color: var(--bm-orange);
	}

	.bm-footer__bottom {
		padding-bottom: 6.5rem;
	}
}
