/* ================================================================
 * Listeo Modern Homepage v2.0 — CSS
 * Color scheme: Main #4fba3a  |  CTA #f07b24
 * ================================================================ */

:root {
	--lmh-primary: #4fba3a;
	--lmh-primary-dark: #3a9e28;
	--lmh-primary-light: #e8f5e6;
	--lmh-cta: #f07b24;
	--lmh-cta-dark: #d96a18;
	--lmh-cta-light: #fdf0e5;
	--lmh-dark: #1a1a2e;
	--lmh-text: #333340;
	--lmh-text-light: #6b7280;
	--lmh-bg: #ffffff;
	--lmh-bg-alt: #f8faf8;
	--lmh-bg-muted: #f3f4f6;
	--lmh-border: #e5e7eb;
	--lmh-radius: 16px;
	--lmh-radius-sm: 10px;
	--lmh-radius-lg: 24px;
	--lmh-btn-radius: 50px;
	--lmh-shadow: 0 4px 20px rgba(0,0,0,.06);
	--lmh-shadow-hover: 0 12px 40px rgba(0,0,0,.12);
	--lmh-transition: .3s cubic-bezier(.4,0,.2,1);
	--lmh-container: 1200px;
	--lmh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--lmh-hero-min-height: 580px;
}

/* ── Global resets for our page ── */
#lmh-page {
	font-family: var(--lmh-font);
	color: var(--lmh-text);
	line-height: 1.6;
	overflow-x: hidden;
}

#lmh-page *,
#lmh-page *::before,
#lmh-page *::after {
	box-sizing: border-box;
}

.lmh-container {
	max-width: var(--lmh-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ================================================================
 * HEADER STYLES
 * ================================================================ */

/* Transparent header — overlays hero */
body.lmh-header-transparent #wrapper > header {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent !important;
	box-shadow: none !important;
	border-bottom: none !important;
}

body.lmh-header-transparent #wrapper > header .logo a,
body.lmh-header-transparent #wrapper > header nav a,
body.lmh-header-transparent #wrapper > header .menu-item a {
	color: #fff !important;
}

body.lmh-header-transparent .lmh-hero {
	padding-top: 160px;
}

/* Floating header */
body.lmh-header-floating #wrapper > header {
	position: absolute !important;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
	max-width: 1300px;
	z-index: 100;
	background: rgba(255,255,255,.12) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--lmh-radius) !important;
	border: 1px solid rgba(255,255,255,.15) !important;
	box-shadow: 0 8px 32px rgba(0,0,0,.12) !important;
}

body.lmh-header-floating #wrapper > header:not(.lmh-header-scrolled) .logo a,
body.lmh-header-floating #wrapper > header:not(.lmh-header-scrolled) nav a,
body.lmh-header-floating #wrapper > header:not(.lmh-header-scrolled) .menu-item a {
	color: #fff !important;
}

body.lmh-header-floating .lmh-hero {
	padding-top: 160px;
}

/* Minimal header */
body.lmh-header-minimal #wrapper > header {
	background: var(--lmh-dark) !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

body.lmh-header-minimal #wrapper > header .logo a,
body.lmh-header-minimal #wrapper > header nav a,
body.lmh-header-minimal #wrapper > header .menu-item a {
	color: rgba(255,255,255,.9) !important;
}

body.lmh-header-minimal #wrapper > header .menu-item a:hover {
	color: var(--lmh-primary) !important;
}

/* Default (unchanged Listeo header) */
body.lmh-header-default #wrapper > header {
	position: relative;
	z-index: 100;
}

/* ================================================================
 * HERO SECTION
 * ================================================================ */
.lmh-hero {
	position: relative;
	z-index: 10;
	min-height: var(--lmh-hero-min-height);
	display: flex;
	align-items: center;
	overflow: visible; /* Allow AI quick picks to overflow below wave */
	padding: 120px 0 100px;
}

/* Gradient variant (default) */
.lmh-hero--gradient {
	background: linear-gradient(135deg, #0f2027 0%, #1a3a2a 30%, #203a43 60%, #2c5364 100%);
}

/* Image variant */
.lmh-hero--image {
	background: var(--lmh-dark);
}

.lmh-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.lmh-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15,32,39,.85) 0%, rgba(32,58,67,.7) 50%, rgba(44,83,100,.6) 100%);
	z-index: 1;
}

/* Video variant */
.lmh-hero--video {
	background: var(--lmh-dark);
}

