/* Sticky Mobile Bar Container - Compact Style at Top */
.sticky-mobile-bar-767e5b9c {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 8px 12px; /* Slightly reduced horizontal padding */
	z-index: 99999;
	display: none; /* Controlled by JS and Media Queries */
	box-sizing: border-box;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(-100%);
	opacity: 0;
}

.sticky-mobile-bar-inner-767e5b9c {
	display: flex !important;
	flex-flow: row nowrap !important; /* Force inline display, never wrap */
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

/* Adjust for WordPress Admin Bar when logged in */
body.admin-bar .sticky-mobile-bar-767e5b9c {
	top: 46px; /* Height of the mobile admin bar */
}

/* Show only on Mobile and when active class is applied */
@media screen and (max-width: 767px) {
	.sticky-mobile-bar-767e5b9c {
		display: block;
	}
	
	.sticky-mobile-bar-767e5b9c.is-visible {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Premium Button Styling Matching the Site Buttons Exactly with slightly reduced size */
.sticky-mobile-button-767e5b9c {
	flex: 1 1 auto !important; /* Let button fill remaining space dynamically */
	min-width: 0; /* Allow shrinking if space is tight */
	background-color: #A90037; /* Exactly match primary button color */
	color: #FFFFFF !important;
	text-align: center;
	padding: 10px 8px; /* Compact padding */
	font-family: inherit;
	font-size: 13px; /* Slightly reduced size to fit safely on smaller viewports */
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none !important;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 4px rgba(169, 0, 55, 0.15);
	transition: background-color 0.25s ease, transform 0.1s ease;
	white-space: nowrap; /* Avoid text wrapping within the button */
}

.sticky-mobile-button-767e5b9c:hover,
.sticky-mobile-button-767e5b9c:focus {
	background-color: #0A183D;
}

.sticky-mobile-button-767e5b9c:active {
	transform: scale(0.98);
}

/* Custom Hamburger Menu Button to match Blocksy mobile trigger style */
.sticky-mobile-menu-trigger-767e5b9c {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid rgba(10, 24, 61, 0.15);
	border-radius: 4px;
	color: #0A183D; /* Match site's secondary / dark blue text color */
	cursor: pointer;
	padding: 0;
	flex: 0 0 40px !important; /* Absolutely prevent stretching or shrinking */
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.sticky-mobile-menu-trigger-767e5b9c:hover,
.sticky-mobile-menu-trigger-767e5b9c:focus {
	background-color: rgba(10, 24, 61, 0.05);
	border-color: rgba(10, 24, 61, 0.3);
}

.sticky-hamburger-svg-767e5b9c {
	display: block;
	transition: transform 0.25s ease;
}
