/* ============================================
   LaadCheck — main stylesheet
   ============================================ */

:root {
	--lc-primary: #185FA5;
	--lc-primary-dark: #0C447C;
	--lc-bg: #F7F7F5;
	--lc-surface: #FFFFFF;
	--lc-border: #E5E5E2;
	--lc-text: #2C2C2A;
	--lc-text-secondary: #5F5E5A;
	--lc-text-tertiary: #888780;
	--lc-success: #3B6D11;
	--lc-warning: #854F0B;
	--lc-danger: #A32D2D;
	--lc-radius: 8px;
	--lc-radius-lg: 12px;
	--lc-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
	--lc-shadow-md: 0 2px 8px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--lc-text);
	background: var(--lc-bg);
	font-size: 15px;
	line-height: 1.5;
}

a { color: var(--lc-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-weight: 500; line-height: 1.3; margin: 0 0 12px; }
h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

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

.lc-header {
	background: var(--lc-surface);
	border-bottom: 1px solid var(--lc-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.lc-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.lc-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 18px;
	color: var(--lc-text);
	text-decoration: none;
}
.lc-logo:hover { text-decoration: none; }
.lc-logo .dashicons {
	color: var(--lc-primary);
	font-size: 24px;
	width: 24px;
	height: 24px;
}

.lc-nav {
	display: flex;
	gap: 20px;
}
.lc-nav a {
	color: var(--lc-text-secondary);
	font-size: 14px;
}
.lc-nav a:hover {
	color: var(--lc-primary);
	text-decoration: none;
}

.lc-main {
	min-height: calc(100vh - 130px);
}

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

.lc-footer {
	background: var(--lc-surface);
	border-top: 1px solid var(--lc-border);
	padding: 24px;
	margin-top: 60px;
}

.lc-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	font-size: 13px;
	color: var(--lc-text-secondary);
}

.lc-footer p { margin: 4px 0; }
.lc-footer-meta { color: var(--lc-text-tertiary); }

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

.lc-btn {
	background: var(--lc-surface);
	color: var(--lc-text);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 8px 16px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.15s;
}
.lc-btn:hover { background: var(--lc-bg); border-color: #c8c8c5; }
.lc-btn-primary {
	background: var(--lc-primary);
	color: #fff;
	border-color: var(--lc-primary);
}
.lc-btn-primary:hover {
	background: var(--lc-primary-dark);
	border-color: var(--lc-primary-dark);
}
.lc-btn-lg {
	padding: 12px 24px;
	font-size: 16px;
}

input[type="text"], select {
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 8px 12px;
	font-size: 14px;
	font-family: inherit;
	background: var(--lc-surface);
	color: var(--lc-text);
	height: 38px;
}
input[type="text"]:focus, select:focus {
	outline: none;
	border-color: var(--lc-primary);
	box-shadow: 0 0 0 3px rgba(24,95,165,0.1);
}

/* ============================================
   Hero (homepage)
   ============================================ */

.lc-hero {
	background: linear-gradient(180deg, var(--lc-bg) 0%, var(--lc-surface) 100%);
	padding: 60px 24px 40px;
	text-align: center;
}

.lc-hero-inner {
	max-width: 720px;
	margin: 0 auto;
}

.lc-hero h1 {
	font-size: 36px;
	margin-bottom: 12px;
}

.lc-hero-sub {
	font-size: 17px;
	color: var(--lc-text-secondary);
	margin-bottom: 28px;
}

.lc-hero-search {
	display: flex;
	gap: 8px;
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 8px;
	box-shadow: var(--lc-shadow-md);
	max-width: 600px;
	margin: 0 auto;
}

.lc-hero-search input[type="text"],
.lc-hero-search select {
	border: none;
	background: transparent;
	flex: 1;
	min-width: 0;
}
.lc-hero-search input[type="text"]:focus,
.lc-hero-search select:focus {
	box-shadow: none;
}

.lc-hero-tip {
	margin-top: 20px;
	color: var(--lc-text-secondary);
	font-size: 14px;
}

/* ============================================
   Features section (homepage)
   ============================================ */

.lc-features {
	padding: 40px 24px;
}

.lc-features-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.lc-feature {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 24px;
	text-align: center;
}

.lc-feature .dashicons {
	color: var(--lc-primary);
	font-size: 32px;
	width: 32px;
	height: 32px;
	margin-bottom: 8px;
}

.lc-feature h3 { margin: 8px 0; }
.lc-feature p { color: var(--lc-text-secondary); margin: 0; }

.lc-section {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 24px;
}

.lc-postcode-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
}

.lc-postcode-tile {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 16px;
	text-align: center;
	display: block;
	color: var(--lc-text);
	transition: all 0.15s;
}
.lc-postcode-tile:hover {
	border-color: var(--lc-primary);
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--lc-shadow-sm);
}
.lc-postcode-num {
	display: block;
	font-weight: 500;
	font-size: 18px;
	color: var(--lc-primary);
}
.lc-postcode-name {
	display: block;
	font-size: 13px;
	color: var(--lc-text-secondary);
	margin-top: 2px;
}

