﻿/* LocalTown Hub â€” public (full-width SaaS front-end) */

:root {
	--lth-primary: #1a5f4a;
	--lth-primary-deep: #0f3d31;
	--lth-accent: #e8a838;
	--lth-ink: #1c1f1e;
	--lth-muted: #5c6a64;
	--lth-line: #d5ddd8;
	--lth-paper: #f4f7f5;
	--lth-white: #ffffff;
	--lth-danger: #b42318;
	--lth-radius: 12px;
	--lth-shadow: 0 10px 30px rgba(15, 61, 49, 0.08);
	--lth-font: "Source Sans 3", "Segoe UI", sans-serif;
	--lth-display: "Fraunces", Georgia, serif;
	--lth-max: 1180px;
}

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

html { scroll-behavior: smooth; }

body.lth-body {
	margin: 0;
	font-family: var(--lth-font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--lth-ink);
	background:
		radial-gradient(1200px 500px at 10% -10%, rgba(232, 168, 56, 0.18), transparent 55%),
		radial-gradient(900px 420px at 100% 0%, rgba(26, 95, 74, 0.12), transparent 50%),
		linear-gradient(180deg, #eef3f0 0%, var(--lth-paper) 28%, #e9efeb 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

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

table { max-width: 100%; }

body.lth-body a {
	color: var(--lth-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
body.lth-body a:hover,
body.lth-body a:focus,
body.lth-body a:active {
	color: var(--lth-primary-deep);
}

/* Kill theme / global-style button & link accents (pink/red) inside Hub. */
body.lth-body button,
body.lth-body .button,
body.lth-body input[type="submit"],
body.lth-body input[type="button"],
body.lth-body .wp-block-button__link {
	background-color: var(--lth-primary);
	background-image: none;
	border-color: transparent;
	color: #fff;
	box-shadow: none;
	text-decoration: none;
}
body.lth-body button:hover,
body.lth-body button:focus,
body.lth-body button:active,
body.lth-body .button:hover,
body.lth-body .button:focus,
body.lth-body input[type="submit"]:hover,
body.lth-body input[type="button"]:hover,
body.lth-body .wp-block-button__link:hover {
	background-color: var(--lth-primary-deep);
	background-image: none;
	border-color: transparent;
	color: #fff;
	box-shadow: none;
}

.screen-reader-text,
.lth-skip {
	position: absolute;
	left: -9999px;
}
.lth-skip:focus {
	left: 12px;
	top: 12px;
	z-index: 100;
	background: #fff;
	padding: 8px 12px;
}

.lth-shell {
	width: 100%;
	max-width: var(--lth-max);
	margin: 0 auto;
	padding-left: clamp(16px, 3.5vw, 32px);
	padding-right: clamp(16px, 3.5vw, 32px);
}

/* Header */
.lth-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(10px);
	background: rgba(244, 247, 245, 0.92);
	border-bottom: 1px solid var(--lth-line);
}

.lth-header-inner {
	display: grid;
	grid-template-columns: auto minmax(200px, 1fr) auto;
	align-items: center;
	column-gap: clamp(20px, 3vw, 40px);
	row-gap: 14px;
	padding-top: clamp(14px, 2vw, 20px);
	padding-bottom: clamp(14px, 2vw, 20px);
	min-height: 72px;
}

.lth-header-inner--no-search {
	grid-template-columns: auto auto;
	justify-content: space-between;
}

.lth-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
	flex-shrink: 0;
}

.lth-brand-mark {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 11px;
	overflow: hidden;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 16px rgba(15, 61, 49, 0.22);
	transition: transform .25s ease;
}
.lth-brand:hover .lth-brand-mark { transform: translateY(-1px) rotate(-3deg); }
.lth-brand-svg { display: block; width: 40px; height: 40px; }

.lth-brand-text { min-width: 0; }

.lth-brand-name {
	display: block;
	font-family: var(--lth-display);
	font-weight: 700;
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.lth-brand-sub {
	display: block;
	font-size: 0.72rem;
	color: var(--lth-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 12rem;
}

.lth-search {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 520px;
	justify-self: center;
	border: 1px solid var(--lth-line);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 61, 49, 0.04);
	transition: box-shadow .2s ease, border-color .2s ease;
}
.lth-search:focus-within {
	border-color: rgba(26, 95, 74, 0.45);
	box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.12);
}
.lth-search-icon {
	display: grid;
	place-items: center;
	padding-left: 14px;
	color: var(--lth-muted);
	flex-shrink: 0;
}
.lth-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 12px 14px;
	font: inherit;
	outline: none;
	background: transparent;
}

.lth-search button {
	border: 0;
	background: var(--lth-primary) !important;
	color: #fff !important;
	padding: 12px 20px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.lth-search button:hover,
.lth-search button:focus {
	background: var(--lth-primary-deep) !important;
	color: #fff !important;
}

.lth-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 12px !important;
	border: 1px solid var(--lth-line) !important;
	background: #fff !important;
	color: var(--lth-ink) !important;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	justify-self: end;
}
.lth-nav-toggle-bars,
.lth-nav-toggle-bars::before,
.lth-nav-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	position: relative;
	transition: transform .2s ease, opacity .2s ease;
}
.lth-nav-toggle-bars::before,
.lth-nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}
.lth-nav-toggle-bars::before { top: -6px; }
.lth-nav-toggle-bars::after { top: 6px; }
.lth-nav-open .lth-nav-toggle-bars { background: transparent; }
.lth-nav-open .lth-nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.lth-nav-open .lth-nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.lth-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px 18px;
	justify-self: end;
}

.lth-nav > a:not(.lth-btn) {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--lth-ink);
	text-decoration: none;
	font-weight: 600;
	padding: 6px 2px;
	white-space: nowrap;
	transition: color .15s ease, transform .15s ease;
}
.lth-nav > a:not(.lth-btn) .lth-icon {
	opacity: 0.7;
	transition: opacity .15s ease, transform .2s ease;
}
.lth-nav > a:not(.lth-btn):hover .lth-icon,
.lth-nav > a.is-active .lth-icon {
	opacity: 1;
	transform: translateY(-1px);
}
.lth-nav > a.lth-btn {
	gap: 8px;
}

.lth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 999px;
	padding: 10px 18px;
	font: inherit;
	font-weight: 600;
	text-decoration: none !important;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
	background-image: none !important;
	box-shadow: none !important;
}

