/*
Theme Name: Birla Mrida Blog
Theme URI: https://www.birlamridaplotsboisar.com/blog/
Author: Honey Money Associates
Author URI: https://www.birlamridaplotsboisar.com/
Description: Custom blog theme for birlamridaplotsboisar.com. Matches the main site palette, typography and container width. Replaces Astra.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: birla-mrida-blog
Tags: blog, one-column, right-sidebar, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   Design tokens - read from the main site's css/main.css
   Change these and everything follows.
   ========================================================================== */

:root {
	--bm-primary: #071c35;
	--bm-primary-rgb: 7, 28, 53;
	--bm-secondary: #53555a;
	--bm-body: #212529;
	--bm-muted: #6c757d;
	--bm-border: #dee2e6;
	--bm-border-soft: rgba(7, 28, 53, .2);
	--bm-light: #f8f9fa;
	--bm-panel: rgba(233, 236, 239, .2);
	--bm-footer-bg: #212529;
	--bm-footer-text: #dee2e6;
	--bm-footer-muted: #495057;
	--bm-whatsapp: #25d366;
	--bm-phone: #0abf53;

	--bm-container: 1170px;
	--bm-radius: 0.4rem;
	--bm-space: 22px;
	--bm-space-xl: 40px;
	--bm-shadow: 0 19px 48px -12px rgba(0, 0, 0, .25);
	--bm-shadow-sm: 0 .5rem .5rem rgba(0, 0, 0, .1);

	--bm-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--bm-weight-bold: 600;
	--bm-weight-medium: 500;
	--bm-fs-small: 0.875rem;
	--bm-fs-smallest: 0.75rem;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

body {
	margin: 0;
	font-family: var(--bm-font);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--bm-body);
	background-color: #fff;
}

img,
svg { vertical-align: middle; }

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--bm-primary);
	text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bm-font);
	font-weight: var(--bm-weight-bold);
	line-height: 1.3;
	color: var(--bm-primary);
	margin-top: 0;
	margin-bottom: .75rem;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.15rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p { margin: 0 0 1.15rem; }

hr {
	border: 0;
	border-top: 1px solid var(--bm-border);
	margin: 2rem 0;
}

blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--bm-primary);
	background: var(--bm-panel);
	border-radius: 0 var(--bm-radius) var(--bm-radius) 0;
}

blockquote p:last-child { margin-bottom: 0; }

code, pre {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: .875em;
}

pre {
	background: var(--bm-light);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 1rem;
	overflow: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
	font-size: var(--bm-fs-small);
}

th, td {
	border: 1px solid var(--bm-border);
	padding: .6rem .75rem;
	text-align: left;
}

th {
	background: var(--bm-light);
	font-weight: var(--bm-weight-bold);
	color: var(--bm-primary);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--bm-primary);
	color: #fff;
	padding: .75rem 1.25rem;
	z-index: 9999;
}

.skip-link:focus { left: 0; }

:focus-visible {
	outline: 2px solid var(--bm-primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.bm-container {
	width: 100%;
	max-width: var(--bm-container);
	margin: 0 auto;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
}

@media (min-width: 768px) {
	.bm-container {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.bm-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-top: 2rem;
	padding-bottom: 3rem;
}

@media (min-width: 992px) {
	.bm-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 3rem;
	}
	.bm-layout--full { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.bm-btn {
	display: inline-block;
	padding: .68rem 1.25rem;
	border-radius: var(--bm-radius);
	background-color: var(--bm-primary);
	border: 1px solid var(--bm-primary);
	color: #fff;
	font-weight: var(--bm-weight-medium);
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.bm-btn:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-4px);
	box-shadow: var(--bm-shadow-sm);
}

.bm-btn:focus { transform: translateY(-1px); }

.bm-btn--outline {
	background: transparent;
	color: var(--bm-primary);
}

.bm-btn--outline:hover {
	background: var(--bm-primary);
	color: #fff;
}

.bm-btn--whatsapp {
	background-color: var(--bm-whatsapp);
	border-color: var(--bm-whatsapp);
}

.bm-btn--block { display: block; width: 100%; }

@media (prefers-reduced-motion: reduce) {
	.bm-btn { transition: none; }
	.bm-btn:hover, .bm-btn:focus { transform: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.bm-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: #fff;
	border-bottom: 1px solid var(--bm-border);
}

.bm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 64px;
	padding-top: .35rem;
	padding-bottom: .35rem;
}

.bm-brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	flex-shrink: 0;
}

.bm-brand:hover { text-decoration: none; }

.bm-brand img {
	width: auto;
	height: 45px;
}

.bm-brand__text {
	font-weight: var(--bm-weight-bold);
	font-size: 1.05rem;
	color: var(--bm-primary);
	line-height: 1.2;
}

.bm-nav { margin-left: auto; }

.bm-nav ul {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bm-nav a {
	display: block;
	padding: .55rem .75rem;
	font-weight: var(--bm-weight-bold);
	font-size: .95rem;
	color: var(--bm-secondary);
	border-radius: var(--bm-radius);
}

.bm-nav a:hover {
	color: var(--bm-primary);
	background: rgba(var(--bm-primary-rgb), .06);
	text-decoration: none;
}

.bm-nav .current-menu-item > a,
.bm-nav .current_page_item > a { color: var(--bm-primary); }

.bm-header__cta { flex-shrink: 0; }

.bm-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	color: var(--bm-primary);
	cursor: pointer;
}

@media (max-width: 991px) {
	.bm-toggle { display: inline-flex; }
	.bm-header__cta { display: none; }

	.bm-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 1px solid var(--bm-border);
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
		display: none;
	}

	.bm-nav.is-open { display: block; }

	.bm-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: .5rem 1.2rem 1rem;
	}

	.bm-nav li + li { border-top: 1px solid var(--bm-border); }

	.bm-nav a {
		padding: .85rem .25rem;
		font-size: 1rem;
	}
}