/* ============================================
   Filter bar
   ============================================ */

.lc-page {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px;
}

.lc-postcode-header {
	margin-bottom: 16px;
}
.lc-postcode-header h1 { margin-bottom: 4px; }
.lc-postcode-sub {
	color: var(--lc-text-secondary);
	margin: 0;
	font-size: 15px;
}

.lc-filterbar {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 12px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: end;
	margin-bottom: 16px;
}

.lc-filter-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lc-filter-group label {
	font-size: 12px;
	color: var(--lc-text-secondary);
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
}

.lc-filter-group label .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.lc-filter-group input, .lc-filter-group select {
	min-width: 130px;
}

#lc-search-btn { margin-left: auto; }

/* ============================================
   Split view: map + list
   ============================================ */

.lc-split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 16px;
	min-height: 600px;
}

@media (max-width: 900px) {
	.lc-split { grid-template-columns: 1fr; }
}

.lc-map-wrap {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	overflow: hidden;
	position: relative;
	min-height: 500px;
}

#lc-map {
	width: 100%;
	height: 100%;
	min-height: 500px;
}

.lc-legend {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 6px 12px;
	font-size: 12px;
	display: flex;
	gap: 12px;
	z-index: 500;
	box-shadow: var(--lc-shadow-sm);
}

.lc-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.lc-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: inline-block;
}

/* ============================================
   List
   ============================================ */

.lc-list-wrap {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 12px;
	max-height: 600px;
	overflow-y: auto;
}

.lc-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 8px 10px;
	font-size: 13px;
	color: var(--lc-text-secondary);
	border-bottom: 1px solid var(--lc-border);
	margin-bottom: 10px;
}

.lc-list { display: flex; flex-direction: column; gap: 8px; }

.lc-card {
	display: block;
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius);
	padding: 10px 12px;
	color: var(--lc-text);
	text-decoration: none;
	transition: all 0.15s;
}

.lc-card:hover {
	border-color: #c8c8c5;
	text-decoration: none;
	box-shadow: var(--lc-shadow-sm);
}

.lc-card-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.lc-card-name {
	font-size: 14px;
	font-weight: 500;
}

.lc-card-price {
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
}

.lc-card-meta {
	font-size: 12px;
	color: var(--lc-text-secondary);
	margin-top: 4px;
}

.lc-card-meta .dashicons {
	font-size: 13px;
	width: 13px;
	height: 13px;
	vertical-align: -2px;
}

/* ============================================
   Tip box
   ============================================ */