.lth-btn:hover,
.lth-btn:focus,
.lth-btn:active,
.lth-btn:focus-visible {
	transform: translateY(-1px);
	outline: none;
	background-image: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

body.lth-body .lth-btn-primary,
body.lth-body a.lth-btn-primary,
body.lth-body button.lth-btn-primary {
	background-color: var(--lth-primary) !important;
	border-color: var(--lth-primary) !important;
	color: #fff !important;
}
body.lth-body .lth-btn-primary:hover,
body.lth-body .lth-btn-primary:focus,
body.lth-body .lth-btn-primary:active,
body.lth-body a.lth-btn-primary:hover,
body.lth-body a.lth-btn-primary:focus,
body.lth-body button.lth-btn-primary:hover,
body.lth-body button.lth-btn-primary:focus {
	background-color: var(--lth-primary-deep) !important;
	border-color: var(--lth-primary-deep) !important;
	color: #fff !important;
}

body.lth-body .lth-btn-accent,
body.lth-body a.lth-btn-accent,
body.lth-body button.lth-btn-accent {
	background-color: var(--lth-accent) !important;
	border-color: var(--lth-accent) !important;
	color: #1c1f1e !important;
}
body.lth-body .lth-btn-accent:hover,
body.lth-body .lth-btn-accent:focus,
body.lth-body .lth-btn-accent:active,
body.lth-body a.lth-btn-accent:hover,
body.lth-body a.lth-btn-accent:focus {
	background-color: #d49528 !important;
	border-color: #d49528 !important;
	color: #1c1f1e !important;
}

body.lth-body .lth-btn-ghost,
body.lth-body a.lth-btn-ghost,
body.lth-body button.lth-btn-ghost {
	background-color: transparent !important;
	border-color: var(--lth-line) !important;
	color: var(--lth-ink) !important;
}
body.lth-body .lth-btn-ghost:hover,
body.lth-body .lth-btn-ghost:focus,
body.lth-body a.lth-btn-ghost:hover {
	background-color: rgba(26, 95, 74, 0.08) !important;
	border-color: var(--lth-primary) !important;
	color: var(--lth-primary) !important;
}

body.lth-body .lth-btn-ghost-light,
body.lth-body a.lth-btn-ghost-light {
	background-color: transparent !important;
	border-color: rgba(255,255,255,0.55) !important;
	color: #fff !important;
}
body.lth-body .lth-btn-ghost-light:hover,
body.lth-body .lth-btn-ghost-light:focus,
body.lth-body a.lth-btn-ghost-light:hover {
	background-color: rgba(255,255,255,0.12) !important;
	border-color: #fff !important;
	color: #fff !important;
}

/* Hero */
.lth-hero {
	padding: 48px 0 28px;
	position: relative;
	overflow: hidden;
}

.lth-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(26,95,74,0.92), rgba(15,61,49,0.75)),
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}

.lth-hero .lth-shell { position: relative; z-index: 1; color: #fff; }

.lth-hero-kicker {
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	opacity: 0.85;
}

.lth-hero-title {
	margin: 0;
	font-family: var(--lth-display);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
}

.lth-hero-lead {
	margin: 12px 0 0;
	max-width: 36rem;
	font-size: 1.1rem;
	opacity: 0.92;
}

/* Page heads */
.lth-admin-preview-banner {
	background: #1a5f4a;
	color: #fff;
	padding: 10px 14px;
	border-radius: 10px;
	margin-bottom: 14px;
	font-size: 0.95rem;
}
.lth-admin-preview-banner a { color: #f0c56a; font-weight: 700; }
.lth-page-head h1 {
	margin: 8px 0 0;
	font-family: var(--lth-display);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	letter-spacing: -0.02em;
}
.lth-page-lead { color: var(--lth-muted); margin: 8px 0 0; max-width: 40rem; }
.lth-crumbs { font-size: 0.9rem; color: var(--lth-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.lth-crumbs a { color: inherit; }

/* Home layout */
.lth-home-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	padding-bottom: 48px;
	padding-top: 8px;
}

.lth-section { margin: 28px 0; }
.lth-section-head { margin-bottom: 14px; }
.lth-section-head h2 {
	margin: 0;
	font-family: var(--lth-display);
	font-size: 1.45rem;
	letter-spacing: -0.02em;
}
.lth-section-head p { margin: 4px 0 0; color: var(--lth-muted); }

/* Craigslist-style category columns */
.lth-cat-columns {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 18px 24px;
	background: rgba(255,255,255,0.72);
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	padding: 22px;
	box-shadow: var(--lth-shadow);
}

.lth-cat-block h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-family: var(--lth-display);
	border-bottom: 2px solid var(--lth-accent);
	padding-bottom: 6px;
	display: inline-block;
}

.lth-cat-block h3 a { color: inherit; text-decoration: none; }
.lth-cat-block ul { list-style: none; margin: 0; padding: 0; }
.lth-cat-block li { margin: 4px 0; }
.lth-cat-block a {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	color: var(--lth-ink);
	text-decoration: none;
	padding: 3px 0;
	border-radius: 4px;
}
.lth-cat-block a:hover { color: var(--lth-primary); background: rgba(26,95,74,0.06); padding-left: 4px; padding-right: 4px; }
.lth-count { color: var(--lth-muted); font-size: 0.85em; }

/* Events rail */
.lth-event-rail {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}

.lth-event-card {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lth-event-card:hover { transform: translateY(-3px); box-shadow: var(--lth-shadow); }
.lth-event-card a { display: block; padding: 14px; text-decoration: none; color: inherit; }
.lth-event-card time {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lth-primary);
	background: rgba(26,95,74,0.1);
	padding: 3px 8px;
	border-radius: 999px;
}
.lth-event-card h3 { margin: 10px 0 4px; font-size: 1rem; font-family: var(--lth-display); }
.lth-event-card p { margin: 0; color: var(--lth-muted); font-size: 0.9rem; }

/* Vendor cards / grids */
.lth-vendor-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.lth-vendor-card {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lth-vendor-card:hover { transform: translateY(-3px); box-shadow: var(--lth-shadow); }
.lth-vendor-card > a { display: block; color: inherit; text-decoration: none; }

.lth-vendor-card-media {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: #dfe7e2;
	position: relative;
}

.lth-pin-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--lth-accent);
	color: #1c1f1e;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 8px;
	border-radius: 999px;
}

.lth-vendor-card-body { padding: 12px 14px 16px; }
.lth-vendor-card-body h3 { margin: 0 0 6px; font-size: 1.05rem; font-family: var(--lth-display); }
.lth-vendor-card-body p { margin: 8px 0 0; color: var(--lth-muted); font-size: 0.92rem; }

/* Stars */
.lth-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--lth-accent); font-size: 0.95rem; }
.lth-star.is-empty { color: #c5cec8; }
.lth-stars-count { margin-left: 6px; color: var(--lth-muted); font-size: 0.85rem; }

/* Aside cards */
.lth-home-aside,
.lth-vendor-aside { display: flex; flex-direction: column; gap: 14px; }

.lth-aside-card {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	padding: 16px;
	box-shadow: var(--lth-shadow);
}
.lth-aside-card h3 { margin: 0 0 8px; font-family: var(--lth-display); font-size: 1.1rem; }
.lth-aside-card p { margin: 0 0 12px; color: var(--lth-muted); font-size: 0.95rem; }
.lth-aside-muted { background: rgba(26,95,74,0.06); box-shadow: none; }

/* Category chips + list */
.lth-subcat-chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0 0 20px;
}
.lth-subcat-chips a {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--lth-line);
	text-decoration: none;
	color: var(--lth-ink);
	font-size: 0.92rem;
}
.lth-subcat-chips a:hover { border-color: var(--lth-primary); color: var(--lth-primary); }

.lth-vendor-list { display: flex; flex-direction: column; gap: 2px; background: #fff; border: 1px solid var(--lth-line); border-radius: var(--lth-radius); overflow: hidden; }
.lth-list-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--lth-line);
}
.lth-list-row:last-child { border-bottom: 0; }
.lth-list-row:hover { background: rgba(26,95,74,0.05); }
.lth-list-title { font-weight: 600; }
.lth-list-meta { display: flex; gap: 12px; align-items: center; color: var(--lth-muted); font-size: 0.9rem; flex-wrap: wrap; }

/* Vendor page */
.lth-vendor-head-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 20px;
	align-items: end;
}
.lth-vendor-cover {
	min-height: 220px;
	border-radius: var(--lth-radius);
	background-size: cover;
	background-position: center;
	background-color: #dfe7e2;
	box-shadow: var(--lth-shadow);
}
.lth-vendor-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 28px;
	padding: 28px 20px 56px;
	align-items: start;
}

