/**
 * Batch 8V-12A — Lean-home-only Elementor footer layout + icon containment.
 *
 * Root cause:
 * 1) 8V-12 dequeued Elementor custom-frontend.min.css (LCP) — removes section/column
 *    flex layout and button/icon base sizing.
 * 2) Lean get_builder_content footer omits `elementor-location-footer`, so Astra-child
 *    App Store / Play Store badge rules never match.
 * 3) Lean shell skips WP core emoji styles (img.emoji { height:1em }).
 *
 * Scope: .b8v-home-lean + Elementor footer only. Does not affect non-home pages.
 */

/* -------------------------------------------------------------------------- */
/* Elementor section / column flex (subset of custom-frontend.min.css)         */
/* -------------------------------------------------------------------------- */

.b8v-home-lean .elementor-3831 .elementor-section .elementor-container,
.b8v-home-lean .elementor-3810 .elementor-section .elementor-container,
.b8v-home-lean .elementor-3855 .elementor-section .elementor-container,
.b8v-home-lean .elementor-location-footer .elementor-section .elementor-container {
	display: flex;
	margin-inline: auto;
	position: relative;
	flex-wrap: wrap;
}

.b8v-home-lean .elementor-3831 .elementor-column,
.b8v-home-lean .elementor-3810 .elementor-column,
.b8v-home-lean .elementor-3855 .elementor-column,
.b8v-home-lean .elementor-location-footer .elementor-column {
	display: flex;
	min-height: 1px;
	position: relative;
}

.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-25,
.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-25,
.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-25,
.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-25 {
	width: 25%;
}

.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-50,
.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-50,
.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-50,
.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-50 {
	width: 50%;
}

.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-100,
.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-100,
.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-100,
.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-100 {
	width: 100%;
}

.b8v-home-lean .elementor-3831 .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.b8v-home-lean .elementor-3810 .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.b8v-home-lean .elementor-3855 .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.b8v-home-lean .elementor-location-footer .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding: 10px;
}

.b8v-home-lean .elementor-3831 .elementor-widget-wrap,
.b8v-home-lean .elementor-3810 .elementor-widget-wrap,
.b8v-home-lean .elementor-3855 .elementor-widget-wrap,
.b8v-home-lean .elementor-location-footer .elementor-widget-wrap {
	display: flex;
	align-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
}

.b8v-home-lean .elementor-3831 .elementor-widget-wrap > .elementor-element,
.b8v-home-lean .elementor-3810 .elementor-widget-wrap > .elementor-element,
.b8v-home-lean .elementor-3855 .elementor-widget-wrap > .elementor-element,
.b8v-home-lean .elementor-location-footer .elementor-widget-wrap > .elementor-element {
	width: 100%;
}

/* Elementor containers (flex / inner) */
.b8v-home-lean .elementor-3831 .e-con.e-flex,
.b8v-home-lean .elementor-3810 .e-con.e-flex,
.b8v-home-lean .elementor-3855 .e-con.e-flex,
.b8v-home-lean .elementor-location-footer .e-con.e-flex {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.b8v-home-lean .elementor-3831 .e-con.e-flex > .e-con-inner,
.b8v-home-lean .elementor-3810 .e-con.e-flex > .e-con-inner,
.b8v-home-lean .elementor-3855 .e-con.e-flex > .e-con-inner,
.b8v-home-lean .elementor-location-footer .e-con.e-flex > .e-con-inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--row-gap, 20px) var(--column-gap, 20px);
	width: 100%;
	max-width: var(--content-width, 1140px);
	margin: 0 auto;
	height: 100%;
}

@media (max-width: 1024px) {
	.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-25 {
		width: 25%;
	}
}

@media (max-width: 768px) {
	.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-25 {
		width: 50%;
	}
}