.lmh-hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.lmh-hero__video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Particles variant */
.lmh-hero--particles {
	background: linear-gradient(135deg, #0f2027 0%, #1a2a33 50%, #1e3040 100%);
}

.lmh-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Aurora variant */
.lmh-hero--aurora {
	background: linear-gradient(135deg, #0a1628 0%, #0f2027 40%, #162029 100%);
}

.lmh-hero__aurora {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.lmh-aurora-wave {
	position: absolute;
	width: 200%;
	height: 60%;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .25;
}

.lmh-aurora-wave--1 {
	background: var(--lmh-primary);
	top: -30%;
	left: -20%;
	animation: lmhAurora1 12s ease-in-out infinite alternate;
}

.lmh-aurora-wave--2 {
	background: var(--lmh-cta);
	top: 10%;
	right: -30%;
	animation: lmhAurora2 15s ease-in-out infinite alternate-reverse;
}

.lmh-aurora-wave--3 {
	background: #3b82f6;
	bottom: -20%;
	left: 10%;
	animation: lmhAurora3 18s ease-in-out infinite alternate;
}

@keyframes lmhAurora1 {
	0% { transform: translate(0, 0) scale(1) rotate(0deg); }
	100% { transform: translate(80px, 40px) scale(1.2) rotate(10deg); }
}

@keyframes lmhAurora2 {
	0% { transform: translate(0, 0) scale(1) rotate(0deg); }
	100% { transform: translate(-60px, 30px) scale(1.15) rotate(-8deg); }
}

@keyframes lmhAurora3 {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(40px, -30px) scale(1.1); }
}

/* Geometric variant */
.lmh-hero--geometric {
	background: linear-gradient(135deg, #0f2027 0%, #162029 50%, #1a3040 100%);
}

.lmh-hero__geometric {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.lmh-geo-svg {
	width: 100%;
	height: 100%;
}

/* Clip individual background containers so hero overflow:visible works */
.lmh-hero__shapes,
.lmh-hero__aurora,
.lmh-hero__geometric {
	overflow: hidden;
}

/* Decorative shapes */
.lmh-hero__shapes {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.lmh-shape {
	position: absolute;
	border-radius: 50%;
	opacity: .08;
}

.lmh-shape--1 {
	width: 500px;
	height: 500px;
	background: var(--lmh-primary);
	top: -150px;
	right: -100px;
	animation: lmhFloat 20s ease-in-out infinite;
}

.lmh-shape--2 {
	width: 300px;
	height: 300px;
	background: var(--lmh-cta);
	bottom: -50px;
	left: -80px;
	animation: lmhFloat 15s ease-in-out infinite reverse;
}

.lmh-shape--3 {
	width: 200px;
	height: 200px;
	background: #fff;
	top: 40%;
	left: 60%;
	animation: lmhFloat 25s ease-in-out infinite;
}

@keyframes lmhFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -40px) scale(1.05); }
	50% { transform: translate(-20px, 20px) scale(.95); }
	75% { transform: translate(15px, 30px) scale(1.02); }
}

/* Hero backdrop circle — semi-transparent contrast blob behind content */
.lmh-hero__backdrop {
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--lmh-backdrop-size, 720px);
	height: var(--lmh-backdrop-size, 720px);
	border-radius: 50%;
	pointer-events: none;
	z-index: 4;
	will-change: transform;
	background: var(--lmh-backdrop-color, rgba(0,0,0,.42));
	filter: blur(var(--lmh-backdrop-blur, 60px));
	transform: translate(-50%, calc(-52% + var(--lmh-backdrop-offset, 0px)));
	opacity: 1;
}

@media (max-width: 900px) {
	.lmh-hero__backdrop {
		width: min(var(--lmh-backdrop-size, 720px), 540px);
		height: min(var(--lmh-backdrop-size, 720px), 540px);
		filter: blur(calc(var(--lmh-backdrop-blur, 60px) * .75));
		transform: translate(-50%, calc(-48% + var(--lmh-backdrop-offset, 0px)));
	}
}

/* Hero inner layout */
.lmh-hero__inner {
	position: relative;
	z-index: 50;
	text-align: center;
}

.lmh-hero__content {
	max-width: 760px;
	margin: 0 auto 40px;
}

.lmh-hero__title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
}

.lmh-hero__title .lmh-highlight {
	color: var(--lmh-primary);
	position: relative;
}

.lmh-hero__title .lmh-highlight::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--lmh-primary);
	opacity: .3;
	border-radius: 3px;
}

.lmh-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255,255,255,.8);
	margin: 0;
	line-height: 1.6;
	font-weight: 400;
}

/* ================================================================
 * SEARCH FORM — COMPLETELY FIXED LAYOUT
 * The search form uses Listeo's [listeo_search_form] shortcode.
 * We override styles to make it look clean and modern inside the hero.
 * ================================================================ */

.lmh-hero__search {
	max-width: var(--lmh-search-max-width, 1100px);
	margin: 0 auto 36px;
	position: relative;
	z-index: 100;
}

/* Main form container — clean white card */
.lmh-hero__search .main-search-form,
.lmh-hero__search form[id*="search"] {
	background: rgba(255,255,255,.97) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--lmh-search-radius, var(--lmh-radius-lg)) !important;
	padding: var(--lmh-search-padding, 12px) !important;
	box-shadow: 0 16px 60px rgba(0,0,0,.18) !important;
	border: 1px solid rgba(255,255,255,.2) !important;
	display: flex !important;
	align-items: stretch !important;
	gap: 0 !important;
	min-height: var(--lmh-search-height, auto);
}

/* Main search input wrapper — the row of fields */
.lmh-hero__search .main-search-input {
	display: flex !important;
	align-items: stretch !important;
	width: 100% !important;
	gap: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

/* Each input item — remove all weird spacing */
.lmh-hero__search .main-search-input-item {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	min-height: auto !important;
	position: relative !important;
}

/* Add divider between items */
.lmh-hero__search .main-search-input-item + .main-search-input-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: var(--lmh-border);
}

/* Input fields inside — clean look */
.lmh-hero__search .main-search-input-item input[type="text"],
.lmh-hero__search .main-search-input-item input[type="search"],
.lmh-hero__search .main-search-input-item select,
.lmh-hero__search .main-search-input-item .chosen-container,
.lmh-hero__search .main-search-input-item .select2-container {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	font-size: 15px !important;
	color: var(--lmh-text) !important;
	padding: 12px 16px !important;
	height: auto !important;
	line-height: 1.4 !important;
	outline: none !important;
	font-family: var(--lmh-font) !important;
}

.lmh-hero__search .main-search-input-item input::placeholder {
	color: var(--lmh-text-light) !important;
	opacity: 1 !important;
}

/* Labels inside search items */
.lmh-hero__search .main-search-input-item label,
.lmh-hero__search .main-search-input-item > span:first-child {
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .06em !important;
	color: var(--lmh-text-light) !important;
	padding: 8px 16px 0 !important;
	margin: 0 !important;
	display: block !important;
	line-height: 1 !important;
}

/* Remove Listeo's default padding/margin noise */
.lmh-hero__search .main-search-input-item > div,
.lmh-hero__search .main-search-input-item > .input-with-icon {
	padding: 0 !important;
	margin: 0 !important;
}

.lmh-hero__search .main-search-input-item .input-with-icon i,
.lmh-hero__search .main-search-input-item .input-with-icon .fa {
	display: none !important; /* Hide Listeo's field icons — cleaner look */
}