/* ==========================================================================
   Page head / breadcrumb
   ========================================================================== */

.bm-pagehead {
	background: rgba(var(--bm-primary-rgb), .04);
	border-bottom: 1px solid var(--bm-border);
	padding: 1.75rem 0;
}

.bm-pagehead h1 { margin-bottom: .35rem; }

.bm-pagehead p {
	margin: 0;
	color: var(--bm-muted);
	font-size: var(--bm-fs-small);
}

.bm-crumbs {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: .5rem;
}

.bm-crumbs a { color: var(--bm-secondary); }

.bm-crumbs span[aria-hidden] { margin: 0 .35rem; }

/* ==========================================================================
   Post cards
   ========================================================================== */

.bm-posts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

@media (min-width: 640px) {
	.bm-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bm-posts--single { grid-template-columns: 1fr; }
}

.bm-card {
	display: flex;
	flex-direction: column;
	background: var(--bm-panel);
	border: 1px solid rgba(222, 226, 230, .8);
	border-radius: .5rem;
	overflow: hidden;
	transition: box-shadow .15s ease-in-out;
}

.bm-card:hover { box-shadow: var(--bm-shadow-sm); }

.bm-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bm-light);
}

.bm-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-card__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.bm-card__title {
	font-size: 1.15rem;
	margin-bottom: .5rem;
}

.bm-card__title a { color: var(--bm-primary); }

.bm-card__meta {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: .6rem;
}

.bm-card__meta span + span::before {
	content: "\00b7";
	margin: 0 .4rem;
}

.bm-card__excerpt {
	font-size: var(--bm-fs-small);
	color: var(--bm-secondary);
	margin-bottom: 1rem;
}

.bm-card__more {
	margin-top: auto;
	font-weight: var(--bm-weight-bold);
	font-size: var(--bm-fs-small);
}

/* ==========================================================================
   Single post
   ========================================================================== */

.bm-single__hero {
	border-radius: var(--bm-radius);
	overflow: hidden;
	margin-bottom: 1.75rem;
	border: 1px solid var(--bm-border-soft);
}

.bm-single__hero img {
	width: 100%;
	display: block;
}

.bm-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem 1rem;
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--bm-border);
}

.bm-entry__meta a { color: var(--bm-secondary); }

.bm-entry p { text-align: justify; }

.bm-entry > h2 { margin-top: 2rem; }

.bm-entry > h3 { margin-top: 1.5rem; }

.bm-entry ul,
.bm-entry ol { padding-left: 1.4rem; margin-bottom: 1.25rem; }

.bm-entry li { margin-bottom: .4rem; }

.bm-entry figure { margin: 1.75rem 0; }

.bm-entry figure img { border-radius: var(--bm-radius); }

.bm-entry figcaption {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	text-align: center;
	padding-top: .5rem;
}

.bm-entry .alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.bm-entry .alignright { float: right; margin: 0 0 1rem 1.5rem; }
.bm-entry .aligncenter { display: block; margin: 1.5rem auto; }
.bm-entry .wp-caption { max-width: 100%; }

/* Author box */

.bm-author {
	display: flex;
	gap: 1.15rem;
	align-items: flex-start;
	background: var(--bm-panel);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 1.25rem;
	margin-top: 2.5rem;
}

.bm-author img {
	border-radius: 100vmax;
	flex-shrink: 0;
}

.bm-author__name {
	font-weight: var(--bm-weight-bold);
	color: var(--bm-primary);
	margin-bottom: .1rem;
}