@media (max-width: 600px) {
	.b8v-home-lean .elementor-3831 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3810 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-3855 .elementor-column.elementor-col-25,
	.b8v-home-lean .elementor-location-footer .elementor-column.elementor-col-25 {
		width: 50%;
	}
}

/* -------------------------------------------------------------------------- */
/* Buttons + icons (custom-frontend subset)                                    */
/* -------------------------------------------------------------------------- */

.b8v-home-lean .elementor-3831 .elementor-button,
.b8v-home-lean .elementor-3810 .elementor-button,
.b8v-home-lean .elementor-3855 .elementor-button,
.b8v-home-lean .elementor-location-footer .elementor-button {
	background-color: #69727d;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	fill: #fff;
	font-size: 15px;
	line-height: 1;
	padding: 12px 24px;
	text-align: center;
	transition: all 0.3s;
	box-sizing: border-box;
	width: auto;
	max-width: 100%;
}

.b8v-home-lean .elementor-3831 .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3810 .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3855 .elementor-button-content-wrapper,
.b8v-home-lean .elementor-location-footer .elementor-button-content-wrapper {
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: center;
	align-items: center;
}

.b8v-home-lean .elementor-3831 .elementor-button-icon,
.b8v-home-lean .elementor-3810 .elementor-button-icon,
.b8v-home-lean .elementor-3855 .elementor-button-icon,
.b8v-home-lean .elementor-location-footer .elementor-button-icon {
	display: flex;
	align-items: center;
}

.b8v-home-lean .elementor-3831 .elementor-button-icon svg,
.b8v-home-lean .elementor-3810 .elementor-button-icon svg,
.b8v-home-lean .elementor-3855 .elementor-button-icon svg,
.b8v-home-lean .elementor-location-footer .elementor-button-icon svg {
	height: auto;
	width: 1em;
}

.b8v-home-lean .elementor-3831 .elementor-button-icon .e-font-icon-svg,
.b8v-home-lean .elementor-3810 .elementor-button-icon .e-font-icon-svg,
.b8v-home-lean .elementor-3855 .elementor-button-icon .e-font-icon-svg,
.b8v-home-lean .elementor-location-footer .elementor-button-icon .e-font-icon-svg {
	height: 1em;
}

.b8v-home-lean .elementor-3831 .elementor-button-text,
.b8v-home-lean .elementor-3810 .elementor-button-text,
.b8v-home-lean .elementor-3855 .elementor-button-text,
.b8v-home-lean .elementor-location-footer .elementor-button-text {
	display: inline-block;
}

.b8v-home-lean .elementor-3831 .elementor-icon,
.b8v-home-lean .elementor-3810 .elementor-icon,
.b8v-home-lean .elementor-3855 .elementor-icon,
.b8v-home-lean .elementor-location-footer .elementor-icon {
	display: inline-block;
	line-height: 1;
	text-align: center;
	transition: all 0.3s;
}

.b8v-home-lean .elementor-3831 .elementor-icon i,
.b8v-home-lean .elementor-3831 .elementor-icon svg,
.b8v-home-lean .elementor-3810 .elementor-icon i,
.b8v-home-lean .elementor-3810 .elementor-icon svg,
.b8v-home-lean .elementor-3855 .elementor-icon i,
.b8v-home-lean .elementor-3855 .elementor-icon svg,
.b8v-home-lean .elementor-location-footer .elementor-icon i,
.b8v-home-lean .elementor-location-footer .elementor-icon svg {
	display: block;
	height: 1em;
	position: relative;
	width: 1em;
}

/* -------------------------------------------------------------------------- */
/* App Store / Play Store badges (Astra-child style.css equivalents)           */
/* Match both location class and lean footer IDs.                              */
/* -------------------------------------------------------------------------- */

/* 8V-12C: match Features/Elementor post-3831 store button chrome (not frosted Astra override).
   Keep max icon size so svg never re-explodes without custom-frontend. */
