/* ── Base bar — shown/hidden via inline media query in render() ── */
.mbb-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	align-items: stretch;
	background: #fff;
	border-top: 1px solid #e0e0e0;
	height: 64px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

/* In Elementor editor render it as static so it doesn't float away */
.elementor-editor-active .mbb-bar {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	box-shadow: none;
}

/* ── Buttons ── */
.mbb-btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-decoration: none;
	color: #333;
	border-right: 1px solid #ebebeb;
	transition: background 0.15s ease;
	-webkit-tap-highlight-color: transparent;
	padding: 6px 4px;
}

.mbb-btn:last-child {
	border-right: none;
}

.mbb-btn:hover,
.mbb-btn:focus-visible {
	background: rgba(0, 0, 0, 0.05);
	outline: none;
}

.mbb-btn i {
	font-size: 22px;
	line-height: 1;
}

.mbb-btn svg {
	width: 22px;
	height: 22px;
	display: block;
}

.mbb-label {
	font-size: 11px;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
}

.mbb-btn--featured .mbb-label {
	font-weight: 700;
}

/* Make inline SVG paths respond to the icon_color control via currentColor */
.mbb-btn svg path {
	fill: currentColor;
}
