/*
 * Cutting Hedge — sticky mobile tap-to-call bar.
 * CSS-only: hidden on desktop, fixed to the viewport bottom on small screens.
 */

.ch-callbar {
	display: none;
}

@media (max-width: 600px) {
	.ch-callbar {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 100;
		margin: 0;
		padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
		background-color: #ffffff;
		border-top: 1px solid var(--wp--preset--color--border);
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
	}

	.ch-callbar .wp-block-buttons,
	.ch-callbar .wp-block-button {
		width: 100%;
		margin: 0;
	}

	.ch-callbar .wp-block-button__link {
		display: block;
		width: 100%;
		text-align: center;
		border-radius: 999px;
		padding-top: 0.85em;
		padding-bottom: 0.85em;
	}

	/* Stop the fixed bar covering the last of the footer. */
	body.home {
		padding-bottom: 76px;
	}
}