/* Google Maps "locate me" icon — transparent background always */
.lmh-hero__search .main-search-input-item .input-with-icon a,
.lmh-hero__search .main-search-input-item .geolocation a,
.lmh-hero__search .main-search-input-item a[href="#"] {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

.lmh-hero__search .main-search-input-item .input-with-icon a i,
.lmh-hero__search .main-search-input-item .geolocation a i {
	display: inline-block !important; /* Re-show the map marker locate icon */
	color: var(--lmh-text-light) !important;
	background: transparent !important;
}

/* Submit button */
.lmh-hero__search .main-search-input-item:last-child,
.lmh-hero__search button[type="submit"],
.lmh-hero__search .main-search-input .button,
.lmh-hero__search input[type="submit"] {
	flex: 0 0 auto !important;
}

.lmh-hero__search button[type="submit"],
.lmh-hero__search .main-search-input .button,
.lmh-hero__search input[type="submit"] {
	background: var(--lmh-cta) !important; /* Orange = CTA */
	color: #fff !important;
	border: none !important;
	border-radius: var(--lmh-radius) !important;
	padding: 14px 28px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	font-family: var(--lmh-font) !important;
	letter-spacing: .3px !important;
	cursor: pointer !important;
	transition: var(--lmh-transition) !important;
	white-space: nowrap !important;
	min-height: 48px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
}

.lmh-hero__search button[type="submit"]:hover,
.lmh-hero__search .main-search-input .button:hover,
.lmh-hero__search input[type="submit"]:hover {
	background: var(--lmh-cta-dark) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 15px rgba(240,123,36,.3) !important;
}

/* Autocomplete/dropdown overlays */
.lmh-hero__search .autocomplete-suggestions,
.lmh-hero__search .pac-container {
	border-radius: var(--lmh-radius-sm) !important;
	border: 1px solid var(--lmh-border) !important;
	box-shadow: var(--lmh-shadow-hover) !important;
	margin-top: 4px !important;
}

/* Advanced search panel below */
.lmh-hero__search .more-search-options,
.lmh-hero__search .panel-dropdown {
	background: #fff !important;
	border-radius: var(--lmh-radius) !important;
	border: 1px solid var(--lmh-border) !important;
	box-shadow: var(--lmh-shadow-hover) !important;
}

/* AI search toggle/quick picks */
.lmh-hero__search .listeo-ai-toggle,
.lmh-hero__search .ai-search-toggle {
	color: var(--lmh-primary) !important;
	margin-left: 12px;
}

/* Extra margin for AI toggle next to search fields in combined layout */
.lmh-hero__search .main-search-input-item .listeo-ai-toggle,
.lmh-hero__search .main-search-input-item .ai-search-toggle {
	margin-left: 16px;
	padding-left: 16px;
	border-left: 1px solid var(--lmh-border);
}

.lmh-hero__search .ai-quick-picks,
.lmh-hero__search .listeo-quick-picks {
	border-radius: var(--lmh-radius-sm);
	position: relative;
	z-index: 9999;
}

/* Any dropdown/result container from AI picks */
.lmh-hero__search .ai-quick-picks *,
.lmh-hero__search .listeo-quick-picks *,
.lmh-hero__search [class*="ai-result"],
.lmh-hero__search [class*="quick-pick"] {
	z-index: 9999;
}

/* Google Maps autocomplete — match search bar background */
.lmh-hero__search .pac-container,
.lmh-hero__search .pac-container .pac-item {
	background: rgba(255,255,255,.97) !important;
}

.lmh-hero__search .pac-logo::after {
	background-color: rgba(248,250,248,1) !important;
}

/* Google Maps attribution image — transparent bg */
.lmh-hero__search img[src*="maps.gstatic"],
.lmh-hero__search img[src*="google"],
.lmh-hero__search .pac-container img {
	background: transparent !important;
}

/* Trust bar */
.lmh-hero__trust {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.lmh-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,.85);
	font-size: 14px;
	font-weight: 500;
}

.lmh-trust-item i {
	color: var(--lmh-primary);
	font-size: var(--lmh-trust-icon-size, 16px);
}

/* Wave divider */
.lmh-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 3;
	color: var(--lmh-bg);
	line-height: 0;
}

.lmh-hero__wave svg {
	width: 100%;
	height: 80px;
	display: block;
}

/* ================================================================
 * SECTION GENERIC
 * ================================================================ */
.lmh-section {
	padding: 80px 0;
}

.lmh-section:nth-child(odd) {
	background: var(--lmh-bg);
}

.lmh-section:nth-child(even) {
	background: var(--lmh-bg-alt);
}

.lmh-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.lmh-section__title {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--lmh-dark);
	margin: 0 0 12px;
	letter-spacing: -0.015em;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

/* Primary color accent underline on section titles */
.lmh-section__title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 4px;
	background: var(--lmh-primary); /* Green — editable via section_underline_color */
	border-radius: 2px;
}

.lmh-section__subtitle {
	font-size: 1.05rem;
	color: var(--lmh-text-light);
	margin: 20px 0 0;
	line-height: 1.6;
}

.lmh-section__action {
	text-align: center;
	margin-top: 40px;
}

/* ================================================================
 * USP SECTION
 * ================================================================ */
.lmh-usp-section {
	padding: 48px 0;
	background: var(--lmh-bg);
	border-bottom: 1px solid var(--lmh-border);
}

.lmh-usp-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

.lmh-usp-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	border-radius: var(--lmh-radius);
	transition: var(--lmh-transition);
	flex: 0 1 calc(25% - 24px);
	min-width: 220px;
}

.lmh-usp-item:hover {
	background: var(--lmh-bg-alt);
}

.lmh-usp-item__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--lmh-primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--lmh-transition);
	border: 2px solid transparent;
}

.lmh-usp-item:hover .lmh-usp-item__icon {
	background: var(--lmh-primary);
	border-color: var(--lmh-primary);
}

