/* Área de pedidos: imagens originais em uma barra própria. */
body {
	padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}
.order-bar {
	position: fixed;
	z-index: 999;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-top: 1px solid #e8e2da;
	box-shadow: 0 -3px 16px rgba(50, 35, 20, 0.07);
	padding: 10px 24px calc(10px + env(safe-area-inset-bottom, 0px));
}
.order-bar__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}
.order-bar a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	min-height: 48px;
	border: 0;
	border-radius: 8px;
}
.order-bar a:focus-visible {
	outline: 3px solid #a7420c;
	outline-offset: 3px;
}
.order-bar img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 736px) {
	.order-bar { padding-left: 12px; padding-right: 12px; }
	.order-bar__inner { gap: 12px; justify-content: center; }
	.order-bar a { flex: 1; min-width: 0; max-width: 220px; }
}