/* Vendor storefront — structured */
.lth-page-vendor .lth-main {
	background:
		radial-gradient(900px 320px at 10% 0%, rgba(26, 95, 74, 0.06), transparent 60%),
		radial-gradient(700px 280px at 90% 8%, rgba(232, 168, 56, 0.08), transparent 55%),
		#f7f9f8;
}
.lth-vendor-hero {
	position: relative;
	min-height: clamp(280px, 42vh, 420px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.lth-vendor-hero-media {
	position: absolute;
	inset: 0;
	background: #1a3d32 center / cover no-repeat;
	transform: scale(1.02);
}
.lth-vendor-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(12, 28, 24, 0.88) 0%, rgba(12, 28, 24, 0.55) 48%, rgba(12, 28, 24, 0.28) 100%),
		linear-gradient(0deg, rgba(12, 28, 24, 0.55), transparent 45%);
}
.lth-vendor-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 2.5rem;
	padding-bottom: 2rem;
}
.lth-crumbs-on-dark {
	color: rgba(255, 255, 255, 0.72);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
body.lth-body .lth-crumbs-on-dark a,
body.lth-body .lth-crumbs-on-dark a:hover,
body.lth-body .lth-crumbs-on-dark a:focus {
	color: #fff !important;
	text-decoration: none;
	opacity: 0.92;
}
body.lth-body .lth-crumbs-on-dark a:hover {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lth-crumbs-on-dark span { color: rgba(255, 255, 255, 0.7); }

.lth-vendor-hero-copy { max-width: 40rem; }

.lth-vendor-cats {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
	padding: 0;
}
body.lth-body .lth-vendor-cats a,
body.lth-body .lth-vendor-cats a:hover,
body.lth-body .lth-vendor-cats a:focus {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18) !important;
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
body.lth-body .lth-vendor-cats a:hover {
	background: rgba(255, 255, 255, 0.28) !important;
	border-color: #fff;
}
.lth-vendor-hero h1 {
	margin: 0 0 12px;
	font-family: var(--lth-display);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.lth-vendor-hero-meta { display: grid; gap: 8px; margin-bottom: 1.1rem; }
.lth-vendor-hero .lth-star { color: #f0c14b; }
.lth-vendor-hero .lth-star.is-empty { color: rgba(255, 255, 255, 0.35); }
.lth-vendor-hero .lth-stars-count { color: rgba(255, 255, 255, 0.75); }
.lth-vendor-loc {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.88);
}
.lth-vendor-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.lth-btn-ghost-light {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}
.lth-btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.lth-vendor-jump {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lth-line);
}
.lth-vendor-jump-inner {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}
.lth-vendor-jump a {
	flex: 0 0 auto;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	color: var(--lth-muted);
	font-weight: 600;
	font-size: 0.92rem;
}
.lth-vendor-jump a:hover {
	color: var(--lth-primary);
	background: rgba(26, 95, 74, 0.08);
}

.lth-vendor-panel {
	background: #fff;
	border: 1px solid rgba(26, 95, 74, 0.1);
	border-radius: 16px;
	padding: 1.35rem 1.4rem 1.5rem;
	margin-bottom: 1.15rem;
	box-shadow: 0 8px 24px rgba(20, 40, 32, 0.04);
}
.lth-vendor-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(26, 95, 74, 0.08);
}
.lth-vendor-panel-head h2 {
	margin: 0 0 4px;
	font-family: var(--lth-display);
	font-size: 1.35rem;
}
.lth-vendor-panel-head p {
	margin: 0;
	color: var(--lth-muted);
	font-size: 0.92rem;
}
.lth-vendor-count {
	flex-shrink: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(26, 95, 74, 0.08);
	color: var(--lth-primary);
	font-size: 0.82rem;
	font-weight: 700;
}
.lth-vendor-rating-summary {
	text-align: right;
	flex-shrink: 0;
}
.lth-vendor-avg {
	display: block;
	font-family: var(--lth-display);
	font-size: 1.75rem;
	line-height: 1;
	color: var(--lth-primary);
	margin-bottom: 4px;
}
.lth-vendor-empty {
	padding: 1.5rem 1.25rem;
	border-radius: 12px;
	background: linear-gradient(145deg, #f4f7f5, #faf8f2);
	border: 1px dashed rgba(26, 95, 74, 0.18);
	text-align: center;
}
.lth-vendor-empty p {
	margin: 0 0 4px;
	font-weight: 650;
	color: var(--lth-ink);
}
.lth-vendor-empty span,
.lth-empty-inline {
	color: var(--lth-muted);
	font-size: 0.92rem;
}
.lth-vendor-empty-sm { padding: 1rem; margin-bottom: 1rem; }
.lth-rating-form {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(26, 95, 74, 0.08);
}
.lth-rating-form h3 {
	margin: 0 0 4px;
	font-family: var(--lth-display);
	font-size: 1.1rem;
}

.lth-vendor-aside { position: sticky; top: 4.25rem; }
.lth-aside-contact .lth-contact-list li {
	display: grid;
	gap: 2px;
	margin: 0 0 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(26, 95, 74, 0.08);
}
.lth-aside-contact .lth-contact-list li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.lth-contact-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--lth-muted);
}
.lth-aside-cta {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}
.lth-aside-cta .lth-btn { justify-content: center; text-align: center; }