.lc-tip-box {
	margin-top: 20px;
	padding: 12px 16px;
	background: #E6F1FB;
	border: 1px solid #B5D4F4;
	border-radius: var(--lc-radius);
	font-size: 14px;
	color: var(--lc-primary-dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.lc-tip-box .dashicons {
	color: var(--lc-primary);
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* ============================================
   Empty state
   ============================================ */

.lc-empty {
	padding: 40px 20px;
	text-align: center;
	color: var(--lc-text-secondary);
}

.lc-empty h1 { color: var(--lc-text); }

/* ============================================
   Related section
   ============================================ */

.lc-related {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--lc-border);
}

/* ============================================
   Leaflet marker custom styling
   ============================================ */

.lc-marker {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lc-popup {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	min-width: 180px;
}

.lc-popup-title {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 4px;
}

.lc-popup-price {
	font-size: 16px;
	font-weight: 500;
	margin: 6px 0;
}

.lc-popup-meta {
	color: var(--lc-text-secondary);
	font-size: 12px;
}

.lc-popup-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
}

/* ============================================
   Vergelijker
   ============================================ */

.lc-page-vergelijker {
	max-width: 1100px;
}

.lc-verg-header {
	text-align: center;
	padding: 20px 0 30px;
}
.lc-verg-header h1 {
	font-size: 32px;
}

.lc-verg-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 20px;
	align-items: start;
}

@media (max-width: 900px) {
	.lc-verg-layout { grid-template-columns: 1fr; }
}

.lc-verg-form {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 24px;
}

.lc-verg-form h2 {
	font-size: 18px;
	margin-bottom: 6px;
}

.lc-verg-help {
	color: var(--lc-text-secondary);
	font-size: 13px;
	margin-bottom: 16px;
}

.lc-sessies {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.lc-sessie-row {
	display: grid;
	grid-template-columns: 1fr auto 32px;
	gap: 8px;
	align-items: center;
}

.lc-sessie-cpo {
	width: 100%;
}

.lc-sessie-kwh-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.lc-sessie-kwh {
	width: 110px;
	padding-right: 42px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.lc-sessie-unit {
	position: absolute;
	right: 12px;
	color: var(--lc-text-tertiary);
	font-size: 13px;
	pointer-events: none;
}

.lc-sessie-remove {
	background: transparent;
	border: none;
	color: var(--lc-text-tertiary);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	width: 32px;
	height: 38px;
	border-radius: var(--lc-radius);
	padding: 0;
}
.lc-sessie-remove:hover {
	color: var(--lc-danger);
	background: #FDEEEE;
}

.lc-verg-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.lc-verg-details {
	border-top: 1px solid var(--lc-border);
	padding-top: 16px;
	font-size: 13px;
	color: var(--lc-text-secondary);
}
.lc-verg-details summary {
	cursor: pointer;
	color: var(--lc-primary);
	font-weight: 500;
}
.lc-verg-details summary:hover { text-decoration: underline; }
.lc-verg-details ul { margin: 8px 0 0 20px; padding: 0; }
.lc-verg-details li { margin-bottom: 4px; }

/* Results panel */

.lc-verg-results {
	background: var(--lc-surface);
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-lg);
	padding: 24px;
	min-height: 300px;
}

.lc-verg-summary {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--lc-border);
}

.lc-verg-summary-row {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lc-verg-summary-row span {
	font-size: 12px;
	color: var(--lc-text-tertiary);
}
.lc-verg-summary-row strong {
	font-size: 18px;
	font-weight: 500;
}

/* Winner card */

.lc-verg-winner {
	background: linear-gradient(135deg, #E6F1FB 0%, #F1F8FE 100%);
	border: 1px solid #B5D4F4;
	border-radius: var(--lc-radius-lg);
	padding: 20px;
	margin-bottom: 20px;
}

.lc-verg-winner-badge {
	display: inline-block;
	background: var(--lc-primary);
	color: #fff;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 11px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 10px;
}

.lc-verg-winner-name {
	font-size: 22px;
	font-weight: 500;
	color: var(--lc-primary-dark);
	margin: 0 0 6px;
}

.lc-verg-winner-savings {
	color: var(--lc-success);
	font-size: 15px;
	margin-bottom: 12px;
}
.lc-verg-winner-savings strong {
	font-size: 17px;
}

.lc-verg-winner-cost {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.lc-verg-cost-total {
	font-size: 28px;
	font-weight: 500;
	color: var(--lc-text);
	font-variant-numeric: tabular-nums;
}
.lc-verg-cost-suffix {
	color: var(--lc-text-tertiary);
	font-size: 15px;
}
.lc-verg-fee {
	color: var(--lc-text-secondary);
	font-size: 12px;
	margin-left: 6px;
}

.lc-verg-winner-adhoc {
	background: #F7F7F5;
	border-color: var(--lc-border);
}

.lc-verg-winner-adhoc h3 {
	color: var(--lc-text);
	font-size: 18px;
}
.lc-verg-winner-adhoc p {
	color: var(--lc-text-secondary);
	font-size: 14px;
	margin: 0;
}

/* Ranking table */

.lc-verg-ranking h3 {
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--lc-text-secondary);
}

.lc-verg-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.lc-verg-table thead th {
	text-align: left;
	color: var(--lc-text-tertiary);
	font-weight: 500;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	padding: 8px 4px;
	border-bottom: 1px solid var(--lc-border);
}

.lc-verg-table tbody td {
	padding: 10px 4px;
	border-bottom: 1px solid var(--lc-border);
	vertical-align: middle;
}

.lc-verg-table tbody tr:last-child td {
	border-bottom: none;
}

.lc-verg-row-winner {
	background: rgba(24,95,165,0.04);
}

.lc-verg-pas-name {
	font-weight: 500;
	color: var(--lc-text);
}

.lc-verg-pas-fee {
	font-size: 11px;
	color: var(--lc-text-tertiary);
	margin-top: 2px;
}

.lc-verg-good { color: var(--lc-success); font-weight: 500; }
.lc-verg-bad { color: var(--lc-danger); }
.lc-verg-neutral { color: var(--lc-text-tertiary); }
.lc-verg-baseline {
	display: inline-block;
	background: var(--lc-bg);
	color: var(--lc-text-tertiary);
	padding: 1px 8px;
	border-radius: 8px;
	font-size: 11px;
	letter-spacing: 0.4px;
}

.lc-btn-small {
	padding: 4px 10px;
	font-size: 12px;
}

.lc-verg-disclaimer {
	margin-top: 16px;
	font-size: 11px;
	color: var(--lc-text-tertiary);
	line-height: 1.5;
}

.lc-verg-disclaimer a {
	color: var(--lc-text-tertiary);
	text-decoration: underline;
}

.lc-feature-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: all 0.15s;
}
.lc-feature-link:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--lc-shadow-md);
	border-color: var(--lc-primary);
}