.lmh-usp-item__icon i {
	font-size: 22px;
	color: var(--lmh-primary);
	transition: var(--lmh-transition);
}

.lmh-usp-item:hover .lmh-usp-item__icon i {
	color: #fff;
}

.lmh-usp-item__text h4 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: var(--lmh-dark);
}

.lmh-usp-item__text p,
.lmh-usp-item__desc {
	margin: 0;
	font-size: 13px;
	color: var(--lmh-text-light);
	line-height: 1.5;
}

/* USP section CTA */
.lmh-usp-section .lmh-section__action {
	margin-top: 24px;
}

/* ================================================================
 * LISTINGS SECTION — Card grid
 * ================================================================ */
.lmh-listings-section {
	background: var(--lmh-bg-alt) !important;
}

/* Alternate listing sections can be white */
.lmh-listings-section:nth-of-type(even) {
	background: var(--lmh-bg) !important;
}

.lmh-listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.lmh-listing-card {
	background: #fff;
	border-radius: var(--lmh-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--lmh-shadow);
	transition: var(--lmh-transition);
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
}

.lmh-listing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--lmh-shadow-hover);
	border-color: var(--lmh-primary); /* Green border on hover */
}

.lmh-listing-card__img-wrap {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.lmh-listing-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.lmh-listing-card:hover .lmh-listing-card__img-wrap img {
	transform: scale(1.06);
}

.lmh-listing-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--lmh-bg-muted), var(--lmh-border));
	display: flex;
	align-items: center;
	justify-content: center;
}

.lmh-listing-card__placeholder i {
	font-size: 40px;
	color: var(--lmh-border);
}

.lmh-listing-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--lmh-primary); /* Green badge */
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	letter-spacing: .3px;
	text-transform: uppercase;
}

/* Review badge variant — Google Maps style */
.lmh-listing-card__badge--review {
	background: rgba(0,0,0,.7);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 12px;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.lmh-listing-card__badge--review i {
	color: #fbbc04; /* Google Maps yellow star */
	font-size: 12px;
}

.lmh-listing-card__badge--review small {
	opacity: .8;
	font-weight: 400;
	font-size: 11px;
}

.lmh-listing-card__body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lmh-listing-card__title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--lmh-dark);
	line-height: 1.3;
}

.lmh-listing-card__location {
	font-size: 13px;
	color: var(--lmh-text-light);
	margin-bottom: 14px;
}

.lmh-listing-card__location i {
	color: var(--lmh-primary); /* Green location icon */
	margin-right: 4px;
	font-size: 12px;
}

.lmh-listing-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--lmh-border);
}

.lmh-listing-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--lmh-dark);
}

.lmh-listing-card__rating i {
	color: var(--lmh-primary); /* Green stars */
	font-size: 12px;
}

.lmh-listing-card__reviews {
	color: var(--lmh-text-light);
	font-weight: 400;
}

.lmh-listing-card__price {
	font-size: 16px;
	font-weight: 800;
	color: var(--lmh-primary); /* Green price */
}

.lmh-listing-card__price small {
	font-size: 12px;
	font-weight: 500;
	color: var(--lmh-text-light);
}

/* ================================================================
 * LISTINGS CAROUSEL — Horizontal scroll with arrows + show more
 * ================================================================ */
.lmh-listings-carousel {
	position: relative;
}

/* Grid becomes horizontal scrolling row */
.lmh-listings-carousel .lmh-listings-grid {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	gap: 28px;
	padding-bottom: 4px;
	scrollbar-width: none; /* Firefox */
}

.lmh-listings-carousel .lmh-listings-grid::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

.lmh-listings-carousel .lmh-listings-grid .lmh-listing-card {
	flex: 0 0 calc((100% - 56px) / 3); /* 3 columns with 28px gaps */
	scroll-snap-align: start;
	min-width: 280px;
}

/* Carousel arrows */
.lmh-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--lmh-border);
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--lmh-text);
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--lmh-transition);
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.lmh-carousel-arrow:hover {
	background: var(--lmh-primary);
	border-color: var(--lmh-primary);
	color: #fff;
	box-shadow: 0 4px 16px rgba(79,186,58,.25);
}

.lmh-carousel-arrow:disabled {
	opacity: .3;
	pointer-events: none;
}

.lmh-carousel-arrow--prev {
	left: -22px;
}

.lmh-carousel-arrow--next {
	right: -22px;
}

/* Show more button — clean, no inline icon */
.lmh-show-more-wrap {
	text-align: center;
	margin-top: 32px;
}

.lmh-show-more-btn {
	position: relative;
}

.lmh-show-more-btn::after {
	content: '\f107'; /* fa-angle-down */
	font-family: 'FontAwesome';
	margin-left: 8px;
	transition: transform .3s ease;
	display: inline-block;
}

.lmh-show-more-wrap.lmh-expanded .lmh-show-more-btn::after {
	transform: rotate(180deg);
}
.lmh-show-more-wrap.lmh-expanded .lmh-show-more-btn::after {
	transform: rotate(180deg);
}

/* When expanded, grid wraps */
.lmh-listings-carousel.lmh-expanded .lmh-listings-grid {
	flex-wrap: wrap;
	overflow-x: visible;
	scroll-snap-type: none;
}

/* Hide arrows when expanded */
.lmh-listings-carousel.lmh-expanded .lmh-carousel-arrow {
	display: none;
}

/* ================================================================
 * REGIONS SECTION
 * ================================================================ */
.lmh-regions-section {
	background: var(--lmh-bg) !important;
}

.lmh-regions-grid {
	display: grid;
	gap: 24px;
}

/* Adaptive grid based on count */
.lmh-regions-grid[data-count="1"] { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
.lmh-regions-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.lmh-regions-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.lmh-regions-grid[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
.lmh-regions-grid[data-count="5"] { grid-template-columns: repeat(3, 1fr); }
.lmh-regions-grid[data-count="6"] { grid-template-columns: repeat(3, 1fr); }

.lmh-region-card {
	position: relative;
	border-radius: var(--lmh-radius);
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	display: block;
	transition: var(--lmh-transition);
}

.lmh-region-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lmh-shadow-hover);
}