.lth-product-grid { display: grid; gap: 14px; }
.lth-product {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 16px;
	background: #fafbfa;
	border: 1px solid rgba(26, 95, 74, 0.1);
	border-radius: 14px;
	overflow: hidden;
	padding: 12px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.lth-product:hover {
	border-color: rgba(26, 95, 74, 0.22);
	box-shadow: 0 10px 24px rgba(20, 40, 32, 0.06);
}
.lth-product-media {
	border-radius: 10px;
	overflow: hidden;
	background: #dfe7e2;
	min-height: 110px;
	aspect-ratio: 1;
}
.lth-product-media-empty {
	background:
		linear-gradient(135deg, rgba(26, 95, 74, 0.08), rgba(232, 168, 56, 0.12)),
		#e8eeea;
}
.lth-product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lth-product-body h3 { margin: 0 0 4px; font-family: var(--lth-display); font-size: 1.15rem; }
.lth-price { font-weight: 700; color: var(--lth-primary); margin: 0 0 8px; }
.lth-price small { font-weight: 600; color: var(--lth-muted); font-size: 0.8rem; }
.lth-pay-btn { margin-top: 12px; }
.lth-note {
	background: rgba(232,168,56,0.15);
	border-left: 3px solid var(--lth-accent);
	padding: 10px 12px;
	border-radius: 0 8px 8px 0;
	margin-top: 1rem;
}

.lth-contact-list { list-style: none; margin: 0; padding: 0; }
.lth-hours { color: var(--lth-muted); white-space: pre-line; }
.lth-socials { display: flex; gap: 12px; margin-top: 4px; }

.lth-review-list { list-style: none; margin: 0 0 8px; padding: 0; }
.lth-review-list li {
	background: #fafbfa;
	border: 1px solid rgba(26, 95, 74, 0.1);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 10px;
}
.lth-review-top { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 6px; }
.lth-review-top time { color: var(--lth-muted); font-size: 0.85rem; margin-left: auto; }

@media (max-width: 900px) {
	.lth-vendor-aside { position: static; }
	.lth-vendor-hero { min-height: 320px; }
	.lth-vendor-panel-head { flex-direction: column; }
	.lth-vendor-rating-summary { text-align: left; }
}

/* Forms */
.lth-form { display: grid; gap: 12px; }
.lth-form label { display: grid; gap: 6px; font-weight: 600; font-size: 0.92rem; }
.lth-form input,
.lth-form select,
.lth-form textarea {
	font: inherit;
	font-weight: 400;
	padding: 10px 12px;
	border: 1px solid var(--lth-line);
	border-radius: 8px;
	background: #fff;
	width: 100%;
}
.lth-form-msg { margin: 0; font-weight: 600; }
.lth-form-msg.is-ok { color: var(--lth-primary); }
.lth-form-msg.is-err { color: var(--lth-danger); }

.lth-report-box summary { cursor: pointer; font-weight: 600; }
.lth-report-box[open] { padding-bottom: 8px; }
.lth-report-box form { margin-top: 12px; }

.lth-narrow { max-width: 560px; padding-bottom: 48px; }
.lth-prose p { margin-top: 0; }
.lth-empty, .lth-empty-note { padding: 40px 20px; color: var(--lth-muted); }
.lth-event-meta { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 16px; color: var(--lth-muted); }
.lth-event-image { border-radius: var(--lth-radius); margin-bottom: 20px; width: 100%; }

/* Ads */
.lth-ad-slot { margin: 16px auto; }
.lth-ad {
	position: relative;
	background: #fff;
	border: 1px dashed #b7c4bc;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}
.lth-ad-label {
	position: absolute;
	top: 6px;
	right: 6px;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(0,0,0,0.55);
	color: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	z-index: 1;
}
.lth-ad img { width: 100%; }
.lth-ad-title { padding: 16px; margin: 0; text-align: center; color: var(--lth-muted); }
.lth-ad-banner { max-width: var(--lth-max); }
.lth-ad-footer { margin-top: 8px; }

/* Footer */
.lth-footer {
	border-top: 1px solid var(--lth-line);
	padding: 28px 0 40px;
	background: rgba(255,255,255,0.55);
	margin-top: 20px;
}
.lth-footer-row { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; color: var(--lth-muted); font-size: 0.92rem; }
.lth-footer-meta { margin: 0; }
.lth-nav > a.is-active { color: var(--lth-primary); }
.lth-footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-bottom: 16px;
}
.lth-footer-nav a {
	color: var(--lth-ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
}
.lth-footer-nav a:hover { color: var(--lth-primary); }

.lth-btn-lg { padding: 14px 24px; font-size: 1.05rem; }

/* Landing header over hero */
.lth-header-over {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	border-bottom: 0;
	backdrop-filter: none;
}
.lth-header-over .lth-brand-name,
.lth-header-over .lth-nav > a:not(.lth-btn) { color: #fff; }
.lth-header-over .lth-brand-sub { color: rgba(255,255,255,0.75); }
.lth-header-over .lth-nav-toggle {
	border-color: rgba(255,255,255,0.35) !important;
	background: rgba(255,255,255,0.12) !important;
	color: #fff !important;
}
.lth-header-over.is-solid {
	position: sticky;
	background: rgba(244, 247, 245, 0.94);
	border-bottom: 1px solid var(--lth-line);
	backdrop-filter: blur(10px);
}
.lth-header-over.is-solid .lth-brand-name,
.lth-header-over.is-solid .lth-nav > a:not(.lth-btn) { color: var(--lth-ink); }
.lth-header-over.is-solid .lth-brand-sub { color: var(--lth-muted); }
.lth-header-over.is-solid .lth-nav-toggle {
	border-color: var(--lth-line) !important;
	background: #fff !important;
	color: var(--lth-ink) !important;
}

.lth-is-landing .lth-main { padding: 0; }
.lth-is-landing .lth-footer { margin-top: 0; }

/* Full-bleed landing hero */
.lth-land-hero {
	position: relative;
	min-height: min(92vh, 820px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.lth-land-hero-media {
	position: absolute;
	inset: 0;
	background-image: var(--lth-hero-image);
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
	animation: lth-ken 18s ease-out forwards;
}
.lth-land-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 61, 49, 0.35) 0%, rgba(15, 61, 49, 0.15) 35%, rgba(12, 40, 32, 0.88) 100%),
		linear-gradient(90deg, rgba(12, 40, 32, 0.55), transparent 55%);
}
.lth-land-hero-copy {
	position: relative;
	z-index: 1;
	padding: 7rem 20px 3.5rem;
	max-width: var(--lth-max);
}
.lth-land-brand {
	margin: 0 0 10px;
	font-family: var(--lth-display);
	font-size: clamp(2.6rem, 7vw, 4.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	animation: lth-rise .7s ease both;
}
.lth-land-headline {
	margin: 0;
	max-width: 18ch;
	font-family: var(--lth-display);
	font-size: clamp(1.55rem, 3.2vw, 2.25rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	animation: lth-rise .7s ease .08s both;
}
.lth-land-sub {
	margin: 14px 0 0;
	max-width: 34rem;
	font-size: 1.1rem;
	opacity: 0.92;
	animation: lth-rise .7s ease .14s both;
}
.lth-land-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	animation: lth-rise .7s ease .2s both;
}

@keyframes lth-ken {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

.lth-land-strip {
	background: var(--lth-primary-deep);
	color: #fff;
	padding: 22px 0;
}
.lth-land-strip-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}
.lth-land-strip strong {
	display: block;
	font-family: var(--lth-display);
	font-size: 1.6rem;
}
.lth-land-strip span {
	font-size: 0.85rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.lth-land-section { padding: 64px 0; }
.lth-land-section-tint { background: rgba(255,255,255,0.55); }
.lth-land-section-head { max-width: 40rem; margin-bottom: 28px; }
.lth-land-section-head h2 {
	margin: 0;
	font-family: var(--lth-display);
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	letter-spacing: -0.02em;
}
.lth-land-section-head p { margin: 8px 0 0; color: var(--lth-muted); }
.lth-land-center { text-align: center; margin-top: 28px; }

.lth-flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	counter-reset: none;
}
.lth-flow-step {
	padding: 8px 4px 8px 0;
	border-top: 3px solid var(--lth-accent);
}
.lth-flow-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--lth-primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 12px;
}
.lth-flow-step h3 {
	margin: 0 0 8px;
	font-family: var(--lth-display);
	font-size: 1.15rem;
}
.lth-flow-step p { margin: 0; color: var(--lth-muted); font-size: 0.95rem; }

.lth-land-cats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.lth-land-cat {
	display: block;
	padding: 18px 18px 16px;
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lth-land-cat:hover {
	transform: translateY(-3px);
	border-color: var(--lth-primary);
	box-shadow: var(--lth-shadow);
	color: inherit;
}
.lth-land-cat-name {
	display: block;
	font-family: var(--lth-display);
	font-size: 1.2rem;
	margin-bottom: 6px;
}
.lth-land-cat-kids {
	display: block;
	color: var(--lth-muted);
	font-size: 0.88rem;
	line-height: 1.4;
}

.lth-land-vendor-cta {
	background:
		linear-gradient(135deg, rgba(26,95,74,0.94), rgba(15,61,49,0.92)),
		var(--lth-primary-deep);
	color: #fff;
}
.lth-land-vendor-cta-inner { max-width: 640px; }
.lth-land-vendor-cta h2 {
	margin: 0;
	font-family: var(--lth-display);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	letter-spacing: -0.02em;
}
.lth-land-vendor-cta p { opacity: 0.92; max-width: 36rem; }
.lth-mini-flow {
	margin: 0 0 24px;
	padding-left: 1.2rem;
	line-height: 1.8;
}

.lth-land-ad-band {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	box-shadow: var(--lth-shadow);
}
.lth-land-ad-band h2 {
	margin: 0 0 6px;
	font-family: var(--lth-display);
	font-size: 1.5rem;
}
.lth-land-ad-band p { margin: 0; color: var(--lth-muted); max-width: 36rem; }

.lth-will-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .55s ease, transform .55s ease;
}
.lth-will-reveal.is-in {
	opacity: 1;
	transform: none;
}
.lth-flow-step:nth-child(2).lth-will-reveal { transition-delay: .06s; }
.lth-flow-step:nth-child(3).lth-will-reveal { transition-delay: .12s; }
.lth-flow-step:nth-child(4).lth-will-reveal { transition-delay: .18s; }

/* Wizard */
.lth-wizard-wrap { max-width: 560px; padding-bottom: 48px; }
.lth-wizard-steps {
	list-style: none;
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 0 0 24px;
}
.lth-wizard-steps li {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--lth-muted);
	padding-bottom: 10px;
	border-bottom: 3px solid var(--lth-line);
}
.lth-wizard-steps li span {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--lth-line);
	color: var(--lth-ink);
	font-size: 0.8rem;
}
.lth-wizard-steps li.is-active,
.lth-wizard-steps li.is-done {
	color: var(--lth-primary);
	border-bottom-color: var(--lth-primary);
}
.lth-wizard-steps li.is-active span,
.lth-wizard-steps li.is-done span {
	background: var(--lth-primary);
	color: #fff;
}
.lth-wizard {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	padding: 24px;
	box-shadow: var(--lth-shadow);
}
.lth-wizard h2 {
	margin: 0 0 16px;
	font-family: var(--lth-display);
	font-size: 1.35rem;
}
.lth-wizard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}
.lth-wizard-note {
	background: rgba(26,95,74,0.08);
	padding: 12px 14px;
	border-radius: 8px;
	color: var(--lth-muted);
	font-size: 0.95rem;
}
.lth-review-dl {
	margin: 0 0 16px;
	display: grid;
	gap: 10px;
}
.lth-review-dl > div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--lth-line);
}
.lth-review-dl dt { color: var(--lth-muted); font-weight: 600; margin: 0; }
.lth-review-dl dd { margin: 0; }