.bm-author__role {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: .5rem;
}

.bm-author__bio {
	font-size: var(--bm-fs-small);
	color: var(--bm-secondary);
	margin: 0;
}

.bm-reviewed {
	margin-top: 1rem;
	padding-top: .85rem;
	border-top: 1px solid var(--bm-border);
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
}

.bm-reviewed strong { color: var(--bm-secondary); }

/* Post CTA */

.bm-postcta {
	margin-top: 2.5rem;
	padding: 1.75rem;
	border-radius: var(--bm-radius);
	background: rgba(var(--bm-primary-rgb), .05);
	border: 1px solid var(--bm-border-soft);
	text-align: center;
}

.bm-postcta h2 {
	font-size: 1.3rem;
	margin-bottom: .5rem;
}

.bm-postcta p {
	font-size: var(--bm-fs-small);
	color: var(--bm-secondary);
	margin-bottom: 1.15rem;
	text-align: center;
}

.bm-postcta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: center;
}

/* Post navigation */

.bm-postnav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--bm-border);
}

@media (min-width: 640px) {
	.bm-postnav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.bm-postnav a {
	display: block;
	padding: 1rem;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
}

.bm-postnav a:hover {
	border-color: var(--bm-border-soft);
	text-decoration: none;
	box-shadow: var(--bm-shadow-sm);
}

.bm-postnav small {
	display: block;
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: .25rem;
}

.bm-postnav span {
	font-weight: var(--bm-weight-medium);
	color: var(--bm-primary);
	font-size: var(--bm-fs-small);
}

.bm-postnav--next { text-align: right; }

/* Related posts */

.bm-related { margin-top: 3rem; }

.bm-related > h2 {
	font-size: 1.3rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--bm-border);
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.bm-sidebar { align-self: start; }

@media (min-width: 992px) {
	.bm-sidebar {
		position: sticky;
		top: 88px;
	}
}

.bm-widget {
	margin-bottom: 1.75rem;
	padding: 1.25rem;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	background: #fff;
}

.bm-widget__title {
	font-size: 1.05rem;
	padding-bottom: .6rem;
	margin-bottom: .85rem;
	border-bottom: 1px solid var(--bm-border);
}

.bm-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--bm-fs-small);
}

.bm-widget li { padding: .45rem 0; }

.bm-widget li + li { border-top: 1px solid rgba(222, 226, 230, .6); }

.bm-widget a { color: var(--bm-secondary); }

.bm-widget a:hover { color: var(--bm-primary); }

.bm-widget select,
.bm-widget input[type="text"],
.bm-widget input[type="search"] {
	width: 100%;
	padding: .5rem .75rem;
	font-family: inherit;
	font-size: var(--bm-fs-small);
	background: rgba(233, 236, 239, .5);
	border: none;
	border-radius: var(--bm-radius);
}

.bm-widget input:focus {
	outline: none;
	border: 1px solid var(--bm-border-soft);
}

/* Sidebar enquiry panel */

.bm-enquiry {
	padding: 1.5rem 1.35rem;
	border-radius: var(--bm-radius);
	background: #fff;
	border: 1px solid var(--bm-border-soft);
	box-shadow: var(--bm-shadow);
	margin-bottom: 1.75rem;
	text-align: center;
}

.bm-enquiry h2 {
	font-size: 1.2rem;
	margin-bottom: .35rem;
}

.bm-enquiry p {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: 1.1rem;
}

.bm-enquiry .bm-btn + .bm-btn { margin-top: .6rem; }

.bm-enquiry__rera {
	margin-top: 1rem;
	padding-top: .85rem;
	border-top: 1px solid var(--bm-border);
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: 0;
}

/* ==========================================================================
   Search form
   ========================================================================== */

.bm-search {
	display: flex;
	gap: .5rem;
}

.bm-search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: .55rem .75rem;
	font-family: inherit;
	font-size: var(--bm-fs-small);
	background: rgba(233, 236, 239, .5);
	border: none;
	border-radius: var(--bm-radius);
}

.bm-search input[type="search"]:focus {
	outline: none;
	border: 1px solid var(--bm-border-soft);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.bm-pagination {
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--bm-border);
}

.bm-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	justify-content: center;
}

.bm-pagination .page-numbers {
	display: inline-block;
	min-width: 2.4rem;
	padding: .45rem .7rem;
	text-align: center;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	color: var(--bm-secondary);
	font-size: var(--bm-fs-small);
}

.bm-pagination .page-numbers:hover {
	text-decoration: none;
	border-color: var(--bm-border-soft);
	color: var(--bm-primary);
}

.bm-pagination .page-numbers.current {
	background: var(--bm-primary);
	border-color: var(--bm-primary);
	color: #fff;
}