.lmh-region-card__img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.lmh-region-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.lmh-region-card:hover .lmh-region-card__img-wrap img {
	transform: scale(1.08);
}

.lmh-region-card__gradient {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--lmh-primary-dark), var(--lmh-dark));
}

.lmh-region-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
	z-index: 1;
}

.lmh-region-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	z-index: 2;
}

.lmh-region-card__content h3 {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.lmh-region-card__count {
	font-size: 13px;
	opacity: .85;
	background: var(--lmh-primary); /* Green count badge */
	padding: 3px 10px;
	border-radius: 12px;
	font-weight: 600;
	display: inline-block;
}

/* ================================================================
 * CATEGORIES SECTION
 * ================================================================ */
.lmh-categories-section {
	background: var(--lmh-bg-alt) !important;
}

.lmh-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lmh-category-card {
	background: #fff;
	border-radius: var(--lmh-radius);
	padding: 32px 24px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--lmh-shadow);
	transition: var(--lmh-transition);
	border: 2px solid transparent;
}

.lmh-category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--lmh-shadow-hover);
	border-color: var(--lmh-primary); /* Green border on hover */
}

.lmh-category-card__icon {
	width: 68px;
	height: 68px;
	border-radius: 18px;
	background: var(--lmh-primary-light); /* Green-tinted background */
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	transition: var(--lmh-transition);
	border: 2px solid transparent;
}

.lmh-category-card:hover .lmh-category-card__icon {
	background: var(--lmh-primary); /* Green fill on hover */
	border-color: var(--lmh-primary);
}

.lmh-category-card__icon i {
	font-size: 28px;
	color: var(--lmh-primary); /* Green icon */
	transition: var(--lmh-transition);
}

.lmh-category-card:hover .lmh-category-card__icon i {
	color: #fff;
}

.lmh-category-card__icon svg {
	width: 28px;
	height: 28px;
	fill: var(--lmh-primary);
	transition: var(--lmh-transition);
}

.lmh-category-card:hover .lmh-category-card__icon svg {
	fill: #fff;
}

.lmh-category-card h4 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--lmh-dark);
}

.lmh-category-card__count {
	font-size: 13px;
	color: var(--lmh-text-light);
}

/* ================================================================
 * CTA SECTION
 * ================================================================ */
.lmh-cta-section {
	position: relative;
	padding: 90px 0;
	background: linear-gradient(135deg, var(--lmh-dark) 0%, #162029 50%, #1a3040 100%) !important;
	text-align: center;
	overflow: hidden;
}

.lmh-cta__shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.lmh-cta-shape {
	position: absolute;
	border-radius: 50%;
	opacity: .06;
}

.lmh-cta-shape--1 {
	width: 400px;
	height: 400px;
	background: var(--lmh-primary);
	top: -100px;
	right: -50px;
}

.lmh-cta-shape--2 {
	width: 250px;
	height: 250px;
	background: var(--lmh-cta);
	bottom: -60px;
	left: -40px;
}

.lmh-cta__title {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

.lmh-cta__subtitle {
	font-size: 1.05rem;
	color: rgba(255,255,255,.7);
	margin: 0 auto 32px;
	max-width: 560px;
	line-height: 1.6;
}

/* ================================================================
 * BUTTONS
 * ================================================================ */
.lmh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 700;
	border-radius: var(--lmh-btn-radius);
	text-decoration: none;
	transition: var(--lmh-transition);
	letter-spacing: .3px;
	cursor: pointer;
	font-family: var(--lmh-font);
}

.lmh-btn--outline {
	background: transparent;
	border: 2px solid var(--lmh-cta); /* Orange outline by default */
	color: var(--lmh-cta);
}

.lmh-btn--outline:hover {
	background: var(--lmh-cta);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(240,123,36,.25);
}

.lmh-btn--cta {
	background: var(--lmh-cta);
	color: #fff;
	border: 2px solid var(--lmh-cta);
}

.lmh-btn--cta:hover {
	background: var(--lmh-cta-dark);
	border-color: var(--lmh-cta-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(240,123,36,.3);
}

.lmh-btn i {
	font-size: 13px;
	transition: transform .3s ease;
}

.lmh-btn:hover i {
	transform: translateX(4px);
}

/* ================================================================
 * ANIMATIONS (Intersection Observer driven)
 * ================================================================ */
[data-lmh-animate] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s ease, transform .7s ease;
}

[data-lmh-animate].lmh-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================================================================
 * RESPONSIVE
 * ================================================================ */
@media (max-width: 1024px) {
	.lmh-listings-carousel .lmh-listings-grid .lmh-listing-card {
		flex: 0 0 calc((100% - 28px) / 2);
	}

	.lmh-listings-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lmh-regions-grid[data-count="5"],
	.lmh-regions-grid[data-count="6"] {
		grid-template-columns: repeat(2, 1fr);
	}

	.lmh-categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lmh-usp-grid {
		justify-content: center;
	}

	.lmh-usp-item {
		flex: 0 1 calc(50% - 16px);
	}

	/* Search: stack vertically on tablet */
	.lmh-hero__search .main-search-input {
		flex-wrap: wrap !important;
	}

	.lmh-hero__search .main-search-input-item {
		flex: 1 1 calc(50% - 6px) !important;
	}

	.lmh-hero__search .main-search-input-item + .main-search-input-item::before {
		display: none;
	}

	body.lmh-header-floating #wrapper > header {
		width: calc(100% - 32px);
		top: 10px;
	}
}