.lth-success { padding: 12px 0 48px; }
.lth-success-mark {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--lth-primary);
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 12px;
}
.lth-success-next {
	margin-top: 28px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
}
.lth-success-next h2 {
	margin: 0 0 8px;
	font-family: var(--lth-display);
	font-size: 1.2rem;
}
.lth-success-next ol { margin: 0; padding-left: 1.2rem; line-height: 1.7; }

.lth-placement-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 12px;
}
.lth-placement-list li {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.lth-placement-list span {
	font-size: 0.8rem;
	color: var(--lth-muted);
	font-family: ui-monospace, monospace;
}
.lth-ad-page { padding-bottom: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }

.lth-card-cat {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lth-primary);
	margin-bottom: 4px;
}

.lth-field-hint {
	margin: -4px 0 8px;
	font-size: 0.88rem;
	color: var(--lth-muted);
	font-weight: 400;
}
.lth-image-preview,
.lth-review-preview {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--lth-line);
	margin: 0 0 12px;
	max-width: 280px;
	background: #e8eeea;
}
.lth-image-preview img,
.lth-review-preview img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

/* Structured directory */
.lth-dir-head-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px 24px;
	align-items: flex-end;
}
.lth-dir-search {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 240px;
	max-width: 480px;
}
.lth-dir-search .lth-search-field {
	flex: 1;
	display: flex;
	align-items: center;
	border: 1px solid var(--lth-line);
	border-radius: 999px;
	background: #fff;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.lth-dir-search .lth-search-field:focus-within {
	border-color: rgba(26, 95, 74, 0.45);
	box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.12);
}
.lth-dir-search .lth-search-icon {
	display: grid;
	place-items: center;
	padding-left: 14px;
	color: var(--lth-muted);
}
.lth-dir-search input {
	flex: 1;
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	font: inherit;
	background: transparent;
	outline: none;
	min-width: 0;
}
.lth-dir-meta {
	margin: 10px 0 0;
	color: var(--lth-muted);
	font-size: 0.95rem;
}

.lth-dir-jump {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	padding: 12px 20px;
	margin-bottom: 8px;
	position: sticky;
	top: 64px;
	z-index: 20;
	background: rgba(244, 247, 245, 0.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--lth-line);
}
.lth-dir-jump-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lth-muted);
}
.lth-dir-jump-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
}
.lth-dir-jump-links a {
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--lth-ink);
	padding: 4px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--lth-line);
}
.lth-dir-jump-links a:hover {
	border-color: var(--lth-primary);
	color: var(--lth-primary);
}

.lth-dir-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 28px;
	padding-top: 20px;
	padding-bottom: 48px;
	align-items: start;
}
.lth-dir-index {
	position: sticky;
	top: 120px;
}
.lth-dir-index > h2 {
	margin: 0 0 12px;
	font-family: var(--lth-display);
	font-size: 1.15rem;
}
.lth-dir-index-list {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	overflow: hidden;
}
.lth-dir-index-list li { border-bottom: 1px solid var(--lth-line); }
.lth-dir-index-list li:last-child { border-bottom: 0; }
.lth-dir-index-list a {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 10px 12px;
	text-decoration: none;
	color: inherit;
}
.lth-dir-index-list a:hover { background: rgba(26,95,74,0.06); }
.lth-dir-index-num {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: var(--lth-primary);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.lth-dir-index-text strong { display: block; font-size: 0.92rem; }
.lth-dir-index-text small { color: var(--lth-muted); font-size: 0.78rem; }

.lth-dir-featured {
	background: rgba(255,255,255,0.7);
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	padding: 20px;
	margin-bottom: 28px;
	box-shadow: var(--lth-shadow);
}
.lth-dir-subhead {
	margin: 18px 0 10px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lth-muted);
}

.lth-dir-block {
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	padding: 18px 20px 16px;
	margin-bottom: 16px;
	scroll-margin-top: 130px;
	box-shadow: 0 4px 16px rgba(15, 61, 49, 0.04);
}
.lth-dir-block-head { margin-bottom: 14px; }
.lth-dir-block-title {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.lth-dir-block-num {
	font-family: var(--lth-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--lth-accent);
	line-height: 1;
	min-width: 2ch;
}
.lth-dir-block-title h3 {
	margin: 0;
	font-family: var(--lth-display);
	font-size: 1.35rem;
}
.lth-dir-block-title h3 a {
	color: inherit;
	text-decoration: none;
}
.lth-dir-block-title h3 a:hover { color: var(--lth-primary); }
.lth-dir-block-title p {
	margin: 4px 0 0;
	color: var(--lth-muted);
	font-size: 0.9rem;
}
.lth-dir-see-all {
	font-weight: 600;
	text-decoration: none;
}

.lth-dir-subgrid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 8px;
}
.lth-dir-subgrid a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--lth-paper);
	border: 1px solid transparent;
	text-decoration: none;
	color: var(--lth-ink);
	font-weight: 600;
	font-size: 0.95rem;
	transition: border-color .15s ease, background .15s ease;
}
.lth-dir-subgrid a:hover {
	border-color: var(--lth-primary);
	background: rgba(26,95,74,0.08);
	color: var(--lth-primary);
}
.lth-dir-sub-count {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--lth-muted);
	background: #fff;
	border-radius: 999px;
	padding: 2px 8px;
	min-width: 1.5rem;
	text-align: center;
}
.lth-dir-subgrid-compact { margin-bottom: 8px; }

.lth-cat-layout { padding-bottom: 48px; }
.lth-cat-list-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.lth-cat-list-count {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--lth-muted);
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: 999px;
	padding: 2px 10px;
}