.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="apps.apple.com"],
.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="play.google.com"],
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="apps.apple.com"],
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="play.google.com"],
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="apps.apple.com"],
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="play.google.com"],
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="apps.apple.com"],
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="play.google.com"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 9.5rem;
	width: auto;
	max-width: 100%;
	padding: 10px 30px;
	border: 1px solid #f1f5f9;
	border-radius: 8px;
	background: transparent;
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
	color: #020817;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="apps.apple.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="play.google.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="apps.apple.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="play.google.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="apps.apple.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="play.google.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="apps.apple.com"] .elementor-button-content-wrapper,
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="play.google.com"] .elementor-button-content-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="apps.apple.com"] svg,
.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="play.google.com"] svg,
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="apps.apple.com"] svg,
.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="play.google.com"] svg,
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="apps.apple.com"] svg,
.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="play.google.com"] svg,
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="apps.apple.com"] svg,
.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="play.google.com"] svg {
	flex-shrink: 0;
	width: 1em;
	height: auto;
	font-size: 30px;
	max-width: 30px;
	max-height: 30px;
}

html.dark-mode.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="apps.apple.com"],
html.dark-mode.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="play.google.com"],
html.dark-mode .b8v-home-lean .elementor-3831 a.elementor-button-link[href*="apps.apple.com"],
html.dark-mode .b8v-home-lean .elementor-3831 a.elementor-button-link[href*="play.google.com"],
html.dark-mode .b8v-home-lean .elementor-3810 a.elementor-button-link[href*="apps.apple.com"],
html.dark-mode .b8v-home-lean .elementor-3810 a.elementor-button-link[href*="play.google.com"],
html.dark-mode .b8v-home-lean .elementor-3855 a.elementor-button-link[href*="apps.apple.com"],
html.dark-mode .b8v-home-lean .elementor-3855 a.elementor-button-link[href*="play.google.com"] {
	border-color: rgba(241, 245, 249, 0.28);
	background: transparent;
	color: #f8fafc;
	box-shadow: none;
}

/* Elementor align helpers missing without custom-frontend.min.css */
.b8v-home-lean .elementor-3831 .elementor-align-center,
.b8v-home-lean .elementor-3810 .elementor-align-center,
.b8v-home-lean .elementor-3855 .elementor-align-center,
.b8v-home-lean .elementor-location-footer .elementor-align-center {
	text-align: center;
}

/*
 * 8V-12D: Features keeps store buttons side-by-side on desktop (e-con-inner row, gap 23px).
 * Lean AR footer uses an e-con-full.e-flex parent that stays flex-direction:column without
 * Elementor custom-frontend — force row on desktop/tablet for any store-button pair.
 */
@media (min-width: 922px) {
	.b8v-home-lean .elementor-location-footer .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3831 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3810 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3855 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-location-footer .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3831 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3810 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]),
	.b8v-home-lean .elementor-3855 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 23px !important;
		width: 100%;
	}

	.b8v-home-lean .elementor-location-footer .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3831 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3810 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3855 .e-con.e-flex:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-location-footer .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3831 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3810 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element,
	.b8v-home-lean .elementor-3855 .e-con-inner:has(a[href*="apps.apple.com"]):has(a[href*="play.google.com"]) > .elementor-element {
		width: auto !important;
		max-width: none !important;
		flex: 0 0 auto !important;
	}
}

@media (max-width: 921px) {
	/* Keep store badges contained but centered like Features mobile (stacked) */
	.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="apps.apple.com"],
	.b8v-home-lean .elementor-location-footer a.elementor-button-link[href*="play.google.com"],
	.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="apps.apple.com"],
	.b8v-home-lean .elementor-3831 a.elementor-button-link[href*="play.google.com"],
	.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="apps.apple.com"],
	.b8v-home-lean .elementor-3810 a.elementor-button-link[href*="play.google.com"],
	.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="apps.apple.com"],
	.b8v-home-lean .elementor-3855 a.elementor-button-link[href*="play.google.com"] {
		display: flex;
		min-width: 0;
		width: 100%;
		max-width: 14rem;
		margin-inline: auto;
		justify-content: center;
	}

	.b8v-home-lean .elementor-3831 .elementor-mobile-align-justify,
	.b8v-home-lean .elementor-3810 .elementor-mobile-align-justify,
	.b8v-home-lean .elementor-3855 .elementor-mobile-align-justify,
	.b8v-home-lean .elementor-location-footer .elementor-mobile-align-justify {
		text-align: center;
	}
}