@media (max-width: 768px) {
	.lmh-hero {
		min-height: 500px;
		padding: 100px 0 80px;
	}

	.lmh-hero__title {
		font-size: 2.4rem;
		line-height: 1.2;
	}

	.lmh-hero__subtitle {
		font-size: 1.2rem;
		line-height: 1.5;
	}

	.lmh-section__title {
		font-size: 1.9rem;
		line-height: 1.25;
	}

	.lmh-section__subtitle {
		font-size: 1rem;
		line-height: 1.5;
	}

	.lmh-cta__title {
		font-size: 1.8rem;
	}

	.lmh-hero__trust {
		gap: 16px;
	}

	.lmh-trust-item {
		font-size: 12px;
	}

	.lmh-hero__wave svg {
		height: 50px;
	}

	.lmh-section {
		padding: 56px 0;
	}

	.lmh-section__header {
		margin-bottom: 32px;
	}

	.lmh-listings-grid,
	.lmh-categories-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lmh-listings-carousel .lmh-listings-grid .lmh-listing-card {
		flex: 0 0 100%;
		min-width: 0;
		scroll-snap-align: center;
	}

	.lmh-listings-carousel .lmh-listings-grid {
		gap: 16px;
		scroll-padding-inline: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.lmh-carousel-arrow--prev { left: -12px; }
	.lmh-carousel-arrow--next { right: -12px; }
	.lmh-carousel-arrow { width: 36px; height: 36px; font-size: 12px; }

	.lmh-regions-grid,
	.lmh-regions-grid[data-count="2"],
	.lmh-regions-grid[data-count="3"],
	.lmh-regions-grid[data-count="4"],
	.lmh-regions-grid[data-count="5"],
	.lmh-regions-grid[data-count="6"] {
		grid-template-columns: 1fr;
	}

	.lmh-usp-grid {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.lmh-usp-item {
		flex: 0 1 100%;
		min-width: 0;
		width: 100%;
	}

	.lmh-usp-section {
		padding: 28px 0;
	}

	.lmh-usp-item {
		padding: 14px;
	}

	.lmh-listing-card__img-wrap {
		height: 180px;
	}

	.lmh-region-card__img-wrap {
		height: 180px;
	}

	.lmh-category-card {
		padding: 24px 20px;
	}

	.lmh-cta-section {
		padding: 60px 0;
	}

	/* Search: single column on mobile */
	.lmh-hero__search .main-search-form,
	.lmh-hero__search form[id*="search"] {
		border-radius: var(--lmh-radius) !important;
		padding: 8px !important;
		flex-direction: column !important;
	}

	.lmh-hero__search .main-search-input {
		flex-direction: column !important;
	}

	.lmh-hero__search .main-search-input-item {
		flex: 1 1 100% !important;
		border-bottom: 1px solid var(--lmh-border) !important;
	}

	.lmh-hero__search .main-search-input-item:last-child {
		border-bottom: none !important;
	}

	.lmh-hero__search button[type="submit"],
	.lmh-hero__search .main-search-input .button,
	.lmh-hero__search input[type="submit"] {
		width: 100% !important;
		margin-top: 4px !important;
	}

	.lmh-container {
		padding: 0 16px;
	}

	body.lmh-header-transparent .lmh-hero,
	body.lmh-header-floating .lmh-hero,
	body.lmh-header-curved .lmh-hero {
		padding-top: 130px;
	}

	body.lmh-header-floating #wrapper > header {
		width: calc(100% - 20px);
		top: 8px;
	}
}

@media (max-width: 480px) {
	.lmh-hero {
		padding: 90px 0 70px;
	}

	.lmh-hero__title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.lmh-hero__subtitle {
		font-size: 1.1rem;
		line-height: 1.5;
	}

	.lmh-section__title {
		font-size: 1.6rem;
	}

	.lmh-section__subtitle {
		font-size: .95rem;
	}

	.lmh-cta__title {
		font-size: 1.5rem;
	}

	.lmh-hero__trust {
		flex-direction: column;
		gap: 10px;
	}

	.lmh-usp-item__icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.lmh-usp-item__icon i {
		font-size: 18px;
	}

	.lmh-btn {
		padding: 12px 24px;
		font-size: 14px;
	}
}

/* ================================================================
 * CURVED HEADER STYLE
 * ================================================================ */
body.lmh-header-curved #wrapper > header {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(26,26,46,.7) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	box-shadow: none !important;
	border-bottom: none !important;
}

body.lmh-header-curved #wrapper > header::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: -2%;
	right: -2%;
	width: 104%;
	height: 20px;
	background: inherit;
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	z-index: 99;
	pointer-events: none;
}

body.lmh-header-curved #wrapper > header .logo a,
body.lmh-header-curved #wrapper > header nav a,
body.lmh-header-curved #wrapper > header .menu-item a {
	color: #fff !important;
}

body.lmh-header-curved .lmh-hero {
	padding-top: 160px;
}

/* ================================================================
 * SCROLLED HEADER — REMOVED
 * Sticky header functionality has been fully removed from this plugin.
 * Use Listeo's built-in Customizer → Header → Sticky Header option instead.
 * ================================================================ */

/* ================================================================
 * AANMELDEN BUTTON — Stay white on dark headers at medium widths
 * ================================================================ */
body.lmh-header-transparent #wrapper > header .right-side a,
body.lmh-header-transparent #wrapper > header .header-widget a,
body.lmh-header-floating #wrapper > header .right-side a,
body.lmh-header-floating #wrapper > header .header-widget a,
body.lmh-header-curved #wrapper > header .right-side a,
body.lmh-header-curved #wrapper > header .header-widget a,
body.lmh-header-minimal #wrapper > header .right-side a,
body.lmh-header-minimal #wrapper > header .header-widget a {
	color: #fff !important;
}

/* Also at half-desktop widths */
@media (max-width: 1200px) {
	body.lmh-header-transparent #wrapper > header .right-side a,
	body.lmh-header-floating #wrapper > header .right-side a,
	body.lmh-header-curved #wrapper > header .right-side a,
	body.lmh-header-minimal #wrapper > header .right-side a {
		color: #fff !important;
		background: rgba(255,255,255,.15) !important;
		padding: 8px 18px !important;
		border-radius: var(--lmh-btn-radius) !important;
		border: 1px solid rgba(255,255,255,.3) !important;
		white-space: nowrap !important;
	}

	body.lmh-header-transparent #wrapper > header .right-side a:hover,
	body.lmh-header-floating #wrapper > header .right-side a:hover,
	body.lmh-header-curved #wrapper > header .right-side a:hover,
	body.lmh-header-minimal #wrapper > header .right-side a:hover {
		background: rgba(255,255,255,.25) !important;
	}
}