.lc-feature-cta {
	display: inline-block;
	margin-top: 10px;
	color: var(--lc-primary);
	font-weight: 500;
	font-size: 14px;
}

/* "Only available" checkbox in filterbar */
.lc-filter-checkbox {
	align-self: flex-end;
	padding-bottom: 8px;
}
.lc-checkbox-label {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
	color: #1F2933;
	margin: 0 !important;
}
.lc-checkbox-label input[type="checkbox"] {
	margin: 0;
	width: 16px;
	height: 16px;
	accent-color: #185FA5;
	cursor: pointer;
}
.lc-checkbox-label:hover {
	color: #185FA5;
}

/* ============================================================
   v0.6 — Full-screen app layout, hamburger menu, slide-in list
   ============================================================ */

/* Hamburger button — visible on mobile */
.lc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.lc-hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background: #1F2933;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.lc-hamburger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}
.lc-hamburger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.lc-hamburger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* Full-screen app layout */
.lc-app-fullscreen {
	position: fixed;
	top: 60px; /* below header */
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

/* Map fills the whole space */
.lc-map-fullscreen {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.lc-map-fullscreen #lc-map {
	width: 100%;
	height: 100%;
}

/* Floating filter shell (top-left over the map) */
.lc-filter-shell {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 10;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
	max-width: calc(100vw - 28px);
	overflow: hidden;
}
.lc-filter-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #1F2933;
	white-space: nowrap;
	width: 100%;
	justify-content: space-between;
}
.lc-filter-toggle .dashicons {
	color: #185FA5;
}
.lc-filter-toggle-chev {
	transition: transform 0.25s ease;
	color: #888;
}
.lc-filter-toggle[aria-expanded="true"] .lc-filter-toggle-chev {
	transform: rotate(180deg);
}
.lc-filter-body {
	display: none;
	padding: 12px 14px 14px;
	border-top: 1px solid #eee;
	min-width: 300px;
}
.lc-filter-body.lc-open {
	display: block;
}
.lc-filter-body .lc-filterbar {
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	flex-wrap: wrap;
	gap: 10px;
}

/* On desktop: show filter body inline by default */
@media (min-width: 769px) {
	.lc-filter-body {
		display: block;
	}
	.lc-filter-toggle {
		display: none;
	}
	.lc-filter-shell {
		padding: 4px 6px;
	}
	.lc-filter-body {
		padding: 8px 8px;
		border-top: none;
	}
}

/* Slide-in list panel (right side) */
.lc-list-toggle {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #185FA5;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}
.lc-list-toggle:hover {
	transform: scale(1.05);
}
.lc-list-toggle .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
}
.lc-list-toggle-count {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #E24B4A;
	color: #fff;
	border-radius: 12px;
	min-width: 22px;
	height: 22px;
	font-size: 11px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	border: 2px solid #fff;
}

.lc-list-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	max-width: 100%;
	background: #fff;
	box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
	z-index: 15;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}
.lc-list-panel.lc-list-panel-open {
	transform: translateX(0);
}
.lc-list-panel-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid #eee;
	background: #F2F6F4;
}
.lc-list-panel-head strong {
	display: block;
	font-size: 15px;
}
.lc-list-panel-head .lc-list-sort {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}
.lc-list-close {
	background: transparent;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #888;
	padding: 0;
	margin-top: -2px;
}
.lc-list-close:hover {
	color: #1F2933;
}
.lc-list-panel .lc-list {
	flex: 1;
	overflow-y: auto;
	padding: 8px;
}