.lth-listing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}
.lth-listing-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--lth-line);
	border-radius: var(--lth-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lth-listing-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--lth-shadow);
	color: inherit;
}
.lth-listing-media {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	background-color: #dfe7e2;
}
.lth-listing-body { padding: 12px 14px 16px; }
.lth-listing-body h3 {
	margin: 0 0 6px;
	font-family: var(--lth-display);
	font-size: 1.1rem;
}
.lth-listing-addr {
	margin: 6px 0 0;
	font-size: 0.88rem;
	color: var(--lth-primary);
	font-weight: 600;
}
.lth-listing-excerpt {
	margin: 8px 0 0;
	font-size: 0.9rem;
	color: var(--lth-muted);
}

/* Motion */
@keyframes lth-rise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.lth-hero-title,
.lth-cat-columns,
.lth-vendor-card,
.lth-event-card {
	animation: lth-rise .55s ease both;
}
.lth-vendor-card:nth-child(2),
.lth-event-card:nth-child(2) { animation-delay: .06s; }
.lth-vendor-card:nth-child(3),
.lth-event-card:nth-child(3) { animation-delay: .12s; }
.lth-cat-columns { animation-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation: none !important;
		transition: none !important;
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.lth-header-inner {
		column-gap: 18px;
	}
	.lth-nav {
		gap: 8px 14px;
	}
	.lth-nav > a.lth-btn {
		padding: 9px 14px;
		font-size: 0.92rem;
	}
}

@media (max-width: 900px) {
	.lth-home-grid,
	.lth-vendor-layout,
	.lth-vendor-head-inner,
	.lth-flow,
	.lth-land-cats,
	.lth-land-strip-inner,
	.lth-ad-page,
	.lth-dir-layout,
	.lth-account-layout,
	.lth-form-grid-2 {
		grid-template-columns: 1fr;
	}
	.lth-dir-index { position: static; }
	.lth-dir-jump { top: 0; position: relative; }
	.lth-land-strip-inner { grid-template-columns: 1fr 1fr; }
	.lth-product { grid-template-columns: 1fr; }
	.lth-account-nav { position: static; }
	.lth-account-nav nav { flex-direction: row; flex-wrap: wrap; }
	.lth-account-stats { grid-template-columns: 1fr 1fr; }
	.lth-vendor-aside { position: static; }
	.lth-vendor-hero { min-height: 300px; }
	.lth-vendor-panel-head { flex-direction: column; }
	.lth-vendor-rating-summary { text-align: left; }
	.lth-land-hero { min-height: 78vh; }
	.lth-land-hero-copy { padding-top: 6.5rem; }

	/* Header: brand + toggle, search full width, collapsible nav */
	.lth-header-inner,
	.lth-header-inner--no-search {
		grid-template-columns: 1fr auto;
		align-items: center;
		row-gap: 12px;
	}
	.lth-brand { grid-column: 1; grid-row: 1; }
	.lth-nav-toggle {
		display: inline-flex;
		grid-column: 2;
		grid-row: 1;
	}
	.lth-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none;
		justify-self: stretch;
	}
	.lth-nav {
		display: none;
		grid-column: 1 / -1;
		grid-row: 3;
		flex-direction: column;
		align-items: stretch;
		justify-self: stretch;
		gap: 4px;
		padding: 8px 0 4px;
		border-top: 1px solid var(--lth-line);
	}
	.lth-header-inner--no-search .lth-nav { grid-row: 2; }
	.lth-nav-open .lth-nav { display: flex; }
	.lth-nav > a:not(.lth-btn) {
		padding: 12px 10px;
		border-radius: 10px;
	}
	.lth-nav > a:not(.lth-btn):hover,
	.lth-nav > a.is-active {
		background: rgba(26, 95, 74, 0.08);
		color: var(--lth-primary);
	}
	.lth-nav > a.lth-btn {
		margin-top: 6px;
		width: 100%;
		justify-content: center;
	}
	.lth-header-over:not(.is-solid) .lth-nav {
		border-top-color: rgba(255, 255, 255, 0.2);
	}
	.lth-header-over:not(.is-solid) .lth-nav > a:not(.lth-btn):hover,
	.lth-header-over:not(.is-solid) .lth-nav > a.is-active {
		background: rgba(255, 255, 255, 0.12);
		color: #fff;
	}
	.lth-page-head { padding-top: 28px; }
	.lth-footer-nav {
		gap: 10px 16px;
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.lth-land-strip-inner,
	.lth-account-stats {
		grid-template-columns: 1fr;
	}
	.lth-brand-sub { max-width: 9.5rem; }
	.lth-vendor-hero-actions .lth-btn,
	.lth-aside-cta .lth-btn {
		width: 100%;
	}
	.lth-vendor-jump-inner {
		gap: 2px;
		padding-left: 0;
		padding-right: 0;
	}
	.lth-vendor-jump a {
		padding: 8px 12px;
		font-size: 0.85rem;
	}
	.lth-vendor-panel {
		padding: 1.1rem 1rem 1.2rem;
		border-radius: 12px;
	}
	.lth-account-list > li {
		flex-direction: column;
		align-items: stretch;
	}
	.lth-account-list-actions {
		width: 100%;
	}
	.lth-account-list-actions .lth-btn {
		flex: 1;
		justify-content: center;
	}
	.lth-wizard-steps {
		flex-wrap: wrap;
		gap: 8px;
	}
	.lth-page-head h1 {
		font-size: clamp(1.6rem, 7vw, 2.2rem);
	}
	.lth-land-hero-copy h1 {
		font-size: clamp(2rem, 9vw, 3rem);
	}
	.lth-footer-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

@media (max-width: 420px) {
	.lth-search input { padding-left: 14px; padding-right: 10px; }
	.lth-search button { padding-left: 14px; padding-right: 14px; }
	.lth-brand-mark { width: 36px; height: 36px; }
}

/* —— Auth & account —— */
.lth-narrow { max-width: 460px; margin-left: auto; margin-right: auto; }
.lth-auth-form { margin-top: 8px; }
.lth-auth-switch {
	margin-top: 1.25rem;
	text-align: center;
	color: var(--lth-muted);
}
.lth-auth-switch a { font-weight: 600; color: var(--lth-primary); }
.lth-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}
.lth-check input { width: auto; }

.lth-account-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 2rem;
	padding-bottom: 3rem;
	align-items: start;
}
.lth-account-nav {
	position: sticky;
	top: 5.5rem;
	padding: 1.1rem;
	background: linear-gradient(160deg, #f4f7f5 0%, #eef3f0 100%);
	border-radius: 14px;
}
.lth-account-user {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(26, 95, 74, 0.12);
}
.lth-account-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--lth-primary);
	color: #fff;
	font-weight: 700;
	flex-shrink: 0;
}
.lth-account-user strong { display: block; font-size: 0.95rem; }
.lth-account-user small { color: var(--lth-muted); font-size: 0.8rem; word-break: break-all; }
.lth-account-nav nav { display: flex; flex-direction: column; gap: 4px; }
.lth-account-nav nav a {
	padding: 8px 10px;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	font-weight: 550;
}
.lth-account-nav nav a:hover,
.lth-account-nav nav a.is-active {
	background: #fff;
	color: var(--lth-primary);
}

.lth-account-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 1.75rem;
}
.lth-account-stats > div {
	padding: 1rem 1.1rem;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(26, 95, 74, 0.1);
}
.lth-account-stats strong {
	display: block;
	font-family: var(--lth-display);
	font-size: 1.6rem;
	line-height: 1.1;
}
.lth-account-stats span { color: var(--lth-muted); font-size: 0.9rem; }