/* ================================================================
 * SPLIT SEARCH LAYOUT — AI picks below search bar
 * ================================================================ */
body.lmh-search-split .lmh-hero__search {
	position: relative;
}

body.lmh-search-split .lmh-hero__search .ai-quick-picks,
body.lmh-search-split .lmh-hero__search .listeo-quick-picks,
body.lmh-search-split .lmh-hero__search [class*="ai-pick"],
body.lmh-search-split .lmh-hero__search .ai-search-toggle + div,
body.lmh-search-split .lmh-hero__search .listeo-ai-toggle + div {
	position: relative;
	margin-top: 16px;
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: var(--lmh-radius);
	padding: 14px 24px;
	border: 1px solid rgba(255,255,255,.15);
}

/* ================================================================
 * CATEGORY CARD DESIGN VARIANTS
 * ================================================================ */

/* ── Compact: horizontal icon + text, smaller footprint ── */
.lmh-cat-style--compact {
	grid-template-columns: repeat(2, 1fr);
}

.lmh-cat-style--compact .lmh-category-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	text-align: left;
}

.lmh-cat-style--compact .lmh-category-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	margin: 0;
	flex-shrink: 0;
}

.lmh-cat-style--compact .lmh-category-card__icon i {
	font-size: 20px;
}

.lmh-cat-style--compact .lmh-category-card h4 {
	margin: 0;
	font-size: 15px;
}

.lmh-cat-style--compact .lmh-category-card__count {
	font-size: 12px;
}

/* ── Glass: frosted glass cards with gradient backgrounds ── */
.lmh-cat-style--glass .lmh-category-card {
	background: linear-gradient(135deg, rgba(79,186,58,.06) 0%, rgba(240,123,36,.04) 100%);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(79,186,58,.12);
	box-shadow: 0 8px 32px rgba(0,0,0,.04);
	position: relative;
	overflow: hidden;
}

.lmh-cat-style--glass .lmh-category-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 30%, rgba(79,186,58,.08) 0%, transparent 50%);
	pointer-events: none;
	transition: opacity .4s ease;
	opacity: 0;
}

.lmh-cat-style--glass .lmh-category-card:hover::before {
	opacity: 1;
}

.lmh-cat-style--glass .lmh-category-card:hover {
	border-color: rgba(79,186,58,.3);
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(79,186,58,.12);
}

.lmh-cat-style--glass .lmh-category-card__icon {
	background: rgba(79,186,58,.1);
	border: 1px solid rgba(79,186,58,.15);
	border-radius: 50%;
	width: 72px;
	height: 72px;
}

.lmh-cat-style--glass .lmh-category-card:hover .lmh-category-card__icon {
	background: var(--lmh-primary);
	border-color: var(--lmh-primary);
	box-shadow: 0 6px 20px rgba(79,186,58,.3);
}

.lmh-cat-style--glass .lmh-category-card h4 {
	font-size: 17px;
	letter-spacing: -.01em;
}

/* ── Minimal: circle icon, clean floating label, lots of whitespace ── */
.lmh-cat-style--minimal {
	gap: 40px 32px;
}

.lmh-cat-style--minimal .lmh-category-card {
	background: transparent;
	box-shadow: none;
	border: none;
	padding: 24px 16px;
}

.lmh-cat-style--minimal .lmh-category-card:hover {
	background: transparent;
	box-shadow: none;
	border: none;
	transform: none;
}

.lmh-cat-style--minimal .lmh-category-card__icon {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 2px solid var(--lmh-border);
	background: var(--lmh-bg);
	margin: 0 auto 20px;
	transition: all .4s cubic-bezier(.4,0,.2,1);
}

.lmh-cat-style--minimal .lmh-category-card:hover .lmh-category-card__icon {
	background: var(--lmh-primary);
	border-color: var(--lmh-primary);
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(79,186,58,.25);
}

.lmh-cat-style--minimal .lmh-category-card__icon i {
	font-size: 32px;
}

.lmh-cat-style--minimal .lmh-category-card h4 {
	font-size: 15px;
	font-weight: 600;
}

.lmh-cat-style--minimal .lmh-category-card__count {
	font-size: 12px;
	opacity: .6;
}

/* Category variants responsive */
@media (max-width: 768px) {
	.lmh-cat-style--compact {
		grid-template-columns: 1fr;
	}

	.lmh-cat-style--minimal {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 16px;
	}

	.lmh-cat-style--minimal .lmh-category-card__icon {
		width: 68px;
		height: 68px;
	}

	.lmh-cat-style--minimal .lmh-category-card__icon i {
		font-size: 26px;
	}
}

/* ================================================================
 * SEPARATE AI SEARCH BAR — matches regular search bar design
 * ================================================================ */
.lmh-hero__ai-search {
	margin: 0 auto 30px;
	position: relative;
	z-index: 99;
}

.lmh-ai-search__divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}

.lmh-ai-search__divider-line {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,.25);
}

.lmh-ai-search__divider-text {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .06em;
	color: rgba(255,255,255,.55);
	white-space: nowrap;
}

/* White card wrapper — identical to regular search bar */
.lmh-ai-search__bar {
	position: relative;
	background: rgba(255,255,255,.97) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: var(--lmh-search-radius, var(--lmh-radius-lg));
	border: 1px solid rgba(255,255,255,.2) !important;
	box-shadow: 0 16px 60px rgba(0,0,0,.18) !important;
	padding: var(--lmh-search-padding, 12px);
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: var(--lmh-search-height, auto);
	overflow: visible;
}