/* Hide list toggle button when panel is open (desktop) */
@media (min-width: 1024px) {
	.lc-list-panel-open + .lc-list-toggle,
	body.lc-panel-open .lc-list-toggle {
		display: none;
	}
}

/* Legend stays in bottom-left, above map */
.lc-map-fullscreen .lc-legend {
	position: absolute;
	bottom: 14px;
	left: 14px;
	z-index: 5;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	padding: 8px 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	font-size: 12px;
}
.lc-legend-vat {
	color: #666;
	font-size: 11px;
	border-left: 1px solid #ddd;
	padding-left: 8px;
	margin-left: 4px;
	font-style: italic;
	cursor: help;
}

/* ============================================================
   Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
	.lc-hamburger {
		display: flex;
	}

	.lc-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #185FA5;
		flex-direction: column;
		padding: 12px 0;
		gap: 0;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
	.lc-nav.lc-open {
		display: flex;
	}
	.lc-nav a {
		padding: 12px 20px;
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		font-size: 15px;
	}
	.lc-nav a:hover,
	.lc-nav a:focus {
		color: #fff;
		background: rgba(255, 255, 255, 0.1);
	}
	.lc-nav a:last-child {
		border-bottom: none;
	}

	.lc-header-inner {
		position: relative;
	}

	/* Filter is closed by default on mobile, opens via toggle */
	.lc-filter-body {
		display: none;
	}
	.lc-filter-body.lc-open {
		display: block;
	}

	.lc-filter-shell {
		left: 14px;
		right: 70px; /* leave space for list toggle */
		max-width: none;
	}

	/* List panel takes full width on mobile */
	.lc-list-panel {
		width: 100%;
	}

	/* Legend simpler on mobile */
	.lc-map-fullscreen .lc-legend {
		font-size: 11px;
		padding: 6px 8px;
	}
}

/* Body class adjustments for the fullscreen app pages */
body.page-template-template-kaart,
body.lc-fullscreen-active {
	overflow: hidden;
}
body.page-template-template-kaart .lc-main,
body.lc-fullscreen-active .lc-main {
	margin: 0;
	padding: 0;
	max-width: none;
}

/* ============================================================
   v0.7 — Route modal (Google Maps embed)
   ============================================================ */

.lc-route-modal {
	position: fixed;
	top: 60px;            /* below header */
	left: 0;
	right: 0;
	bottom: 0;            /* full-height; Android wrapper will overlay AdMob banner on top of this */
	background: #fff;
	z-index: 1000;
	display: none;
	flex-direction: column;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.lc-route-modal[data-open="true"] {
	display: flex;
}
.lc-route-modal-head {
	display: flex;
	align-items: stretch;
	background: linear-gradient(135deg, #185FA5 0%, #2179C5 100%);
	flex-shrink: 0;
	min-height: 52px;
}
.lc-route-cta-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 12px;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 600;
}
.lc-route-cta-link:hover,
.lc-route-cta-link:active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff !important;
	text-decoration: none;
}
.lc-route-cta-link span[aria-hidden] {
	font-size: 14px;
}
.lc-route-close {
	background: transparent;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #fff;
	padding: 0 16px;
	flex-shrink: 0;
}
.lc-route-close:hover {
	background: rgba(255, 255, 255, 0.15);
}
.lc-route-status {
	padding: 8px 14px;
	background: #FFF8E1;
	border-bottom: 1px solid #f1e7c5;
	font-size: 12px;
	color: #5F5E5A;
	flex-shrink: 0;
}
.lc-route-status[hidden] {
	display: none;
}
.lc-route-modal iframe {
	flex: 1;
	border: 0;
	width: 100%;
	min-height: 200px;
}

/* Route button inside marker popups */
.lc-popup-route-btn {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 8px 12px;
	background: #185FA5;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}
.lc-popup-route-btn:hover {
	background: #144d83;
}

/* Mobile: shorter button text by hiding "in Google Maps" if needed */
@media (max-width: 380px) {
	.lc-route-cta-link {
		font-size: 15px;
		padding: 12px 8px;
	}
}

/* v0.7.1 — Prominent CTA at top of route modal (REPLACED in v0.7.2 — see above) */