/* -------------------------------------------------------------------------- */
/* WP emoji in footer trust/contact rows                                       */
/* -------------------------------------------------------------------------- */

.b8v-home-lean .elementor-3831 img.wp-smiley,
.b8v-home-lean .elementor-3831 img.emoji,
.b8v-home-lean .elementor-3810 img.wp-smiley,
.b8v-home-lean .elementor-3810 img.emoji,
.b8v-home-lean .elementor-3855 img.wp-smiley,
.b8v-home-lean .elementor-3855 img.emoji,
.b8v-home-lean .elementor-location-footer img.wp-smiley,
.b8v-home-lean .elementor-location-footer img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
	max-width: 1em !important;
	max-height: 1em !important;
}

.b8v-home-lean .elementor-3831 img,
.b8v-home-lean .elementor-3810 img,
.b8v-home-lean .elementor-3855 img,
.b8v-home-lean .elementor-location-footer img {
	max-width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------------- */
/* Batch 8V-12B — footer link / list chrome (custom-frontend / kit subset)     */
/* Restore approved non-default link look without re-queuing full Elementor CSS */
/* -------------------------------------------------------------------------- */

/* 8V-12C: Features footer uses disc markers on WPR page lists — match that. */
.b8v-home-lean .elementor-3831 ul,
.b8v-home-lean .elementor-3810 ul,
.b8v-home-lean .elementor-3855 ul,
.b8v-home-lean .elementor-location-footer ul {
	list-style: disc;
	margin: 0;
	padding: 0;
	padding-inline-start: 1.1em;
}

.b8v-home-lean .elementor-3831 ol,
.b8v-home-lean .elementor-3810 ol,
.b8v-home-lean .elementor-3855 ol,
.b8v-home-lean .elementor-location-footer ol {
	list-style: decimal;
	margin: 0;
	padding-inline-start: 1.1em;
}

.b8v-home-lean .elementor-3831 li,
.b8v-home-lean .elementor-3810 li,
.b8v-home-lean .elementor-3855 li,
.b8v-home-lean .elementor-location-footer li {
	list-style: inherit;
	margin: 0 0 0.35rem;
	padding: 0;
}

.b8v-home-lean .elementor-3831 a,
.b8v-home-lean .elementor-3810 a,
.b8v-home-lean .elementor-3855 a,
.b8v-home-lean .elementor-location-footer a {
	color: #515e71;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.b8v-home-lean .elementor-3831 a:visited,
.b8v-home-lean .elementor-3810 a:visited,
.b8v-home-lean .elementor-3855 a:visited,
.b8v-home-lean .elementor-location-footer a:visited {
	color: #515e71;
	text-decoration: none;
}

.b8v-home-lean .elementor-3831 a:hover,
.b8v-home-lean .elementor-3831 a:focus-visible,
.b8v-home-lean .elementor-3810 a:hover,
.b8v-home-lean .elementor-3810 a:focus-visible,
.b8v-home-lean .elementor-3855 a:hover,
.b8v-home-lean .elementor-3855 a:focus-visible,
.b8v-home-lean .elementor-location-footer a:hover,
.b8v-home-lean .elementor-location-footer a:focus-visible {
	color: #c9a227;
	text-decoration: none;
}

.b8v-home-lean .elementor-3831 .elementor-heading-title,
.b8v-home-lean .elementor-3810 .elementor-heading-title,
.b8v-home-lean .elementor-3855 .elementor-heading-title,
.b8v-home-lean .elementor-location-footer .elementor-heading-title {
	color: #020817;
	font-weight: 700;
}

.b8v-home-lean .elementor-3831 .wpr-page-list-item,
.b8v-home-lean .elementor-3810 .wpr-page-list-item,
.b8v-home-lean .elementor-3855 .wpr-page-list-item,
.b8v-home-lean .elementor-location-footer .wpr-page-list-item {
	list-style: disc;
	margin: 0 0 0.35rem;
	padding: 0;
}

.b8v-home-lean .elementor-3831 .elementor-social-icon,
.b8v-home-lean .elementor-3810 .elementor-social-icon,
.b8v-home-lean .elementor-3855 .elementor-social-icon,
.b8v-home-lean .elementor-location-footer .elementor-social-icon {
	text-decoration: none;
}

/* Keep social / decorative footer icons contained (8V-12A regression guard). */
.b8v-home-lean .elementor-3831 .elementor-social-icon i,
.b8v-home-lean .elementor-3831 .elementor-social-icon svg,
.b8v-home-lean .elementor-3810 .elementor-social-icon i,
.b8v-home-lean .elementor-3810 .elementor-social-icon svg,
.b8v-home-lean .elementor-3855 .elementor-social-icon i,
.b8v-home-lean .elementor-3855 .elementor-social-icon svg,
.b8v-home-lean .elementor-location-footer .elementor-social-icon i,
.b8v-home-lean .elementor-location-footer .elementor-social-icon svg {
	width: 1em;
	height: 1em;
	max-width: 22px;
	max-height: 22px;
	font-size: 18px;
}

html.dark-mode.b8v-home-lean .elementor-3831 a,
html.dark-mode.b8v-home-lean .elementor-3810 a,
html.dark-mode.b8v-home-lean .elementor-3855 a,
html.dark-mode.b8v-home-lean .elementor-location-footer a,
html.dark-mode .b8v-home-lean .elementor-3831 a,
html.dark-mode .b8v-home-lean .elementor-3810 a,
html.dark-mode .b8v-home-lean .elementor-3855 a,
html.dark-mode .b8v-home-lean .elementor-location-footer a {
	color: #cbd5e1;
}

html.dark-mode.b8v-home-lean .elementor-3831 a:visited,
html.dark-mode.b8v-home-lean .elementor-3810 a:visited,
html.dark-mode.b8v-home-lean .elementor-3855 a:visited,
html.dark-mode.b8v-home-lean .elementor-location-footer a:visited,
html.dark-mode .b8v-home-lean .elementor-3831 a:visited,
html.dark-mode .b8v-home-lean .elementor-3810 a:visited,
html.dark-mode .b8v-home-lean .elementor-3855 a:visited,
html.dark-mode .b8v-home-lean .elementor-location-footer a:visited {
	color: #cbd5e1;
}

html.dark-mode.b8v-home-lean .elementor-3831 a:hover,
html.dark-mode.b8v-home-lean .elementor-3810 a:hover,
html.dark-mode.b8v-home-lean .elementor-3855 a:hover,
html.dark-mode.b8v-home-lean .elementor-location-footer a:hover,
html.dark-mode .b8v-home-lean .elementor-3831 a:hover,
html.dark-mode .b8v-home-lean .elementor-3810 a:hover,
html.dark-mode .b8v-home-lean .elementor-3855 a:hover,
html.dark-mode .b8v-home-lean .elementor-location-footer a:hover {
	color: #d4b45a;
}

html.dark-mode.b8v-home-lean .elementor-3831 .elementor-heading-title,
html.dark-mode.b8v-home-lean .elementor-3810 .elementor-heading-title,
html.dark-mode.b8v-home-lean .elementor-3855 .elementor-heading-title,
html.dark-mode.b8v-home-lean .elementor-location-footer .elementor-heading-title,
html.dark-mode .b8v-home-lean .elementor-3831 .elementor-heading-title,
html.dark-mode .b8v-home-lean .elementor-3810 .elementor-heading-title,
html.dark-mode .b8v-home-lean .elementor-3855 .elementor-heading-title,
html.dark-mode .b8v-home-lean .elementor-location-footer .elementor-heading-title {
	color: #f8fafc;
}


/* -------------------------------------------------------------------------- */
/* Batch 8V-12C — Features footer breathing room + theme toggle affordance     */
/* -------------------------------------------------------------------------- */

.b8v-home-lean .elementor-location-footer > .elementor-element.e-parent,
.b8v-home-lean .elementor-3831 > .elementor-section,
.b8v-home-lean .elementor-3810 > .elementor-section,
.b8v-home-lean .elementor-3855 > .elementor-section {
	padding-block: 0.65rem;
}

.b8v-home-lean .elementor-location-footer .elementor-widget-heading + .elementor-element.e-con,
.b8v-home-lean .elementor-location-footer .elementor-widget-heading + .elementor-widget,
.b8v-home-lean .elementor-3831 .elementor-widget-heading + .elementor-element.e-con,
.b8v-home-lean .elementor-3810 .elementor-widget-heading + .elementor-element.e-con,
.b8v-home-lean .elementor-3855 .elementor-widget-heading + .elementor-element.e-con {
	margin-top: 1rem;
}

/* Nudge language / theme / social / store rows toward Features vertical rhythm. */
.b8v-home-lean .elementor-location-footer .elementor-widget-icon-list,
.b8v-home-lean .elementor-3831 .elementor-widget-icon-list,
.b8v-home-lean .elementor-3810 .elementor-widget-icon-list,
.b8v-home-lean .elementor-3855 .elementor-widget-icon-list {
	margin-block: 0.35rem;
}

.b8v-home-lean .elementor-location-footer .elementor-widget-button,
.b8v-home-lean .elementor-3831 .elementor-widget-button,
.b8v-home-lean .elementor-3810 .elementor-widget-button,
.b8v-home-lean .elementor-3855 .elementor-widget-button {
	margin-block: 0.45rem;
}

.b8v-home-lean .elementor-location-footer .theme-switcher-container,
.b8v-home-lean .elementor-3831 .theme-switcher-container,
.b8v-home-lean .elementor-3810 .theme-switcher-container,
.b8v-home-lean .elementor-3855 .theme-switcher-container {
	display: inline-block;
	vertical-align: middle;
	margin-inline-start: 0.35rem;
}

.b8v-home-lean .elementor-location-footer .theme-toggle-button,
.b8v-home-lean .elementor-3831 .theme-toggle-button,
.b8v-home-lean .elementor-3810 .theme-toggle-button,
.b8v-home-lean .elementor-3855 .theme-toggle-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* Features theme control measures ~48×51 with 15px pad / 4px radius. */
	width: 48px;
	height: 51px;
	min-width: 48px;
	min-height: 51px;
	padding: 15px;
	border: 0;
	border-radius: 4px;
	background: #f5f8fb;
	color: #020817;
	cursor: pointer;
	line-height: 1;
	box-sizing: border-box;
}

.b8v-home-lean .elementor-location-footer .theme-toggle-button i.ms-Icon--Sunny,
.b8v-home-lean .elementor-3831 .theme-toggle-button i.ms-Icon--Sunny,
.b8v-home-lean .elementor-3810 .theme-toggle-button i.ms-Icon--Sunny,
.b8v-home-lean .elementor-3855 .theme-toggle-button i.ms-Icon--Sunny {
	display: inline-block;
	width: 18px;
	height: 18px;
	min-width: 18px;
	font-size: 18px;
	line-height: 1;
	vertical-align: middle;
	color: inherit;
	background-color: currentColor;
	font-style: normal;
	text-indent: -9999px;
	overflow: hidden;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 7a9 9 0 1 0 0 18 9 9 0 0 0 0-18zm0 2a7 7 0 1 1 0 14 7 7 0 0 1 0-14zM16 2a1.5 1.5 0 0 1 1.5 1.5V6a1.5 1.5 0 0 1-3 0V3.5A1.5 1.5 0 0 1 16 2zm0 24a1.5 1.5 0 0 1 1.5 1.5V30a1.5 1.5 0 0 1-3 0v-2.5A1.5 1.5 0 0 1 16 26zM4.22 4.22a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 0 1-2.12 2.12L4.22 6.34a1.5 1.5 0 0 1 0-2.12zm21.56 21.56a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 1 1-2.12 2.12l-1.77-1.77a1.5 1.5 0 0 1 0-2.12zM2 16a1.5 1.5 0 0 1 1.5-1.5H6a1.5 1.5 0 0 1 0 3H3.5A1.5 1.5 0 0 1 2 16zm24 0a1.5 1.5 0 0 1 1.5-1.5H30a1.5 1.5 0 0 1 0 3h-2.5A1.5 1.5 0 0 1 26 16zM6.34 25.78a1.5 1.5 0 0 1 0-2.12l1.77-1.77a1.5 1.5 0 1 1 2.12 2.12l-1.77 1.77a1.5 1.5 0 0 1-2.12 0zM23.89 8.23a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 1 1-2.12 2.12l-1.77-1.77a1.5 1.5 0 0 1 0-2.12z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 7a9 9 0 1 0 0 18 9 9 0 0 0 0-18zm0 2a7 7 0 1 1 0 14 7 7 0 0 1 0-14zM16 2a1.5 1.5 0 0 1 1.5 1.5V6a1.5 1.5 0 0 1-3 0V3.5A1.5 1.5 0 0 1 16 2zm0 24a1.5 1.5 0 0 1 1.5 1.5V30a1.5 1.5 0 0 1-3 0v-2.5A1.5 1.5 0 0 1 16 26zM4.22 4.22a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 0 1-2.12 2.12L4.22 6.34a1.5 1.5 0 0 1 0-2.12zm21.56 21.56a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 1 1-2.12 2.12l-1.77-1.77a1.5 1.5 0 0 1 0-2.12zM2 16a1.5 1.5 0 0 1 1.5-1.5H6a1.5 1.5 0 0 1 0 3H3.5A1.5 1.5 0 0 1 2 16zm24 0a1.5 1.5 0 0 1 1.5-1.5H30a1.5 1.5 0 0 1 0 3h-2.5A1.5 1.5 0 0 1 26 16zM6.34 25.78a1.5 1.5 0 0 1 0-2.12l1.77-1.77a1.5 1.5 0 1 1 2.12 2.12l-1.77 1.77a1.5 1.5 0 0 1-2.12 0zM23.89 8.23a1.5 1.5 0 0 1 2.12 0l1.77 1.77a1.5 1.5 0 1 1-2.12 2.12l-1.77-1.77a1.5 1.5 0 0 1 0-2.12z'/%3E%3C/svg%3E");
}

/* 8V-12D: Features dark theme control is icon-only (transparent) — remove slate chip. */
html.dark-mode.b8v-home-lean .elementor-location-footer .theme-toggle-button,
html.dark-mode .b8v-home-lean .elementor-3831 .theme-toggle-button,
html.dark-mode .b8v-home-lean .elementor-3810 .theme-toggle-button,
html.dark-mode .b8v-home-lean .elementor-3855 .theme-toggle-button {
	background: transparent;
	background-color: transparent;
	box-shadow: none;
	border: 0;
	color: #f8fafc;
	/* Keep usable hit target without a visible block. */
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border-radius: 0;
}