/* Style the AI search form elements inside our white card */
.lmh-ai-search__bar form,
.lmh-ai-search__bar > div {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	gap: 12px !important;
	flex: 1 1 auto !important;
}

.lmh-ai-search__bar .listeo-ai-search,
.lmh-ai-search__bar .listeo-ai-search form,
.lmh-ai-search__bar .listeo-ai-search > div,
.lmh-ai-search__bar .listeo-ai-search-wrapper {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	gap: 12px !important;
	flex: 1 1 auto !important;
}

.lmh-ai-search__bar input[type="text"],
.lmh-ai-search__bar input[type="search"],
.lmh-ai-search__bar .listeo-ai-search-input,
.lmh-ai-search__bar textarea {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--lmh-text) !important;
	font-size: 15px !important;
	padding: 12px 16px !important;
	flex: 1 1 auto !important;
	width: 100% !important;
	outline: none !important;
	font-family: var(--lmh-font) !important;
	min-width: 0;
}

.lmh-ai-search__bar input::placeholder,
.lmh-ai-search__bar textarea::placeholder,
.lmh-ai-search__bar .listeo-ai-search-input::placeholder {
	color: var(--lmh-text-light) !important;
	opacity: 1 !important;
}

.lmh-ai-search__bar button,
.lmh-ai-search__bar input[type="submit"],
.lmh-ai-search__bar .button {
	background: var(--lmh-primary) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--lmh-radius) !important;
	padding: 14px 28px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	font-family: var(--lmh-font) !important;
	letter-spacing: .3px !important;
	cursor: pointer !important;
	transition: var(--lmh-transition) !important;
	white-space: nowrap !important;
	min-height: 48px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	flex-shrink: 0;
}

.lmh-ai-search__bar button:hover,
.lmh-ai-search__bar input[type="submit"]:hover,
.lmh-ai-search__bar .button:hover {
	background: var(--lmh-primary-dark) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 15px rgba(79,186,58,.3) !important;
}

/* Move AI submit/toggle button to the RIGHT inside the bar */
.lmh-ai-search__bar form,
.lmh-ai-search__bar .listeo-ai-search,
.lmh-ai-search__bar .listeo-ai-search-wrapper {
	flex-direction: row !important;
}

/* Input always comes first */
.lmh-ai-search__bar input[type="text"],
.lmh-ai-search__bar input[type="search"],
.lmh-ai-search__bar .listeo-ai-search-input,
.lmh-ai-search__bar textarea {
	order: 1 !important;
}

/* Toggle & button go to the right */
.lmh-ai-search__bar .ai-search-toggle,
.lmh-ai-search__bar .listeo-ai-toggle {
	order: 2 !important;
}

.lmh-ai-search__bar button,
.lmh-ai-search__bar input[type="submit"],
.lmh-ai-search__bar .button {
	order: 3 !important;
}

/* AI toggle icon styling inside the bar */
.lmh-ai-search__bar .ai-search-toggle,
.lmh-ai-search__bar .listeo-ai-toggle {
	color: var(--lmh-primary) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 14px !important;
	height: 100% !important;
	min-width: 56px;
	border-left: 1px solid var(--lmh-border);
	border-right: none;
	border-radius: var(--lmh-radius-sm);
	background: linear-gradient(135deg, rgba(79,186,58,.12), rgba(79,186,58,.08));
	gap: 8px;
	margin: 0 !important;
	position: relative !important;
	left: auto !important;
	box-shadow: none !important;
	flex-shrink: 0;
}

.lmh-ai-search__bar .ai-search-toggle i,
.lmh-ai-search__bar .ai-search-toggle svg,
.lmh-ai-search__bar .listeo-ai-toggle i,
.lmh-ai-search__bar .listeo-ai-toggle svg {
	margin: 0 !important;
	font-size: 14px;
	width: 16px;
	height: 16px;
}

/* Quick picks results — flow below the bar */
.lmh-ai-search__bar .ai-quick-picks,
.lmh-ai-search__bar .listeo-quick-picks {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 8px;
	border-radius: var(--lmh-radius-sm);
	z-index: 9999;
	background: #fff;
	box-shadow: var(--lmh-shadow-hover);
	border: 1px solid var(--lmh-border);
}

@media (max-width: 768px) {
	.lmh-hero__ai-search {
		margin: 0 auto 20px;
	}

	.lmh-ai-search__bar {
		flex-direction: column !important;
		padding: 8px !important;
		border-radius: var(--lmh-radius) !important;
	}

	.lmh-ai-search__bar form,
	.lmh-ai-search__bar > div {
		flex-direction: column !important;
	}

	.lmh-ai-search__bar button,
	.lmh-ai-search__bar input[type="submit"],
	.lmh-ai-search__bar .button {
		width: 100% !important;
		margin-top: 4px !important;
	}
}

/* ================================================================
 * UTILITY
 * ================================================================ */
#lmh-page {
	scroll-behavior: smooth;
}

/* ── "Already registered" popup for logged-in users ── */
.lmh-popup-message {
	background: #fff;
	border-radius: var(--lmh-radius, 16px);
	padding: 48px 40px 40px;
	text-align: center;
	max-width: 420px;
	margin: 40px auto;
	position: relative;
}

.lmh-popup-message__icon {
	margin-bottom: 16px;
}

.lmh-popup-message__icon i {
	font-size: 48px;
	color: #4fba3a;
}

.lmh-popup-message h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 10px;
}

.lmh-popup-message p {
	font-size: 15px;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

/* ================================================================
 * KILL STICKY HEADER ON MOBILE — Modern Homepage only
 * Listeo's cloned sticky header should not appear on this page on mobile.
 * ================================================================ */
@media (max-width: 1024px) {
	body.lmh-modern-homepage #header.cloned,
	body.lmh-modern-homepage #header.cloned.sticky,
	body.lmh-modern-homepage #header-container.cloned,
	body.lmh-modern-homepage #header-container.cloned.sticky-header,
	body.lmh-modern-homepage .header-clone {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
}