.lth-account-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.lth-account-empty {
	padding: 1.5rem;
	border-radius: 12px;
	background: #f6f8f7;
	text-align: center;
}
.lth-account-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lth-account-list > li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(26, 95, 74, 0.1);
	background: #fff;
	flex-wrap: wrap;
}
.lth-account-list-main {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	flex: 1;
	color: inherit;
	text-decoration: none;
}
.lth-account-list-main strong { display: block; }
.lth-account-list-main small { color: var(--lth-muted); }
.lth-account-thumb {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: #dfe7e2 center / cover no-repeat;
	flex-shrink: 0;
}
.lth-account-list-actions {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.lth-status-pill {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: capitalize;
	background: #e8eee9;
}
.lth-status-publish { background: #d8f0e4; color: #0f5c3d; }
.lth-status-pending { background: #fff0cc; color: #8a5a00; }
.lth-status-draft { background: #eceff1; color: #455a64; }
.lth-account-tips {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--lth-muted);
	line-height: 1.55;
}
.lth-account-tips li { margin-bottom: 0.4rem; }
.lth-listing-form,
.lth-product-form { max-width: 640px; }
.lth-form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.lth-account-products { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(26,95,74,.12); }
.lth-product-manage {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}
.lth-product-manage li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(26,95,74,.08);
}
.lth-product-manage strong { flex: 1; }
.lth-product-manage small { color: var(--lth-muted); }
.lth-account-prompt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.1rem 1.25rem;
	margin: 0 0 1.25rem;
	border-radius: 14px;
	background: linear-gradient(120deg, #eef6f2, #fff8ea);
	border: 1px solid rgba(26, 95, 74, 0.12);
}
.lth-account-prompt p { margin: 4px 0 0; color: var(--lth-muted); }
.lth-account-prompt-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* —— Animated 404 —— */
.lth-page-404 .lth-main {
	padding: 0;
	background:
		radial-gradient(900px 420px at 15% 10%, rgba(232, 168, 56, 0.18), transparent 55%),
		radial-gradient(800px 380px at 90% 0%, rgba(26, 95, 74, 0.22), transparent 50%),
		linear-gradient(165deg, #0f3d31 0%, #1a5f4a 42%, #14352c 100%);
	min-height: calc(100vh - 120px);
	overflow: hidden;
}
.lth-404 {
	position: relative;
	padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
	color: #fff;
	isolation: isolate;
}
.lth-404-sky {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}
.lth-404-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.45;
	animation: lth-404-drift 14s ease-in-out infinite;
}
.lth-404-orb-a {
	width: 220px;
	height: 220px;
	left: -40px;
	top: 10%;
	background: radial-gradient(circle, rgba(232,168,56,.5), transparent 70%);
}
.lth-404-orb-b {
	width: 280px;
	height: 280px;
	right: -60px;
	top: 20%;
	background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
	animation-delay: -4s;
}
.lth-404-orb-c {
	width: 160px;
	height: 160px;
	left: 40%;
	bottom: 8%;
	background: radial-gradient(circle, rgba(26,95,74,.8), transparent 70%);
	animation-delay: -7s;
}
.lth-404-star {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 10px rgba(255,255,255,.8);
	animation: lth-404-twinkle 2.8s ease-in-out infinite;
}
.lth-404-star.s1 { top: 12%; left: 18%; animation-delay: 0s; }
.lth-404-star.s2 { top: 22%; left: 72%; animation-delay: .4s; }
.lth-404-star.s3 { top: 38%; left: 55%; animation-delay: .9s; }
.lth-404-star.s4 { top: 16%; left: 88%; animation-delay: 1.2s; }
.lth-404-star.s5 { top: 48%; left: 12%; animation-delay: 1.6s; }
.lth-404-star.s6 { top: 30%; left: 40%; animation-delay: 2s; width: 3px; height: 3px; }

.lth-404-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}
.lth-404-stage {
	transform-style: preserve-3d;
	will-change: transform;
}
.lth-404-art {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}

.lth-404-digits path,
.lth-404-digits-accent path {
	stroke-dasharray: 420;
	stroke-dashoffset: 420;
	animation: lth-404-draw 1.6s ease forwards;
}
.lth-404-digits .d0 { animation-delay: .15s; }
.lth-404-digits .d4b { animation-delay: .3s; }
.lth-404-digits-accent .d4a { animation-delay: .45s; }
.lth-404-digits-accent .d0 { animation-delay: .55s; }
.lth-404-digits-accent .d4b { animation-delay: .65s; }

.lth-404-pin {
	transform-box: fill-box;
	transform-origin: center bottom;
	animation: lth-404-bounce 2.4s ease-in-out infinite;
}
.lth-404-pin-pulse {
	transform-box: fill-box;
	transform-origin: center;
	animation: lth-404-ring 2.4s ease-out infinite;
}
.lth-404-compass {
	animation: lth-404-float 4s ease-in-out infinite;
}
.lth-404-needle {
	transform-origin: 168px 98px;
	animation: lth-404-spin 8s linear infinite;
}
.lth-404-plane {
	animation: lth-404-fly 9s ease-in-out infinite;
}
.lth-404-house.house-a {
	animation: lth-404-bob-a 3.5s ease-in-out infinite;
}
.lth-404-house.house-b {
	animation: lth-404-bob-b 3.5s ease-in-out infinite;
	animation-delay: -1.2s;
}
.lth-404-hill.h1 { animation: lth-404-sway 10s ease-in-out infinite; transform-origin: center bottom; }
.lth-404-glow { animation: lth-404-pulse-glow 3s ease-in-out infinite; }

.lth-404-copy {
	animation: lth-404-rise .8s ease both;
	animation-delay: .2s;
}
.lth-404-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.lth-404-title {
	margin: 0 0 12px;
	font-family: var(--lth-display);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #fff;
}
.lth-404-lead {
	margin: 0 0 1.4rem;
	font-size: 1.08rem;
	line-height: 1.55;
	color: rgba(255,255,255,.84);
	max-width: 34rem;
}
.lth-404-search {
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 440px;
	margin-bottom: 1.25rem;
	background: #fff;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.lth-404-search .lth-search-icon {
	display: grid;
	place-items: center;
	padding-left: 14px;
	color: var(--lth-muted);
}
.lth-404-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 14px 12px;
	font: inherit;
	outline: none;
	background: transparent;
	color: var(--lth-ink);
}
.lth-404-search button {
	border-radius: 0;
	margin: 0;
	border: 0;
	height: 100%;
	padding: 14px 18px;
}
.lth-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 1.5rem;
}
body.lth-body .lth-404-actions a.lth-btn-ghost,
body.lth-body .lth-404-actions a.lth-btn-ghost:hover,
body.lth-body .lth-404-actions a.lth-btn-ghost:focus,
body.lth-body .lth-404-actions a.lth-btn-ghost:active {
	border-color: rgba(255, 255, 255, 0.55) !important;
	color: #fff !important;
	background: rgba(255, 255, 255, 0.12) !important;
	text-decoration: none !important;
}
body.lth-body .lth-404-actions a.lth-btn-ghost:hover,
body.lth-body .lth-404-actions a.lth-btn-ghost:focus {
	background: rgba(255, 255, 255, 0.22) !important;
	border-color: #fff !important;
	color: #fff !important;
}
body.lth-body .lth-404-actions a.lth-btn-ghost .lth-icon,
body.lth-body .lth-404-actions a.lth-btn-accent .lth-icon,
body.lth-body .lth-404-actions a.lth-btn span {
	color: inherit !important;
}
body.lth-body .lth-404-actions a.lth-btn-accent,
body.lth-body .lth-404-actions a.lth-btn-accent:hover,
body.lth-body .lth-404-actions a.lth-btn-accent:focus {
	color: #1c1f1e !important;
	text-decoration: none !important;
}