.bm-pagination .dots { border-color: transparent; }

/* ==========================================================================
   Comments
   ========================================================================== */

.bm-comments {
	margin-top: 3rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--bm-border);
}

.bm-comments__title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.bm-comments ol {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.bm-comments .children {
	list-style: none;
	padding-left: 1.5rem;
	margin-top: 1rem;
}

.bm-comments .comment-body {
	padding: 1.15rem;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	margin-bottom: 1rem;
	font-size: var(--bm-fs-small);
}

.bm-comments .comment-author { font-weight: var(--bm-weight-bold); }

.bm-comments .comment-author img {
	border-radius: 100vmax;
	margin-right: .5rem;
}

.bm-comments .comment-metadata {
	font-size: var(--bm-fs-smallest);
	color: var(--bm-muted);
	margin-bottom: .6rem;
}

.bm-comments input[type="text"],
.bm-comments input[type="email"],
.bm-comments input[type="url"],
.bm-comments textarea {
	width: 100%;
	padding: .55rem .75rem;
	font-family: inherit;
	font-size: var(--bm-fs-small);
	background: rgba(233, 236, 239, .5);
	border: none;
	border-radius: var(--bm-radius);
}

.bm-comments .comment-form-comment { margin-bottom: 1rem; }

.bm-comments label {
	display: block;
	font-size: var(--bm-fs-smallest);
	margin-bottom: .25rem;
	color: var(--bm-secondary);
}

.bm-comments .submit {
	padding: .68rem 1.25rem;
	background: var(--bm-primary);
	border: 1px solid var(--bm-primary);
	border-radius: var(--bm-radius);
	color: #fff;
	font-family: inherit;
	font-weight: var(--bm-weight-medium);
	cursor: pointer;
}

/* ==========================================================================
   Empty states / 404
   ========================================================================== */

.bm-none {
	padding: 3rem 1.5rem;
	text-align: center;
	border: 1px dashed var(--bm-border);
	border-radius: var(--bm-radius);
}

.bm-none h2 { font-size: 1.25rem; }

.bm-none p {
	color: var(--bm-muted);
	font-size: var(--bm-fs-small);
	max-width: 34rem;
	margin: 0 auto 1.5rem;
}

.bm-404__code {
	font-size: clamp(3.5rem, 12vw, 6rem);
	font-weight: var(--bm-weight-bold);
	color: rgba(var(--bm-primary-rgb), .12);
	line-height: 1;
	margin-bottom: .5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.bm-footer {
	position: relative;
	background-color: var(--bm-footer-bg);
	color: var(--bm-footer-text);
	padding-top: 2.5rem;
}

.bm-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}

@media (min-width: 768px) {
	.bm-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.bm-footer h2 {
	font-size: 1rem;
	color: #fff;
	margin-bottom: .85rem;
}

.bm-footer p {
	font-size: var(--bm-fs-small);
	color: #adb5bd;
	margin-bottom: .85rem;
}

.bm-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--bm-fs-small);
}

.bm-footer li { padding: .3rem 0; }

.bm-footer a { color: var(--bm-footer-text); }

.bm-footer a:hover { color: #fff; }

.bm-footer__logo {
	height: 45px;
	width: auto;
	margin-bottom: .85rem;
}

.bm-disclosure {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 1.5rem 0;
	font-size: var(--bm-fs-smallest);
	color: #adb5bd;
	line-height: 1.7;
}

.bm-disclosure strong { color: var(--bm-footer-text); }

.bm-copyright {
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .9rem;
	padding: 1.5rem 1rem;
	text-align: center;
	color: var(--bm-footer-muted);
}

.bm-copyright a { color: var(--bm-footer-text); }

@media (max-width: 991px) {
	.bm-copyright { padding-bottom: 6rem; }
}

/* ==========================================================================
   Floating actions
   ========================================================================== */

.bm-wa-desktop {
	position: fixed;
	left: 1.4rem;
	bottom: 6.5rem;
	z-index: 10;
}

.bm-wa-desktop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.7rem;
	height: 3.7rem;
	border-radius: 100vmax;
	background-color: var(--bm-whatsapp);
	color: #fff;
	box-shadow: var(--bm-shadow-sm);
}

@media (max-width: 991px) {
	.bm-wa-desktop { display: none; }
}

.bm-actionbar {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background-color: #fff;
	border-top: 1px solid #dcdcdc;
	padding: .9rem;
	gap: .9rem;
	align-items: center;
}

@media (max-width: 991px) {
	.bm-actionbar { display: flex; }
	.bm-actionbar .bm-btn { flex: 1 1 0; }
	.bm-actionbar svg { color: var(--bm-whatsapp); flex-shrink: 0; }
}