.lth-404-quick {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}
body.lth-body .lth-404-quick a,
body.lth-body .lth-404-quick a:hover,
body.lth-body .lth-404-quick a:focus,
body.lth-body .lth-404-quick a:active {
	display: grid;
	gap: 8px;
	justify-items: start;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12) !important;
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 650;
	font-size: 0.92rem;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
body.lth-body .lth-404-quick a:hover,
body.lth-body .lth-404-quick a:focus {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.2) !important;
	border-color: rgba(232, 168, 56, 0.7);
	color: #fff !important;
}
body.lth-body .lth-404-quick a span,
body.lth-body .lth-404-quick a .lth-icon {
	color: #fff !important;
}
.lth-404-quick-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(232, 168, 56, 0.28);
	color: #f6d27a !important;
}
body.lth-body .lth-404-quick-icon,
body.lth-body .lth-404-quick-icon .lth-icon {
	color: #f6d27a !important;
}
.lth-404-town {
	margin: 0;
	color: rgba(255,255,255,.55);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

@keyframes lth-404-draw {
	to { stroke-dashoffset: 0; }
}
@keyframes lth-404-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
@keyframes lth-404-ring {
	0% { transform: scale(0.6); opacity: 0.7; }
	100% { transform: scale(1.6); opacity: 0; }
}
@keyframes lth-404-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
@keyframes lth-404-spin {
	from { transform: rotate(-18deg); }
	to { transform: rotate(342deg); }
}
@keyframes lth-404-fly {
	0% { transform: translate(0, 0) rotate(-8deg); opacity: 0; }
	10% { opacity: 1; }
	50% { transform: translate(240px, -20px) rotate(6deg); opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translate(520px, 10px) rotate(12deg); opacity: 0; }
}
@keyframes lth-404-bob-a {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes lth-404-bob-b {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes lth-404-sway {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(8px); }
}
@keyframes lth-404-pulse-glow {
	0%, 100% { opacity: 0.28; }
	50% { opacity: 0.5; }
}
@keyframes lth-404-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(18px, -22px) scale(1.08); }
}
@keyframes lth-404-twinkle {
	0%, 100% { opacity: 0.25; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.6); }
}
@keyframes lth-404-rise {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
	.lth-404-inner { grid-template-columns: 1fr; }
	.lth-404-stage { order: -1; max-width: 520px; margin: 0 auto; }
	.lth-404-quick { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.lth-404-orb,
	.lth-404-star,
	.lth-404-digits path,
	.lth-404-digits-accent path,
	.lth-404-pin,
	.lth-404-pin-pulse,
	.lth-404-compass,
	.lth-404-needle,
	.lth-404-plane,
	.lth-404-house,
	.lth-404-hill,
	.lth-404-glow,
	.lth-404-copy {
		animation: none !important;
	}
	.lth-404-digits path,
	.lth-404-digits-accent path {
		stroke-dashoffset: 0;
	}
}

/* —— Premium icons & motion —— */
.lth-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
	color: currentColor;
}
.lth-btn .lth-icon { margin: 0; }
.lth-btn { gap: 8px; }

.lth-footer-nav a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.lth-vendor-jump a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.lth-vendor-loc {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lth-aside-contact h3 {
	display: flex;
	align-items: center;
	gap: 8px;
}
.lth-account-nav nav a {
	display: flex;
	align-items: center;
	gap: 10px;
}
.lth-account-nav nav a .lth-icon {
	opacity: 0.75;
}
.lth-account-nav nav a.is-active .lth-icon,
.lth-account-nav nav a:hover .lth-icon {
	opacity: 1;
	color: var(--lth-primary);
}

.lth-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(26, 95, 74, 0.08);
	color: var(--lth-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.lth-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	text-decoration: none;
	color: var(--lth-primary);
}
.lth-text-link:hover .lth-icon { transform: translateX(3px); }
.lth-text-link .lth-icon { transition: transform .2s ease; }

.lth-stat {
	display: grid;
	justify-items: start;
	gap: 4px;
}
.lth-stat-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(26, 95, 74, 0.1);
	color: var(--lth-primary);
	margin-bottom: 6px;
}
.lth-land-strip-inner .lth-stat strong {
	font-family: var(--lth-display);
	font-size: 1.6rem;
	line-height: 1.1;
}
.lth-land-strip-inner .lth-stat > span:last-child {
	color: var(--lth-muted);
	font-size: 0.9rem;
}

.lth-flow-step {
	position: relative;
	padding-top: 8px;
}
.lth-flow-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	border-radius: 16px;
	background: linear-gradient(145deg, #fff, #eef5f1);
	border: 1px solid rgba(26, 95, 74, 0.12);
	color: var(--lth-primary);
	box-shadow: 0 10px 24px rgba(15, 61, 49, 0.06);
}
.lth-flow-step:hover .lth-flow-icon {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(15, 61, 49, 0.1);
}
.lth-flow-icon { transition: transform .25s ease, box-shadow .25s ease; }

.lth-land-cat {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 1.15rem 1.2rem 1.2rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lth-land-cat-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(26, 95, 74, 0.09);
	color: var(--lth-primary);
	transition: transform .25s ease, background .25s ease;
}
.lth-land-cat:hover .lth-land-cat-icon {
	transform: scale(1.06) rotate(-4deg);
	background: rgba(232, 168, 56, 0.2);
	color: #8a5a00;
}
.lth-land-cat-go {
	position: absolute;
	right: 1rem;
	top: 1.2rem;
	opacity: 0;
	transform: translateX(-4px);
	color: var(--lth-primary);
	transition: opacity .2s ease, transform .2s ease;
}
.lth-land-cat:hover .lth-land-cat-go {
	opacity: 1;
	transform: translateX(0);
}

.lth-auth-badge {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 8px;
	border-radius: 18px;
	background: linear-gradient(145deg, #eef6f2, #fff8ea);
	border: 1px solid rgba(26, 95, 74, 0.12);
	color: var(--lth-primary);
	box-shadow: 0 12px 28px rgba(15, 61, 49, 0.08);
}
.lth-auth-form {
	padding: 1.35rem 1.4rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(26, 95, 74, 0.1);
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(20, 40, 32, 0.06);
}

.lth-vendor-empty {
	position: relative;
	overflow: hidden;
}
.lth-vendor-empty::before {
	content: "";
	position: absolute;
	inset: -40% auto auto -20%;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232,168,56,.18), transparent 70%);
	pointer-events: none;
}

/* Animated icon utilities */
@keyframes lth-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
@keyframes lth-pulse-soft {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.06); opacity: 0.88; }
}
@keyframes lth-spark-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@keyframes lth-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}
.lth-icon-float { animation: lth-float 3.2s ease-in-out infinite; }
.lth-icon-pulse { animation: lth-pulse-soft 2.6s ease-in-out infinite; }
.lth-icon-spark { animation: lth-spark-spin 12s linear infinite; }
.lth-flow-step:nth-child(2) .lth-icon-float { animation-delay: .15s; }
.lth-flow-step:nth-child(3) .lth-icon-float { animation-delay: .3s; }
.lth-flow-step:nth-child(4) .lth-icon-float { animation-delay: .45s; }

.lth-will-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}
.lth-will-reveal.is-in {
	opacity: 1;
	transform: none;
}

.lth-btn-accent {
	position: relative;
	overflow: hidden;
}
.lth-btn-accent::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.35) 45%, transparent 70%);
	background-size: 200% 100%;
	animation: lth-shimmer 3.5s ease-in-out infinite;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.lth-icon-float,
	.lth-icon-pulse,
	.lth-icon-spark,
	.lth-btn-accent::after {
		animation: none !important;
	}
	.lth-will-reveal {
		opacity: 1;
		transform: none;
	}
}



