/* Lawndreams Auth & Dashboard styles (standalone pages). */

.ldn-standalone {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #f4f6f9;
	color: #1d2b3a;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.ldn-standalone * { box-sizing: border-box; }

.ldn-container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1rem; }

/* Shell header / footer */
.ldn-shell-header {
	background: #fff;
	border-bottom: 1px solid #e3e8ef;
	padding: 0.9rem 0;
}
.ldn-shell-header .ldn-container { display: flex; align-items: center; justify-content: space-between; }

.ldn-brand { font-weight: 700; font-size: 1.1rem; color: #10233f; text-decoration: none; }
.ldn-header-title {
	font-weight: 800;
	font-size: 1.15rem;
	color: #10233f;
	line-height: 1.2;
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
}
.ldn-shell-nav a { color: #4b5b6e; text-decoration: none; margin-left: 1.1rem; font-size: 0.95rem; }
.ldn-shell-nav a:hover { color: #16a34a; }

.ldn-shell-footer {
	border-top: 1px solid #e3e8ef;
	background: #fff;
	color: #718096;
	padding: 1rem 0;
	font-size: 0.85rem;
	margin-top: 3rem;
}

.ldn-main { padding: 2.5rem 1rem 1rem; min-height: 60vh; }
.ldn-card-wrap { max-width: 520px; margin: 0 auto; }
.ldn-card-wrap--wide { max-width: 860px; }

.ldn-card {
	background: #fff;
	border: 1px solid #e3e8ef;
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 10px 30px rgba(17, 38, 66, 0.06);
}
.ldn-card h1 { margin: 0 0 0.25rem; font-size: 1.5rem; color: #10233f; }
.ldn-card p.ldn-sub { margin: 0 0 1.25rem; color: #6b7787; }

/* Form */
.ldn-field { margin-bottom: 1rem; }
.ldn-field label { display: block; font-size: 0.9rem; color: #33455c; font-weight: 600; margin-bottom: 0.35rem; }
.ldn-input {
	width: 100%;
	padding: 0.7rem 0.8rem;
	border: 1px solid #cfd8e3;
	border-radius: 8px;
	font-size: 1rem;
	color: #1d2b3a;
	background: #fbfcfe;
	transition: border-color .15s;
}
.ldn-input:focus { outline: none; border-color: #16a34a; background: #fff; }
.ldn-input--error { border-color: #dc2626; background: #fef2f2; }

.ldn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ldn-row--full { grid-template-columns: 1fr; }

.ldn-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: #4b5b6e; }
.ldn-check input { margin-top: 0.2rem; }

.ldn-error { color: #dc2626; font-size: 0.85rem; margin-top: 0.35rem; }
.ldn-field-error { font-size: 0.85rem; color: #dc2626; margin-top: 0.3rem; }

.ldn-btn {
	display: inline-block;
	background: #16a34a;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
	text-decoration: none;
}
.ldn-btn:hover { background: #12853c; }
.ldn-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ldn-btn--secondary { background: #eef2f7; color: #33455c; }
.ldn-btn--secondary:hover { background: #dde5ee; }
.ldn-btn--danger { background: #dc2626; }
.ldn-btn--danger:hover { background: #b91c1c; }
.ldn-btn--block { width: 100%; }

.ldn-alert {
	padding: 0.85rem 1rem;
	border-radius: 8px;
	margin-bottom: 1.1rem;
	font-size: 0.93rem;
}
.ldn-alert--error { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.ldn-alert--success { background: #dcfce7; border: 1px solid #bbf7d0; color: #14532d; }
.ldn-alert--info { background: #e0f2fe; border: 1px solid #bae6fd; color: #075985; }

.ldn-link-row { text-align: center; margin-top: 1rem; font-size: 0.93rem; color: #4b5b6e; }
.ldn-link-row a { color: #16a34a; font-weight: 600; text-decoration: none; }
.ldn-actions { display: flex; gap: 0.75rem; justify-content: space-between; align-items: center; margin-top: 1.25rem; flex-wrap: wrap; }

/* Dashboard bits */
.ldn-dash { display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem; }
.ldn-dash-side { background: #fff; border: 1px solid #e3e8ef; border-radius: 12px; padding: 1rem; align-self: start; }
.ldn-dash-side h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; color: #8593a6; margin: 0 0 0.6rem; }
.ldn-dash-side ul { list-style: none; margin: 0; padding: 0; }
.ldn-dash-side a { display: block; padding: 0.55rem 0.7rem; border-radius: 8px; color: #33455c; text-decoration: none; font-size: 0.95rem; margin-bottom: 0.15rem; }
.ldn-dash-side a:hover, .ldn-dash-side a.ldn-active { background: #effbf3; color: #12853c; }
.ldn-dash-main { background: #fff; border: 1px solid #e3e8ef; border-radius: 12px; padding: 1.5rem; }

.ldn-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.ldn-stat { background: #f7fafc; border: 1px solid #e3e8ef; border-radius: 10px; padding: 1rem; }
.ldn-stat strong { display: block; font-size: 1.4rem; color: #10233f; }
.ldn-stat span { font-size: 0.85rem; color: #6b7787; }

/* Applications admin */
.ldn-app-list { display: grid; gap: 1rem; }
.ldn-app {
	border: 1px solid #e3e8ef; border-radius: 10px; padding: 1.1rem 1.2rem; background: #fff;
	display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; flex-wrap: wrap;
}
.ldn-app .ldn-app-meta { flex: 1 1 320px; }
.ldn-app h3 { margin: 0 0 0.15rem; font-size: 1.05rem; }
.ldn-app .ldn-app-tags { margin: 0.4rem 0; }
.ldn-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.ldn-badge--pending { background: #fef3c7; color: #92400e; }
.ldn-badge--approved { background: #dcfce7; color: #166534; }
.ldn-badge--rejected { background: #fee2e2; color: #991b1b; }
.ldn-app-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }

textarea.ldn-input { resize: vertical; min-height: 90px; }
.ldn-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.ldn-photo--empty { background: #eef2f7; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #8593a6; text-align: center; border: 1px dashed #cbd5e1; box-shadow: none; }
.ldn-photo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }

@media (max-width: 700px) {
	.ldn-dash { grid-template-columns: 1fr; }
	.ldn-row { grid-template-columns: 1fr; }
	.ldn-main { padding: 1.5rem 0.75rem; }
}

/* Provider application: address, map and private verification files. */
.ldn-steps--application { margin: 1.2rem 0 1.35rem; gap: .35rem; }
.ldn-steps--application .ldn-step { min-width: 0; padding: .42rem .48rem; }
.ldn-steps--application .ldn-step-label { overflow: hidden; text-overflow: ellipsis; }
.ldn-address-action { display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: end; }
.ldn-address-action .ldn-field { margin-bottom: 0; }
.ldn-location-btn { white-space: nowrap; height: 42px; }
.ldn-application-map { min-height: 270px; margin-top: .45rem; border: 1px solid #dbe4ed; border-radius: 12px; overflow: hidden; background: #e2e8f0; z-index: 1; }
.ldn-document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.ldn-document-field { border: 1px solid #e2e8f0; border-radius: 12px; padding: .85rem; background: #f8fafc; }
.ldn-document-field label { display: block; min-height: 2.5em; color: #334155; font-size: .84rem; font-weight: 700; margin-bottom: .55rem; }
.ldn-document-field input[type="file"] { width: 100%; max-width: 100%; font-size: .78rem; color: #475569; }
.ldn-document-preview { margin-top: .7rem; min-height: 92px; display: flex; align-items: center; justify-content: center; gap: .45rem; flex-direction: column; color: #64748b; font-size: .76rem; text-align: center; overflow: hidden; }
.ldn-document-preview img { width: 100%; height: 92px; object-fit: cover; border-radius: 8px; border: 1px solid #dbe4ed; }
.ldn-document-preview .dashicons { font-size: 2rem; width: 2rem; height: 2rem; color: #ef4444; }
.ldn-security-note { color: #64748b; font-size: .78rem; margin: .7rem 0 0; text-align: center; }
.ldn-security-note .dashicons { font-size: 14px; width: 14px; height: 14px; vertical-align: -2px; color: #16a34a; }
.ldn-app-document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ldn-box--verification-documents { margin-top: 20px; margin-bottom: 20px; }
.ldn-app-document { border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px; background: #f8fafc; }
.ldn-app-document-head { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; font-size: 12px; }
.ldn-app-document-head a { color: #2563eb; font-weight: 700; text-decoration: none; }
.ldn-app-document img { width: 100%; height: 150px; object-fit: contain; background: #fff; border-radius: 7px; }
.ldn-app-document-pdf { height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: #64748b; font-size: 12px; text-align: center; background: #fff; border-radius: 7px; }
.ldn-app-document-pdf .dashicons { color: #ef4444; font-size: 32px; width: 32px; height: 32px; }

@media (max-width: 760px) {
	.ldn-address-action, .ldn-document-grid, .ldn-app-document-grid { grid-template-columns: 1fr; }
	.ldn-location-btn { width: 100%; }
	.ldn-steps--application .ldn-step-label { display: none; }
	.ldn-steps--application .ldn-step { justify-content: center; }
}

/* Give the provider application more room for the map and document cards. */
.ldn-card-wrap.auth-wide { width: calc(100vw - 2rem); max-width: 1500px; }
.ldn-card--split { width: 100%; max-width: 1500px; max-height: 100vh; height: calc(100vh - 2rem); grid-template-columns: minmax(280px, .55fr) minmax(760px, 1.95fr); }
.ldn-card--split .ldn-split-main { min-height: 0; max-height: 100vh; overflow-x: hidden; overflow-y: auto; }
.ldn-card--split .ldn-split-brand { min-height: 0; max-height: 100vh; overflow: hidden; }

@media (max-width: 900px) {
	.ldn-card--split { grid-template-columns: 1fr; height: auto; max-height: none; }
	.ldn-card--split .ldn-split-main { max-height: none; overflow: visible; }
	.ldn-card--split .ldn-split-brand { max-height: none; }
}

/* Provider application shell: keep the whole page within the viewport. */
.ldn-page-become-a-pro,
body.ldn-page-become-a-pro #page {
	height: 100vh;
	min-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.ldn-page-become-a-pro > header,
.ldn-page-become-a-pro header.header-one {
	flex: 0 0 auto;
}
.ldn-page-become-a-pro .ldn-main,
body.ldn-page-become-a-pro #page > .ldn-main {
	flex: 1 1 auto;
	height: 100vh;
	min-height: 0;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 1rem;
}
.ldn-page-become-a-pro .ldn-card-wrap.auth-wide {
	width: 100%;
	max-width: 1600px;
	height: 100vh;
	max-height: 100vh;
	margin: 0 auto;
}
.ldn-page-become-a-pro .ldn-card--split {
	width: 100%;
	max-width: 1600px;
	height: 100vh;
	max-height: 100vh;
	grid-template-columns: minmax(280px, .5fr) minmax(780px, 2fr);
	overflow: hidden;
}
.ldn-page-become-a-pro .ldn-card--split .ldn-split-main {
	min-height: 0;
	height: 100%;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.ldn-page-become-a-pro .ldn-card--split .ldn-split-brand {
	min-height: 0;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
}
@media (max-width: 900px) {
	.ldn-page-become-a-pro .ldn-main {
		align-items: flex-start;
		overflow-y: auto;
	}
	.ldn-page-become-a-pro .ldn-card-wrap.auth-wide,
	.ldn-page-become-a-pro .ldn-card--split {
		height: auto;
		max-height: none;
	}
	.ldn-page-become-a-pro .ldn-card--split .ldn-split-main,
	.ldn-page-become-a-pro .ldn-card--split .ldn-split-brand {
		height: auto;
		max-height: none;
		overflow: visible;
	}
}

/* Provider dashboard — flat New Service action with no hover treatment or shadow. */
.ldn-page-pro-dashboard .ldn-btn--new-service {
	background: #fff;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
	color: #15803d;
	transition: none;
}
.ldn-page-pro-dashboard .ldn-btn--new-service:hover,
.ldn-page-pro-dashboard .ldn-btn--new-service:active {
	background: #fff;
	border-color: transparent;
	box-shadow: none;
	color: #15803d;
	transform: none;
}
.ldn-page-pro-dashboard .ldn-btn--new-service:focus {
	background: #fff;
	border-color: transparent;
	box-shadow: none;
	color: #15803d;
}
.ldn-page-pro-dashboard .ldn-btn--new-service .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	line-height: 1;
}

/* Provider service wizard — pill-shaped Next/Save actions without hover or shadow. */
.ldn-page-pro-dashboard .ldn-service-wizard-action {
	background: #16a34a;
	border: 0;
	border-radius: 30px;
	box-shadow: none;
	transition: none;
}
.ldn-page-pro-dashboard .ldn-service-wizard-action:hover,
.ldn-page-pro-dashboard .ldn-service-wizard-action:active,
.ldn-page-pro-dashboard .ldn-service-wizard-action:focus {
	background: #16a34a;
	border: 0;
	box-shadow: none;
	transform: none;
}

/* Keep the provider title and step navigation in the normal document flow. */
body.ldn-page-become-a-pro .ldn-card--split .ldn-split-main {
	padding-top: 0;
}

body.ldn-page-become-a-pro .ldn-provider-form-header {
	position: static;
	top: auto;
	z-index: auto;
	background: #fff;
	padding: 2.5rem 0 .75rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #eef1f5;
}

@media (max-width: 900px) {
	body.ldn-page-become-a-pro #page {
		height: auto;
		min-height: 100vh;
		max-height: none;
		overflow: visible;
	}
	body.ldn-page-become-a-pro #page > .ldn-main {
		overflow: visible;
	}
}

/* Login page viewport shell: keep the page within one viewport. */
body.ldn-page-login #page {
	height: 100vh;
	min-height: 0;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
body.ldn-page-login #page > header,
body.ldn-page-login #page > .header-one {
	flex: 0 0 auto;
}
	body.ldn-page-login #page > .ldn-main {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
body.ldn-page-login #page > footer {
	display: none !important;
}
body.ldn-page-login .ldn-card-wrap.auth-wide {
	width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0 auto;
	display: block;
}
body.ldn-page-login .ldn-card--split {
	width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0;
	overflow: hidden;
}
body.ldn-page-login .ldn-card--split .ldn-split-main {
	min-height: 0;
	height: auto;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
body.ldn-page-login .ldn-card--split .ldn-split-brand {
	min-height: 0;
	height: auto;
	max-height: 100%;
	overflow: hidden;
}
@media (max-width: 900px) {
	body.ldn-page-login #page > .ldn-main {
	align-items: flex-start;
	overflow-y: auto;
	}
	body.ldn-page-login .ldn-card-wrap.auth-wide,
	body.ldn-page-login .ldn-card--split {
	height: auto;
	max-height: none;
	}
	body.ldn-page-login .ldn-card--split .ldn-split-main,
	body.ldn-page-login .ldn-card--split .ldn-split-brand {
	height: auto;
	max-height: none;
	overflow: visible;
	}
}

/* Customer registration uses the same bounded, content-height auth layout. */
body.ldn-page-register #page {
	height: 100vh;
	min-height: 0;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
body.ldn-page-register #page > header,
body.ldn-page-register #page > .header-one {
	flex: 0 0 auto;
}
body.ldn-page-register #page > .ldn-main {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
body.ldn-page-register #page > footer {
	display: none !important;
}
body.ldn-page-register .ldn-card-wrap.auth-wide {
	width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0 auto;
	display: block;
}
body.ldn-page-register .ldn-card--split {
	width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0;
	overflow: hidden;
}
body.ldn-page-register .ldn-card--split .ldn-split-main {
	min-height: 0;
	height: auto;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
body.ldn-page-register .ldn-card--split .ldn-split-brand {
	min-height: 0;
	height: auto;
	max-height: 100%;
	overflow: hidden;
}
@media (max-width: 900px) {
	body.ldn-page-register #page > .ldn-main {
	align-items: flex-start;
	overflow-y: auto;
	}
	body.ldn-page-register .ldn-card-wrap.auth-wide,
	body.ldn-page-register .ldn-card--split {
	height: auto;
	max-height: none;
	}
	body.ldn-page-register .ldn-card--split .ldn-split-main,
	body.ldn-page-register .ldn-card--split .ldn-split-brand {
	height: auto;
	max-height: none;
	overflow: visible;
	}
}

/* The parent theme wraps the page in #page; lock that real shell to the viewport. */
body.ldn-page-become-a-pro #page {
	height: 100vh;
	min-height: 0;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
body.ldn-page-become-a-pro #page > header,
body.ldn-page-become-a-pro #page > .header-one {
	flex: 0 0 auto;
}
body.ldn-page-become-a-pro #page > .ldn-main {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
	max-height: none;
}
body.ldn-page-become-a-pro #page > footer {
	display: none !important;
}

/* Final provider form width balance. */
body.ldn-page-become-a-pro .ldn-card-wrap.auth-wide,
body.ldn-page-become-a-pro .ldn-card--split {
	max-width: 1300px;
}
body.ldn-page-become-a-pro .ldn-card--split {
	grid-template-columns: minmax(250px, .68fr) minmax(680px, 1.72fr);
}
body.ldn-page-become-a-pro .ldn-address-action {
	display: grid;
	grid-template-columns: 1fr;
	gap: .35rem;
	align-items: stretch;
}
body.ldn-page-become-a-pro .ldn-address-action .ldn-field {
	margin-bottom: 0;
}
body.ldn-page-become-a-pro .ldn-location-btn {
	width: 100%;
	justify-content: center;
}
body.ldn-page-become-a-pro .ldn-location-action {
	margin-top: .15rem;
	margin-bottom: .8rem;
}
body.ldn-page-become-a-pro .ldn-document-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.ldn-page-become-a-pro .ldn-document-grid .ldn-document-field:nth-child(3) {
	grid-column: 1;
}

.ldn-noscript { display: block; padding: 1rem; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; border-radius: 8px; margin-bottom: 1rem; }

.ldn-muted { color: #8593a6; }
.ldn-center { text-align: center; }

.ldn-section-title { font-size: 1.05rem; margin: 1.5rem 0 0.75rem; color: #10233f; }
.ldn-section-title:first-child { margin-top: 0; }
.ldn-section-title.ldn-section-title--mt { margin-top: 3.5rem; }

.ldn-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.45rem; }
.ldn-service-grid .ldn-check { background: #f8fafc; border: 1px solid #e3e8ef; border-radius: 8px; padding: 0.55rem 0.7rem; cursor: pointer; }
.ldn-service-grid .ldn-check:hover { border-color: #16a34a; background: #f0fdf4; }

.ldn-dash-main dl { display: grid; grid-template-columns: 120px 1fr; gap: 0.35rem 1rem; margin: 0.5rem 0; }
.ldn-dash-main dt { font-weight: 600; color: #33455c; }
.ldn-dash-main dd { margin: 0; color: #1d2b3a; }
.ldn-label-inline { display: block; font-size: 0.9rem; color: #33455c; font-weight: 600; margin-bottom: 0.35rem; }

.ldn-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.ldn-tab {
	background: #eef2f7; color: #33455c; border: 1px solid transparent; border-radius: 999px;
	padding: 0.45rem 1rem; font-size: 0.9rem; font-weight: 600; cursor: pointer;
}
.ldn-tab:hover { background: #e2e8f0; }
.ldn-tab.ldn-active { background: #16a34a; color: #fff; }
.ldn-tab .dashicons { font-size: 15px; width: 15px; height: 15px; line-height: 15px; vertical-align: -2px; margin-right: 0.3rem; }
.ldn-tabs--jobs .ldn-tab { border-radius: 10px; }
.ldn-small { font-size: 0.8rem; margin-top: 0.4rem; }
.ldn-reject-box { margin-top: 0.75rem; padding: 0.75rem; border: 1px solid #fecaca; background: #fef2f2; border-radius: 8px; }
.ldn-reject-box .ldn-actions { margin-top: 0.6rem; }

/* ==========================================================================
   Modern auth pages (login / register / forgot) — layered on top of the
   base styles above. Dashboards keep the classic look.
   ========================================================================== */

.ldn-standalone {
	background:
		radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.14), transparent 42%),
		radial-gradient(circle at 88% 90%, rgba(22, 163, 74, 0.14), transparent 42%),
		linear-gradient(180deg, #f6f9fc, #eef2f7);
	background-attachment: fixed;
}

.ldn-shell-header {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
	position: sticky;
	top: 0;
	z-index: 20;
}

/* Auth card — centered, floating, with a brand accent bar. */
.ldn-card-wrap { max-width: 440px; margin: clamp(2rem, 7vh, 5rem) auto; position: relative; }
.ldn-card-wrap--wide { max-width: 860px; }

.ldn-card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 18px;
	padding: 2.25rem 2rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), 0 4px 14px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}
.ldn-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, #38bdf8, #2563eb, #16a34a);
}
.ldn-card h1 { margin: 0.4rem 0 0.2rem; font-size: 1.6rem; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; }
.ldn-card p.ldn-sub { margin: 0 0 1.5rem; color: #64748b; font-size: 0.92rem; }

/* Form fields — soft, with focus ring. */
.ldn-field { margin-bottom: 1.05rem; }
.ldn-field label { display: block; font-size: 0.85rem; color: #334155; font-weight: 600; margin-bottom: 0.35rem; }
.ldn-input {
	width: 100%;
	padding: 0.72rem 0.9rem;
	border: 0 !important;
	border-radius: 10px;
	font-size: 0.95rem;
	color: #0f172a;
	background: #f1f5f9 !important;
	box-shadow: inset 0 0 0 1px transparent;
	transition: box-shadow 0.15s ease, background 0.15s ease;
}
.ldn-input,
.ldn-input:focus,
.ldn-input:hover,
.ldn-card .ldn-input,
.ldn-card .ldn-input:focus,
.ldn-card .ldn-input:hover,
#ldn-login-root .ldn-input,
#ldn-login-root .ldn-input:focus,
#ldn-login-root .ldn-input:hover {
	outline: none !important;
	border: 0 !important;
	box-shadow: none !important;
	background-color: #f1f5f9 !important;
}
.ldn-input:focus {
	background-color: #f1f5f9 !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
}
.ldn-input--error {
	background: #fef2f2;
	box-shadow: inset 0 0 0 1px #fca5a5;
}
.ldn-input--error:focus {
	box-shadow: inset 0 0 0 1px #fca5a5;
}

/* Primary button — gradient + subtle lift. */
.ldn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #16a34a, #15803d);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 0.75rem 1.3rem;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
}
.ldn-btn:hover { background: linear-gradient(135deg, #15803d, #166534); box-shadow: 0 10px 22px rgba(22, 163, 74, 0.34); }
.ldn-btn:active { transform: translateY(1px); }
.ldn-btn:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }
.ldn-btn--secondary { background: #eef2f7; color: #33455c; box-shadow: none; }
.ldn-btn--secondary:hover { background: #dde5ee; color: #0f172a; box-shadow: none; }
.ldn-btn--danger { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25); }
.ldn-btn--danger:hover { background: linear-gradient(135deg, #dc2626, #b91c1c); box-shadow: 0 10px 22px rgba(220, 38, 38, 0.3); }
.ldn-btn--block { width: 100%; }

.ldn-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: #475569; }
.ldn-check input {
	width: 1.05rem;
	height: 1.05rem;
	margin-top: 0.1rem;
	accent-color: #16a34a;
}

/* Links below the form */
.ldn-link-row { text-align: center; margin-top: 1.05rem; font-size: 0.9rem; color: #64748b; }
.ldn-link-row a { color: #16a34a; font-weight: 700; text-decoration: none; }
.ldn-link-row a:hover { text-decoration: underline; }
.ldn-actions { display: flex; gap: 0.75rem; justify-content: space-between; align-items: center; margin-top: 1.4rem; flex-wrap: wrap; }
.ldn-panel-head .ldn-actions { margin-top: 0; }

.ldn-error { color: #ef4444; font-size: 0.82rem; margin-top: 0.35rem; }
.ldn-field-error { font-size: 0.82rem; color: #ef4444; margin-top: 0.3rem; }

/* Alerts */
.ldn-alert { padding: 0.8rem 1rem; border-radius: 10px; margin-bottom: 1.1rem; font-size: 0.9rem; }
.ldn-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.ldn-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.ldn-alert--info { background: #e0f2fe; border: 1px solid #bae6fd; color: #075985; }

.ldn-noscript { display: block; padding: 1rem; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; border-radius: 10px; margin-bottom: 1rem; }

.ldn-coming-soon {
	font-size: 1.1rem;
	font-weight: 700;
	color: #16a34a;
	margin: 1.5rem 0;
}

/* ==========================================================================
   Split-layout login (brand panel + form) 
   ========================================================================== */

.ldn-card-wrap.auth-wide { max-width: 880px; }

.ldn-card--split {
	display: grid;
	grid-template-columns: 0.95fr 1.15fr;
	overflow: hidden;
	padding: 0;
	max-width: 880px;
	margin: 0 auto;
	border-radius: 20px;
}
.ldn-card--split::before { display: none; }

.ldn-split-brand {
	background: linear-gradient(rgba(15, 79, 42, 0.72), rgba(6, 53, 33, 0.82)),
		url('https://lawndreams.com/wp-content/uploads/2026/08/magnific_a-sparkling-clean-living-_SyO4OhyUb8.webp') center / cover no-repeat;
	color: #fff;
	padding: 2.5rem 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1.1rem;
	position: relative;
	overflow: hidden;
}
.ldn-split-brand::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(16, 78, 42, 0.28), rgba(8, 55, 31, 0.45));
	pointer-events: none;
}
.ldn-logo {
	width: 110px;
	height: auto;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.ldn-logo--text {
	width: auto;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 1;
}
.ldn-split-brand h2 {
	margin: 0.4rem 0 0;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	position: relative;
	z-index: 1;
}
.ldn-split-brand p {
	margin: 0;
	font-size: 0.92rem;
	color: #e2e8f0;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}
.ldn-split-brand ul {
	list-style: none;
	margin: 0.8rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}
.ldn-split-brand li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: #e2e8f0;
}
.ldn-check-circle {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.22);
	color: #4ade80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
}

.ldn-split-main {
	padding: 2.5rem 2.25rem;
	display: flex;
	flex-direction: column;
}
.ldn-split-title h1 { margin: 0.2rem 0 0.2rem; font-size: 1.5rem; font-weight: 800; color: #0f172a; }
.ldn-card--split .ldn-sub { margin: 0; }
.ldn-login-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem;
	padding: 0.3rem;
	margin: 1.25rem 0 1.35rem;
	background: #f1f5f9;
	border-radius: 12px;
}
.ldn-login-tab {
	border: 0;
	border-radius: 9px;
	padding: 0.7rem 0.65rem;
	background: transparent;
	color: #64748b;
	font: inherit;
	font-size: 0.86rem;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.ldn-login-tab:hover { color: #15803d; }
.ldn-login-tab.is-active {
	background: #fff;
	color: #15803d;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}
.ldn-login-tab:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.25); outline-offset: 1px; }
.ldn-login-form-panel {
	min-height: 260px;
	animation: ldn-login-form-enter 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes ldn-login-form-enter {
	from { opacity: 0; transform: translate3d(28px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.ldn-login-form-panel { animation: none; }
}
.ldn-card--split .ldn-split-main form .ldn-field { margin-bottom: 1.1rem; }
.ldn-card--split .ldn-split-main .ldn-btn--block { margin-top: 0.25rem; }
.ldn-split-main form { display: flex; flex-direction: column; }
.ldn-row-keep {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.35rem;
	font-size: 0.88rem;
}
.ldn-row-keep .ldn-check { margin: 0; }
.ldn-forgot { color: #16a34a; font-weight: 700; text-decoration: none; font-size: 0.88rem; }
.ldn-forgot:hover { text-decoration: underline; }

.ldn-split-footer {
	margin-top: 1.05rem;
	text-align: center;
	font-size: 0.9rem;
	color: #64748b;
	border-top: 1px solid #eef1f5;
	padding-top: 1rem;
}
.ldn-split-footer + .ldn-split-footer { margin-top: 0.7rem; }
.ldn-split-footer a { color: #16a34a; font-weight: 700; text-decoration: none; }
.ldn-split-footer a:hover { text-decoration: underline; }

/* Service chips */
.ldn-step-note {
	font-size: 0.86rem;
	color: #64748b;
	margin-bottom: 0.9rem;
}
.ldn-chip input { display: none; }
.ldn-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: #f1f5f9;
	color: #334155;
	font-size: 0.86rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.ldn-chip:hover { background: #e2e8f0; }
.ldn-chip:has(input:checked) {
	background: #dcfce7;
	color: #15803d;
}
.ldn-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.ldn-chip.is-on { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.ldn-steps--sm .ldn-step { padding: 0.3rem 0.45rem; }
.ldn-steps--sm .ldn-step-num { width: 19px; height: 19px; font-size: 0.7rem; }
.ldn-steps--sm .ldn-step-label { font-size: 0.7rem; }
.ldn-service-grid { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.1rem; }

.ldn-step-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1.4rem;
}
.ldn-step-actions .ldn-btn { max-width: 210px; }

.ldn-review-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid #eef1f5;
	font-size: 0.9rem;
}
.ldn-review-label { color: #64748b; font-weight: 600; flex-shrink: 0; }
.ldn-review-value { color: #0f172a; text-align: right; }
.ldn-review-about {
	max-height: 180px;
	overflow-y: auto;
	text-align: left;
	white-space: pre-wrap;
	word-break: break-word;
}

/* Success modal */
.ldn-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(15, 23, 42, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	overflow-y: auto;
}
.ldn-modal-box {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	max-width: 380px;
	width: 100%;
	text-align: center;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
	margin: auto;
}
.ldn-modal-check {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.1rem;
	border-radius: 50%;
	background: #dcfce7;
	color: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 800;
}
.ldn-modal-box h2 {
	margin: 0 0 0.5rem;
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
}
.ldn-modal-box p {
	margin: 0 0 1.5rem;
	font-size: 0.92rem;
	color: #64748b;
	line-height: 1.6;
}
.ldn-modal-box--booking {
	max-width: 720px;
	text-align: left;
	padding: 1.5rem 1.6rem;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	overscroll-behavior: contain;
}
.ldn-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}
.ldn-modal-head strong { font-size: 1.15rem; color: #0f172a; font-weight: 800; }
.ldn-modal-close {
	border: 0;
	background: #f1f5f9;
	color: #475569;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: background .15s;
}
.ldn-modal-close:hover { background: #e2e8f0; }
.ldn-modal-box--review { max-width: 460px; text-align: left; }
.ldn-modal-box--review .ldn-center .ldn-rate-picker { margin-top: 0.2rem; }
.ldn-rate-picker .ldn-stars { gap: 8px; }
.ldn-rate-picker .ldn-star { font-size: 2.3rem; cursor: pointer; transition: transform .12s ease, color .15s ease; }
.ldn-rate-picker .ldn-star:not(.is-on) { color: #ececf0; }
.ldn-rate-picker .ldn-star:hover { transform: scale(1.25); }
.ldn-rate-picker .ldn-star.is-on { color: #f59e0b; }
.ldn-field-row { display: flex; align-items: baseline; justify-content: space-between; }
.ldn-rv-count { color: #94a3b8; font-size: 0.78rem; font-weight: 400; }

.ldn-steps {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1.2rem;
}
.ldn-step {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex: 1;
	padding: 0.45rem 0.6rem;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #eef2f7;
}
.ldn-step-num {
	width: 22px;
	height: 22px;
	flex: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 800;
	background: #e2e8f0;
	color: #64748b;
}
.ldn-step-label { font-size: 0.78rem; font-weight: 600; color: #64748b; white-space: nowrap; }
.ldn-step.is-current { background: #f0fdf4; border-color: #bbf7d0; }
.ldn-step.is-current .ldn-step-num { background: #16a34a; color: #fff; }
.ldn-step.is-current .ldn-step-label { color: #166534; }
.ldn-step.is-done .ldn-step-num { background: #dcfce7; color: #16a34a; }

.ldn-bok-step .ldn-step-head {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #94a3b8;
	margin: 0 0 0.75rem;
}
.ldn-bok-step .ldn-step-head + .ldn-row { margin-top: 0; }
.ldn-bok-step .ldn-step-head:not(:first-child) { margin-top: 1.1rem; }

.ldn-booking-loc {
	margin: -0.25rem 0 1rem;
	padding: 0.7rem 0.85rem;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	background: #f8fafc;
}
.ldn-booking-loc--hint {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #64748b;
}
.ldn-booking-loc--hint .dashicons { color: #16a34a; }
.ldn-booking-loc small { display: block; font-size: 0.82rem; color: #64748b; line-height: 1.5; }
.ldn-booking-loc .ldn-text-warn { color: #d97706; }
.ldn-bok-area-hint { color: #16a34a; display: block; margin: -0.15rem 0 0.75rem; }
.ldn-booking-map-wrap { display: block; }
.ldn-booking-map {
	width: 100%;
	height: 190px;
	border-radius: 10px;
	overflow: hidden;
	z-index: 0;
}
.ldn-booking-map-wrap .ldn-booking-map { margin-bottom: 0.4rem; }
.ldn-booking-map-note {
	display: block;
	margin-top: 0.15rem;
	color: #475569;
	font-size: 0.78rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---- Bigger booking form ---- */
.ldn-modal-box--booking { max-width: 720px; padding: 1.9rem 2.1rem; }
.ldn-modal-box--booking .ldn-modal-head { margin-bottom: 1.3rem; }
.ldn-modal-box--booking .ldn-modal-head strong { font-size: 1.3rem; }
.ldn-modal-box--booking .ldn-steps { gap: 0.55rem; margin-bottom: 1.5rem; }
.ldn-modal-box--booking .ldn-step { padding: 0.62rem 0.78rem; }
.ldn-modal-box--booking .ldn-step-num { width: 28px; height: 28px; font-size: 0.85rem; }
.ldn-modal-box--booking .ldn-step-label { font-size: 0.9rem; }
.ldn-modal-box--booking .ldn-field { margin-bottom: 1.2rem; }
.ldn-modal-box--booking .ldn-field label { font-size: 0.93rem; margin-bottom: 0.45rem; }
.ldn-modal-box--booking .ldn-input {
	font-size: 1.02rem;
	padding: 0.72rem 0.95rem;
	border-radius: 11px;
}
.ldn-modal-box--booking textarea.ldn-input { min-height: 100px; }
.ldn-modal-box--booking .ldn-bok-step .ldn-step-head { font-size: 0.88rem; }
.ldn-modal-box--booking .ldn-row { gap: 1.15rem; }
.ldn-modal-box--booking .ldn-pkg-cards { gap: 0.7rem; }
.ldn-modal-box--booking .ldn-pkg-card { padding: 1rem 1.05rem; }
.ldn-modal-box--booking .ldn-pkg-name { font-size: 1rem; }
.ldn-modal-box--booking .ldn-pkg-dur { font-size: 0.8rem; }
.ldn-modal-box--booking .ldn-pkg-price { font-size: 1.05rem; }
.ldn-modal-box--booking .ldn-time-slots { gap: 0.5rem; }
.ldn-modal-box--booking .ldn-time-slot { padding: 0.6rem 0.5rem; font-size: 0.9rem; border-radius: 11px; }
.ldn-modal-box--booking .ldn-booking-loc { padding: 0.9rem 1.05rem; }
.ldn-modal-box--booking .ldn-booking-loc small { font-size: 0.88rem; }
.ldn-modal-box--booking .ldn-booking-loc--hint .dashicons { font-size: 20px; width: 20px; height: 20px; }
.ldn-modal-box--booking .ldn-booking-map { height: 230px; }
.ldn-modal-box--booking .ldn-actions { margin-top: 0.2rem; }
.ldn-modal-box--booking .ldn-btn { padding: 0.68rem 1.5rem; font-size: 0.98rem; }
.ldn-modal-box--booking .ldn-summary dt { font-size: 0.85rem; }
.ldn-modal-box--booking .ldn-summary dd { font-size: 1rem; }
.ldn-modal-box--booking .ldn-booking-total { padding: 0.95rem 1.15rem; }
.ldn-modal-box--booking .ldn-booking-total strong { font-size: 1.35rem; }

.ldn-actions--split { justify-content: space-between; }
.ldn-err-line {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: 10px;
	padding: 0.6rem 0.8rem;
	margin-bottom: 0.9rem;
}
.ldn-actions-right { display: flex; align-items: center; gap: 0.5rem; }

@media (max-width: 760px) {
	.ldn-card--split { grid-template-columns: 1fr; }
	.ldn-split-brand { padding: 1.5rem; }
	.ldn-split-brand ul { grid-template-columns: 1fr; }
	.ldn-modal-box--booking .ldn-review-grid { grid-template-columns: 1fr; }
	.ldn-modal-box--booking .ldn-review-item--wide { grid-column: auto; }
}

/* ==========================================================================
   Dashboards (my-account / pro-dashboard) — sidebar + main workspace.
   ========================================================================== */

.ldn-dash {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 1.5rem;
	width: 100%;
}

/* ---- Sidebar ---- */
.ldn-dash-side {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.1rem;
	position: sticky;
	top: 84px;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.ldn-dash-side-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.15rem 0.25rem 0.75rem;
	border-bottom: 1px solid #eef1f5;
	margin-bottom: 20px;
}
.ldn-dash-greet {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ldn-dash-user {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}
.ldn-dash-avatar {
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #16a34a, #0d9488);
	color: #fff;
	font-weight: 800;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ldn-dash-avatar--img { object-fit: cover; background: #eef2f7; }
.ldn-dash-user-info { min-width: 0; }
.ldn-dash-user-info strong {
	display: block;
	font-size: 0.95rem;
	color: #0f172a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ldn-dash-role {
	display: inline-block;
	margin-top: 0.25rem;
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #15803d;
	background: #dcfce7;
	padding: 0.12rem 0.5rem;
	border-radius: 999px;
}

/* ---- Welcome hero ---- */
.ldn-dash-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #16a34a 0%, #0d9488 55%, #2563eb 130%);
	color: #fff;
	border-radius: 16px;
	padding: 1.7rem 1.8rem;
	margin-bottom: 1.5rem;
}
.ldn-dash-hero::after {
	content: '';
	position: absolute;
	right: -70px;
	top: -70px;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}
.ldn-dash-hero h2 { margin: 0 0 0.3rem; font-size: 1.5rem; color: #fff; letter-spacing: -0.02em; }
.ldn-dash-main .ldn-dash-hero h2 { margin: 0 0 0.3rem; color: #fff; }
.ldn-dash-hero p { margin: 0 0 1.15rem; color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; max-width: 560px; line-height: 1.55; }
.ldn-dash-hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; position: relative; z-index: 1; }
.ldn-dash-hero .ldn-btn--white { background: #fff; color: #0f172a; }
.ldn-dash-hero .ldn-btn--white:hover { background: #f0fdf4; }
.ldn-dash-hero .ldn-btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.4); }
.ldn-dash-hero .ldn-btn--ghost:hover { background: rgba(255, 255, 255, 0.22); }

/* ---- Next booking spotlight ---- */
.ldn-next-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.3rem;
	background: #fff;
	border: 1px solid #bbf7d0;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
	margin-bottom: 1.5rem;
}
.ldn-next-card--empty { border-color: #e2e8f0; }
.ldn-next-card-icon {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 12px;
	background: #dcfce7;
	color: #16a34a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
}
.ldn-next-card--empty .ldn-next-card-icon { background: #eef2f7; color: #64748b; }
.ldn-next-card-body { flex: 1; min-width: 0; }
.ldn-next-card-body strong { display: block; font-size: 1.05rem; color: #0f172a; }
.ldn-next-card-body small { display: block; color: #64748b; font-size: 0.85rem; margin-top: 0.15rem; }

button.ldn-card--kpi { width: 100%; text-align: left; font: inherit; }

/* ---- Browse filters ---- */
.ldn-browse-top { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.ldn-search {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.6rem 0.9rem;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.ldn-search:focus-within { border-color: #86efac; box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1); }
.ldn-search .dashicons { color: #94a3b8; }
.ldn-search input { border: 0; outline: none; font-size: 0.92rem; flex: 1; background: transparent; color: #0f172a; }
.ldn-filter-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ldn-filter-chip {
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s;
}
.ldn-filter-chip:hover { border-color: #86efac; color: #15803d; }
.ldn-filter-chip.is-active { background: #16a34a; border-color: #16a34a; color: #fff; }

.ldn-notif-wrap { position: relative; }

.ldn-notif-bell {
	width: 38px;
	height: 38px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	color: #475569;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	flex-shrink: 0;
	transition: background .15s, color .15s;
}
.ldn-notif-bell:hover { background: #f0fdf4; color: #15803d; }
.ldn-notif-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ef4444;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 19px;
	text-align: center;
	box-shadow: 0 0 0 2px #fff;
}

.ldn-notif-panel {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 40;
	width: 320px;
	max-height: 420px;
	overflow: auto;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
	padding: 0.6rem;
	margin-top: 0.5rem;
}
.ldn-notif-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.65rem 0.65rem;
	border-bottom: 1px solid #eef1f5;
	font-size: 0.92rem;
	color: #0f172a;
}
.ldn-link-btn {
	background: none;
	border: 0;
	color: #16a34a;
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
}
.ldn-link-btn:hover { text-decoration: underline; }
.ldn-notif {
	padding: 0.65rem 0.7rem;
	border-radius: 10px;
	background: #f8fafc;
	margin-top: 0.5rem;
}
.ldn-notif.is-unread { background: #f0fdf4; border: 1px solid #bbf7d0; }
.ldn-notif strong { display: block; font-size: 0.86rem; color: #0f172a; }
.ldn-notif p { margin: 0.15rem 0 0; font-size: 0.8rem; color: #64748b; }
.ldn-notif small { font-size: 0.72rem; color: #94a3b8; }

.ldn-dash-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.ldn-dash-nav-btn {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	text-align: left;
	padding: 0.6rem 0.75rem;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #475569;
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.ldn-dash-nav-btn:hover { background: #f1f5f9; color: #0f172a; }
.ldn-dash-nav-btn.is-active { background: #dcfce7; color: #15803d; }
.ldn-dash-nav-btn .dashicons { font-size: 1.15rem; width: 1.15rem; height: 1.15rem; }

.ldn-dash-side-foot { margin-top: auto; padding-top: 0.4rem; border-top: 1px solid #eef1f5; }

/* ---- Main ---- */
.ldn-dash-main {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.75rem;
	min-width: 0;
	min-height: 100vh;
	margin-right: 20px;
}

/* Hide scrollbars on the dashboard (window + inner panels) but keep scrolling. */
.ldn-page-my-account,
.ldn-page-pro-dashboard,
.ldn-page-my-account *,
.ldn-page-pro-dashboard * {
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.ldn-page-my-account::-webkit-scrollbar,
.ldn-page-pro-dashboard::-webkit-scrollbar,
.ldn-page-my-account *::-webkit-scrollbar,
.ldn-page-pro-dashboard *::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

/* ---- Stat cards ---- */
.ldn-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.ldn-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ldn-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ldn-dash-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}
.ldn-dash-toolbar-title h2 { margin: 0; font-size: 1.4rem; color: #0f172a; }
.ldn-dash-toolbar-title p { margin: 0.15rem 0 0; }
.ldn-dash-toolbar-actions { display: flex; align-items: center; gap: 0.6rem; }
.ldn-dash-month {
	width: auto;
	min-width: 150px;
	padding: 0.5rem 2rem 0.5rem 0.85rem;
	font-weight: 600;
	cursor: pointer;
}

.ldn-dash .ldn-card,
.ldn-dash-main .ldn-card {
	position: relative;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 1.25rem 1.3rem;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.ldn-dash .ldn-card .dashicons,
.ldn-dash-main .ldn-card .dashicons { margin-bottom: 0.4rem; }
.ldn-dash .ldn-card strong,
.ldn-dash-main .ldn-card strong {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
}
.ldn-dash .ldn-card span,
.ldn-dash-main .ldn-card span {
	font-size: 0.85rem;
	color: #64748b;
	font-weight: 600;
}
.ldn-dash .ldn-card small,
.ldn-dash-main .ldn-card small {
	font-size: 0.75rem;
	color: #94a3b8;
}

.ldn-card--clickable { cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s; }
.ldn-card--clickable:hover { transform: translateY(-2px); border-color: #bbf7d0; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09); }
.ldn-app-list--compact .ldn-app { align-items: center; }

/* ---- Panels ---- */
.ldn-panel {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
}
.ldn-panel--pad { padding: 1.35rem 1.4rem; }
.ldn-dash-main .ldn-panel + .ldn-panel,
.ldn-grid--two .ldn-panel { margin-bottom: 0; }
.ldn-grid--two .ldn-panel + .ldn-panel { margin-bottom: 0; }
.ldn-grid--two { margin-bottom: 1.5rem; }
.ldn-grid--two:last-child { margin-bottom: 0; }
.ldn-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.ldn-panel-head strong { font-size: 1.05rem; color: #0f172a; font-weight: 800; }
.ldn-panel-head--back { justify-content: flex-start; gap: 0.65rem; }
.ldn-btn--back {
	background: #eef2f7;
	color: #33455c;
	box-shadow: none;
	padding: 0.45rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 10px;
	flex: none;
}
.ldn-btn--back:hover { background: #dde5ee; color: #0f172a; box-shadow: none; }
.ldn-btn--back .dashicons { font-size: 16px; width: 16px; height: 16px; }
.ldn-panel-title { display: flex; align-items: center; gap: 0.6rem; }
.ldn-panel-ico {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ldn-panel-ico .dashicons { font-size: 18px; width: 18px; height: 18px; }
.ldn-panel-ico .dashicons {
	line-height: 1;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ldn-panel-ico--green { background: #dcfce7; color: #16a34a; }
.ldn-panel-ico--blue { background: #dbeafe; color: #2563eb; }
.ldn-panel-ico--amber { background: #ffedd5; color: #d97706; }
.ldn-panel-ico--purple { background: #ede9fe; color: #7c3aed; }

.ldn-card--kpi {
	gap: 0.35rem;
	transition: transform .15s, box-shadow .15s;
}
.ldn-card--kpi:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09); }

/* ---- Progress ---- */
.ldn-progress {
	height: 10px;
	border-radius: 999px;
	background: #eef2f7;
	overflow: hidden;
	margin: 0.6rem 0 0.75rem;
}
.ldn-progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #22c55e, #16a34a);
	transition: width .3s ease;
}
.ldn-progress-text { font-size: 0.82rem; font-weight: 700; color: #16a34a; }

/* ---- Profile steps ---- */
.ldn-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 1rem 0 1.4rem;
}
.ldn-step {
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #64748b;
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s, color .15s, border-color .15s;
}
.ldn-step:hover { border-color: #16a34a; color: #15803d; }
.ldn-step.is-active { background: #16a34a; border-color: #16a34a; color: #fff; }
.ldn-step-body { animation: ldnFade .2s ease; }
@keyframes ldnFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---- Earnings chart ---- */
.ldn-chart-panel .ldn-panel-head { margin-bottom: 1.2rem; }
.ldn-bars {
	display: flex;
	align-items: flex-end;
	gap: 0.8rem;
	height: 220px;
	padding-top: 1rem;
}
.ldn-bar {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	gap: 0.35rem;
	min-width: 0;
}
.ldn-bar-fill {
	width: 100%;
	max-width: 42px;
	border-radius: 8px 8px 4px 4px;
	background: linear-gradient(180deg, #4ade80, #16a34a);
	min-height: 6px;
	transition: height .3s ease;
}
.ldn-bar small { font-size: 0.72rem; color: #64748b; font-weight: 600; }
.ldn-bar em { font-size: 0.68rem; color: #94a3b8; font-style: normal; font-weight: 700; }

/* ---- Lists (jobs / services / orders) ---- */
.ldn-app-list { display: grid; gap: 0.85rem; }
.ldn-app {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.05rem 1.15rem;
	background: #fff;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	flex-wrap: wrap;
	transition: border-color .15s, box-shadow .15s;
}
.ldn-app:hover { border-color: #cbd5e1; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05); }
.ldn-app .ldn-app-meta { flex: 1 1 320px; min-width: 0; }
.ldn-app h3 { margin: 0 0 0.2rem; font-size: 1.02rem; color: #0f172a; }
.ldn-app-top { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.ldn-app-top h3 { margin-right: auto; }
.ldn-app-top h2 { margin: 0; margin-right: auto; font-size: 1.15rem; color: #0f172a; }
.ldn-app-actions { display: flex; gap: 0.55rem; align-items: center; flex-wrap: wrap; }
.ldn-app--orders { display: block; padding: 1.15rem 1.25rem; }
.ldn-app--orders .ldn-app-top { margin-bottom: 0.1rem; }
.ldn-bok-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.6rem 1.1rem;
	margin: 0.65rem 0 0;
}
.ldn-job-card {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	transition: border-color .15s, box-shadow .15s;
}
.ldn-job-card:hover { border-color: #cbd5e1; box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06); }
.ldn-job-card-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.2rem;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-bottom: 1px solid #e2e8f0;
}
.ldn-job-card-titles { min-width: 0; margin-right: auto; }
.ldn-job-card-titles h3 { margin: 0; font-size: 1.05rem; color: #0f172a; }
.ldn-job-card-titles .ldn-muted { font-size: 0.8rem; }
.ldn-job-card-body { padding: 1rem 1.2rem; }
.ldn-job-info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem 1.2rem;
}
.ldn-job-info-cell {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	min-width: 0;
}
.ldn-job-info-cell .dashicons {
	margin-top: 0.15rem;
	color: #64748b;
}
.ldn-job-info-cell small { display: block; color: #94a3b8; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; }
.ldn-job-info-cell strong { display: block; color: #0f172a; font-size: 0.9rem; font-weight: 600; overflow-wrap: anywhere; }
.ldn-job-info-cell--wide { grid-column: 1 / -1; }
.ldn-job-card-body .ldn-delivery-chip { margin-top: 0.8rem; }
.ldn-job-card-foot {
	display: flex;
	justify-content: flex-end;
	gap: 0.55rem;
	padding: 0.85rem 1.2rem;
	border-top: 1px solid #f1f5f9;
	background: #fcfcfd;
	flex-wrap: wrap;
}
@media (max-width: 640px) {
	.ldn-job-info { grid-template-columns: 1fr; }
	.ldn-job-card-foot { justify-content: stretch; }
	.ldn-job-card-foot .ldn-btn { flex: 1 1 auto; justify-content: center; }
}
.ldn-bok-kv { min-width: 0; }
.ldn-bok-kv small {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #94a3b8;
	margin-bottom: 0.1rem;
}
.ldn-bok-kv strong { font-size: 0.9rem; font-weight: 600; color: #334155; }
.ldn-app--orders .ldn-app-actions {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin-top: 0.95rem;
	padding-top: 0.85rem;
	border-top: 1px solid #eef2f7;
}
@media (max-width: 480px) {
	.ldn-app--orders .ldn-app-actions { justify-content: stretch; }
	.ldn-app--orders .ldn-app-actions .ldn-btn { flex: 1 1 auto; justify-content: center; }
}
.ldn-svc-img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }

/* ---- My Services card grid (provider dashboard) ---- */
.ldn-svc-card-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 0.8rem; }
.ldn-svc-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.ldn-svc-card-top h3 { margin: 0; font-size: 1rem; color: #0f172a; line-height: 1.3; }
.ldn-svc-card-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.4rem 1rem 1rem; }
.ldn-svc-card-actions .ldn-btn { flex: 1 1 auto; justify-content: center; }

/* ---- Service card 3-dot menu (provider dashboard) ---- */
.ldn-svc-menu-btn {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #0f172a;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	z-index: 5;
	transition: background .15s ease, color .15s ease;
}
.ldn-svc-menu-btn:hover,
.ldn-svc-menu-btn.is-open { background: #fff; color: #16a34a; }
.ldn-svc-menu-btn .dashicons { font-size: 1.35rem; width: auto; height: auto; }
.ldn-svc-menu {
	position: absolute;
	top: 3.1rem;
	right: 0.6rem;
	min-width: 196px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
	padding: 0.4rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	animation: ldn-menu-in .12s ease;
}
@keyframes ldn-menu-in {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}
.ldn-svc-menu button {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	width: 100%;
	text-align: left;
	padding: 0.55rem 0.7rem;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #334155;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .12s ease, color .12s ease;
}
.ldn-svc-menu button:hover { background: #f1f5f9; color: #0f172a; }
.ldn-svc-menu button .dashicons { font-size: 1rem; width: auto; height: auto; color: #64748b; }
.ldn-svc-menu button:hover .dashicons { color: #16a34a; }
.ldn-svc-menu button.is-danger { color: #dc2626; }
.ldn-svc-menu button.is-danger .dashicons { color: #dc2626; }
.ldn-svc-menu button.is-danger:hover { background: #fef2f2; color: #b91c1c; }
.ldn-svc-menu button:disabled,
.ldn-svc-menu button.is-disabled { opacity: .7; cursor: not-allowed; }
.ldn-svc-title-btn {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	text-align: left;
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
	cursor: pointer;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .12s ease;
}
.ldn-svc-title-btn:hover { color: #16a34a; }
.ldn-svc-card-top .ldn-badge {
	font-size: 0.62rem;
	padding: 0.16rem 0.5rem;
	letter-spacing: 0.02em;
}

/* ---- Badges (status) ---- */
.ldn-badge {
	display: inline-block;
	padding: 0.22rem 0.62rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.ldn-badge--pending { background: #fef3c7; color: #92400e; }
.ldn-badge--confirmed { background: #dbeafe; color: #1d4ed8; }
.ldn-badge--accepted { background: #ede9fe; color: #6d28d9; }
.ldn-badge--scheduled { background: #cffafe; color: #0e7490; }
.ldn-badge--in_progress { background: #ffedd5; color: #c2410c; }
.ldn-badge--completed { background: #dcfce7; color: #166534; }
.ldn-badge--declined { background: #f1f5f9; color: #475569; }
.ldn-badge--cancelled { background: #fee2e2; color: #b91c1c; }
.ldn-badge--refunded { background: #f1f5f9; color: #475569; }
.ldn-badge--approved { background: #dcfce7; color: #166534; }
.ldn-badge--rejected { background: #fee2e2; color: #991b1b; }
.ldn-badge--active { background: #dcfce7; color: #166534; }
.ldn-badge--inactive { background: #f1f5f9; color: #475569; }
.ldn-badge--blocked { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.ldn-badge--online { background: #dcfce7; color: #166534; }
.ldn-badge--offline { background: #f1f5f9; color: #64748b; }
.ldn-badge--paid { background: #dcfce7; color: #166534; }
.ldn-badge--failed { background: #fee2e2; color: #b91c1c; }

/* ---- Thumbs / photos ---- */
.ldn-thumbs { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0.6rem 0; }
.ldn-thumb {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	object-fit: cover;
	border: 1px solid #e2e8f0;
}
.ldn-thumb--pending { opacity: 0.55; border-style: dashed; border-color: #93c5fd; }
.ldn-photo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.ldn-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.ldn-photo-box {
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	background: #f8fafc;
	padding: 0.8rem;
}
.ldn-photo-upload {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	width: 100%;
	padding: 1rem 0.5rem;
	border: 2px dashed #cbd5e1;
	border-radius: 10px;
	background: #fff;
	color: #475569;
	cursor: pointer;
	font-family: inherit;
}
.ldn-photo-upload:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.ldn-photo-upload .dashicons { font-size: 26px; width: 26px; height: 26px; color: #94a3b8; margin-bottom: 0.2rem; }
.ldn-photo-upload strong { font-size: 0.88rem; font-weight: 600; color: #1e3a5f; }
.ldn-photo-upload small { font-size: 0.76rem; color: #94a3b8; }
.ldn-photo-add {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	border: 1px dashed #94a3b8;
	border-radius: 8px;
	background: #f8fafc;
	color: #475569;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.3rem 0.6rem;
	cursor: pointer;
	font-family: inherit;
}
.ldn-photo-add:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.ldn-photo-add .dashicons { font-size: 14px; width: 14px; height: 14px; }
.ldn-delivery-box {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fbfcfe;
	padding: 1.1rem;
	margin-bottom: 1.25rem;
}
.ldn-delivery-head {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-bottom: 0.9rem;
}
.ldn-delivery-head .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: #16a34a;
}
.ldn-delivery-head strong { font-size: 1rem; color: #1e3a5f; }
.ldn-delivery-head p { margin: 0.2rem 0 0; font-size: 0.82rem; }
.ldn-delivery-box .ldn-field { margin-top: 0.9rem; }
.ldn-delivery-box .ldn-btn--block { display: flex; align-items: center; justify-content: center; gap: 0.35rem; margin-top: 0.9rem; }
@media (max-width: 600px) { .ldn-photo-grid { grid-template-columns: 1fr; } }
.ldn-photo {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.ldn-photo--empty {
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	color: #94a3b8;
	text-align: center;
	border: 1px dashed #cbd5e1;
	box-shadow: none;
}
.ldn-photo-wrap { position: relative; width: fit-content; }
.ldn-photo-status {
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15);
	white-space: nowrap;
}
.ldn-photo-status::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.ldn-photo-status.is-on { background: #dcfce7; color: #15803d; }
.ldn-photo-status.is-off { background: #fee2e2; color: #b91c1c; }
.ldn-account-summary { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 1rem; }
.ldn-account-summary strong { display: block; color: #0f172a; margin-bottom: 0.35rem; }
.ldn-account-summary p { margin: 0.2rem 0; color: #475569; }
.ldn-account-summary .ldn-btn { margin-top: 0.75rem; }
.ldn-row--gap { gap: 0.5rem; }
.ldn-row-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.ldn-divider { display: flex; align-items: center; gap: 0.6rem; color: #64748b; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0.9rem 0; }
.ldn-divider::before, .ldn-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.ldn-connect-block { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 0.9rem; }
.ldn-connect-block p { margin: 0 0 0.4rem; }
.ldn-status { display: inline-block; border-radius: 999px; padding: 0.15rem 0.6rem; font-size: 0.72rem; margin-top: 0.35rem; }
.ldn-status--ok { background: #dcfce7; color: #15803d; }
.ldn-status--warn { background: #fef3c7; color: #b45309; }
.ldn-status--err { background: #fee2e2; color: #b91c1c; }
.ldn-portfolio-item {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.55rem;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
}
.ldn-portfolio-item .ldn-thumb { width: 110px; height: 110px; }
.ldn-portfolio-item small { font-size: 0.75rem; color: #64748b; text-align: center; }

/* Portfolio grid with title + category cards. */
.ldn-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 0.75rem;
	margin: 0.8rem 0;
}
.ldn-portfolio-grid .ldn-portfolio-item {
	width: 100%;
	align-items: stretch;
}
.ldn-portfolio-grid .ldn-thumb {
	width: 100%;
	height: 130px;
	object-fit: cover;
}
.ldn-portfolio-item strong {
	font-size: 0.85rem;
	color: #0f172a;
	text-align: center;
	line-height: 1.25;
}
.ldn-portfolio-item .ldn-btn--mini { align-self: center; }

/* Portfolio upload drop zone. */
.ldn-portfolio-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0.2rem 0 0.6rem;
	flex-wrap: wrap;
}
.ldn-portfolio-head strong { font-size: 1rem; color: #0f172a; }
.ldn-dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 1.4rem 1rem;
	margin-bottom: 1rem;
	border: 2px dashed #cbd5e1;
	border-radius: 14px;
	background: #f8fafc;
	color: #64748b;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.ldn-dropzone:hover, .ldn-dropzone--over { border-color: #16a34a; background: #f0fdf4; }
.ldn-dropzone .ldn-dropzone-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e2e8f0;
	color: #16a34a;
	font-size: 1.3rem;
	line-height: 1;
}
.ldn-dropzone strong { color: #0f172a; font-size: 0.9rem; }
.ldn-dropzone small { font-size: 0.72rem; color: #94a3b8; }
.ldn-dropzone-preview {
	width: 100%;
	max-width: 180px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.ldn-dropzone-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	width: 100%;
}
.ldn-dropzone-preview-item { position: relative; }
.ldn-dropzone-preview-thumb {
	width: 76px;
	height: 76px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	display: block;
	background: #fff;
}
.ldn-dropzone-remove {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: #ef4444;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
}
.ldn-dropzone-remove:hover { background: #dc2626; }

/* ---- Buttons variants ---- */
.ldn-btn--green { background: linear-gradient(135deg, #16a34a, #15803d); box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28); }
.ldn-btn--green:hover { background: linear-gradient(135deg, #15803d, #166534); box-shadow: 0 10px 22px rgba(22, 163, 74, 0.34); }
.ldn-btn--red { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25); }
.ldn-btn--red:hover { background: linear-gradient(135deg, #dc2626, #b91c1c); box-shadow: 0 10px 22px rgba(220, 38, 38, 0.3); }
.ldn-btn--grey { background: #f1f5f9; color: #475569; box-shadow: none; }
.ldn-btn--grey:hover { background: #e2e8f0; color: #0f172a; box-shadow: none; }
.ldn-btn--mini { padding: 0.35rem 0.7rem; font-size: 0.78rem; border-radius: 8px; }

/* ---- Browse services ---- */
.ldn-svc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.15rem;
}
.ldn-svc-card {
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	display: flex;
	flex-direction: column;
	position: relative;
}
.ldn-svc-card:hover { border-color: #b7d5bd; }
.ldn-svc-card--clickable { cursor: pointer; }
.ldn-svc-card--clickable:focus-visible { outline: 3px solid rgba(22, 163, 74, 0.35); outline-offset: 3px; }
.ldn-svc-card.is-service-blocked { border-color: #fca5a5; }
.ldn-svc-img-wrap { position: relative; padding-top: 62%; background: #f1f5f9; border-radius: 16px 16px 0 0; overflow: hidden; }
/* ---- Provider profile card (service details) ---- */
.ldn-provider-panel { margin-top: 1.15rem; }
.ldn-provider-panel > .ldn-section-title:first-child { margin-top: 1rem; }
.ldn-provider-card { display: flex; align-items: center; gap: 0.75rem; }
.ldn-provider-card .ldn-svc-provider-link,
.ldn-provider-card .ldn-svc-avatar { width: 52px; height: 52px; }
.ldn-provider-card-info { min-width: 0; }
.ldn-provider-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin: 0.9rem 0;
	padding: 0.7rem 0;
	border-top: 1px solid #eef2f7;
	border-bottom: 1px solid #eef2f7;
}
.ldn-provider-stat { text-align: center; }
.ldn-provider-stat strong { display: block; font-size: 1rem; color: #0f172a; }
.ldn-provider-stat small { font-size: 0.72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.ldn-provider-stats--dash { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 520px) { .ldn-provider-stats--dash { grid-template-columns: repeat(2, 1fr); } }
.ldn-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.9rem; }
.ldn-chip-row .ldn-chip { cursor: default; }
.ldn-chip-row .ldn-chip:hover { background: #f1f5f9; }
.ldn-provider-contact { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 0.75rem; border-top: 1px solid #f1f5f9; }
.ldn-provider-contact-row { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; color: #334155; }
.ldn-provider-contact-row .dashicons { color: #16a34a; flex: none; }
.ldn-provider-biz { display: block; font-size: 0.78rem; color: #64748b; margin-top: 0.15rem; }
.ldn-provider-meta { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.55rem 0 0.25rem; margin-bottom: 0.35rem; border-top: 1px solid #eef2f7; }
.ldn-avail-line { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: #475569; }
.ldn-avail-line .dashicons { font-size: 15px; width: auto; height: auto; color: #16a34a; flex: none; }
.ldn-svc-cover-meta--biz { font-weight: 600; color: #0f172a; margin-top: 0.5rem; }
.ldn-alts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .ldn-alts { grid-template-columns: 1fr; } }
.ldn-review-summary { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: #64748b; margin-bottom: 0.6rem; }

/* ---- Processing / spinner ---- */
.ldn-processing { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; color: #475569; }
.ldn-processing.ldn-inline { display: inline-flex; }
.ldn-processing p { margin: 0; font-size: 0.85rem; }
.ldn-spinner {
	width: 18px; height: 18px; border-radius: 50%;
	border: 2px solid #dbe4ee; border-top-color: #16a34a;
	animation: ldn-spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes ldn-spin { to { transform: rotate(360deg); } }

/* ---- Package picker (booking form) ---- */
.ldn-pkg-list { display: flex; flex-direction: column; gap: 0.55rem; }
.ldn-pkg {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	width: 100%;
	padding: 0.65rem 0.8rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	transition: border-color .12s ease, background .12s ease, box-shadow .12s ease;
}
.ldn-pkg:hover { border-color: #16a34a; }
.ldn-pkg.is-selected {
	border-color: #16a34a;
	background: #f0fdf4;
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.ldn-pkg-info { min-width: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.ldn-pkg-name { font-weight: 700; font-size: 0.85rem; color: #0f172a; }
.ldn-pkg-meta { font-size: 0.75rem; color: #64748b; }
.ldn-pkg-price { font-size: 0.95rem; color: #16a34a; font-weight: 800; flex: none; }

/* ---- Book a service panel ---- */
.ldn-bok-side { position: sticky; top: 1rem; align-self: start; }

.ldn-svc-hero-wrap { border-radius: 16px; margin-bottom: 1.15rem; }
.ldn-svc-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ldn-svc-card-body { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.ldn-svc-card-body p { margin: 0; }
.ldn-price { color: #16a34a; font-size: 1.05rem; font-weight: 800; }
.ldn-svc-provider { display: flex; align-items: center; gap: 0.6rem; margin: 0.25rem 0; }
.ldn-svc-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.ldn-name { display: block; font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.ldn-name:hover, .ldn-name:focus { color: #16a34a; text-decoration: none; }
.ldn-svc-provider-link {
	display: inline-flex;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	line-height: 0;
}
.ldn-svc-rating { display: flex; align-items: center; gap: 0.35rem; }
.ldn-svc-rating small { font-size: 0.75rem; color: #94a3b8; }
.ldn-svc-card .ldn-btn { margin-top: auto; }
.ldn-svc-provider-link { padding: 0; border: none; background: none; cursor: pointer; }
.ldn-svc-provider-name { display: block; padding: 0; border: none; background: none; cursor: pointer; text-align: left; }
.ldn-svc-provider-name:hover, .ldn-svc-provider-name:focus { color: #16a34a; }

/* ---- Browse services cards (customer dashboard) — clean & simple ---- */
.ldn-svc-card--browse {
	border: 1px solid #edf0f4;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ldn-svc-card--browse .ldn-svc-img-wrap { padding-top: 58%; border-radius: 0; }
.ldn-svc-cat-badge {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	z-index: 1;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #15803d;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	backdrop-filter: blur(4px);
}
.ldn-svc-card--browse .ldn-svc-card-body { gap: 0.4rem; padding: 0.95rem 1rem 1rem; }
.ldn-svc-card--browse .ldn-svc-title-btn { flex: none; font-size: 0.98rem; line-height: 1.35; white-space: nowrap; }
.ldn-svc-card--browse .ldn-svc-meta {
	margin: 0;
	font-size: 0.78rem;
	color: #8593a6;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ldn-svc-card--browse .ldn-svc-provider { margin: 0.5rem 0 0; gap: 0.5rem; padding-top: 0.65rem; border-top: 1px solid #f1f5f9; }
.ldn-svc-card--browse .ldn-svc-avatar,
.ldn-svc-card--browse .ldn-svc-provider-link { width: 30px; height: 30px; }
.ldn-svc-card--browse .ldn-svc-provider-info { min-width: 0; }
.ldn-svc-card--browse .ldn-name { font-size: 0.82rem; line-height: 1.2; }
.ldn-svc-card--browse .ldn-svc-rating { gap: 0.3rem; }
.ldn-svc-card--browse .ldn-svc-rating .ldn-star { font-size: 0.78rem; }
.ldn-svc-card--browse .ldn-svc-rating small { font-size: 0.7rem; color: #94a3b8; }
.ldn-svc-card--browse .ldn-svc-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: auto;
	padding-top: 0.7rem;
	border-top: 1px solid #f1f5f9;
}
.ldn-svc-card--browse .ldn-price { font-size: 1rem; }
.ldn-svc-card--browse .ldn-svc-cta .ldn-btn { margin-top: 0; padding: 0.45rem 0.9rem; }

.ldn-svc-grid > .ldn-empty { grid-column: 1 / -1; }

/* ---- Public services directory — Lawn Dreams cards / filters ---- */
body.ldn-page-services .ldn-main {
	padding-top: 20px;
	padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

body.ldn-page-services #ldn-services-root,
body.ldn-page-services .ldn-services-wrap {
	width: min(100%, 1180px);
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
}

body.ldn-page-services .ldn-services-page { display: block; width: 100%; }

body.ldn-page-services .ldn-services-hero {
	position: relative;
	min-height: 300px;
	margin-bottom: 1.35rem;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: 24px;
	overflow: hidden;
	background:
		radial-gradient(circle at 84% 22%, rgba(158, 220, 166, .2), transparent 22%),
		radial-gradient(circle at 95% 88%, rgba(128, 190, 138, .18), transparent 30%),
		linear-gradient(128deg, #0d4325 0%, #12552d 58%, #1c7040 100%);
	box-shadow: 0 20px 44px rgba(10, 66, 35, .2);
}
.ldn-services-hero::before,
.ldn-services-hero::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 50%;
	pointer-events: none;
}
.ldn-services-hero::before { width: 330px; height: 330px; right: -118px; top: -146px; }
.ldn-services-hero::after { width: 230px; height: 230px; right: 84px; bottom: -154px; }
.ldn-services-hero-content { position: relative; z-index: 1; max-width: 650px; }
.ldn-services-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: .28rem .7rem;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	color: #c9f1d2;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.ldn-services-hero h1 {
	max-width: 650px;
	margin: .9rem 0 .7rem;
	color: #fff;
	font-size: clamp(2rem, 4.6vw, 3.55rem);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -.045em;
}
.ldn-services-hero p {
	max-width: 570px;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 1.02rem;
	line-height: 1.65;
}
.ldn-services-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem 1.25rem;
	margin-top: 1.55rem;
	color: #e0f5e4;
	font-size: .82rem;
	font-weight: 700;
}

.ldn-services-filter {
	margin-bottom: 2rem;
	padding: 1.25rem 1.35rem 1.35rem;
	border-color: #e4ebe5;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
}
.ldn-services-filter-head,
.ldn-services-results-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}
.ldn-services-filter-head { margin-bottom: 1rem; }
.ldn-services-filter-head h2,
.ldn-services-results-head h2 {
	margin: 0;
	color: #163220;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -.015em;
}
.ldn-services-filter-head p,
.ldn-services-results-head p {
	margin: .18rem 0 0;
	color: #809087;
	font-size: .8rem;
}
.ldn-filter-count {
	flex: none;
	padding: .35rem .65rem;
	border-radius: 999px;
	background: #eaf7ec;
	color: #147335;
	font-size: .72rem;
	font-weight: 800;
}
.ldn-services-filter-form {
	display: grid;
	grid-template-columns: minmax(200px, 1.35fr) repeat(3, minmax(145px, 1fr)) auto;
	align-items: end;
	gap: .7rem;
}
.ldn-services-filter-form .ldn-field { min-width: 0; margin: 0; }
.ldn-services-filter-form .ldn-field label {
	margin-bottom: .32rem;
	color: #607066;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .035em;
	text-transform: uppercase;
}
.ldn-services-filter-form .ldn-input {
	min-height: 43px;
	background: #f7faf8 !important;
	box-shadow: inset 0 0 0 1px #e1e9e3 !important;
}
.ldn-services-filter-form .ldn-input:focus {
	background: #fff !important;
	box-shadow: inset 0 0 0 2px #54a76a !important;
}
.ldn-services-filter-actions { display: flex; gap: .45rem; }
.ldn-services-filter-actions .ldn-btn { min-height: 43px; white-space: nowrap; padding-inline: .9rem; }
.ldn-services-filter-actions .ldn-btn--secondary { background: #f0f4f1; color: #456151; }

.ldn-services-results-head { align-items: end; margin-bottom: .9rem; }
.ldn-services-results-head h2 { font-size: 1.35rem; }
.ldn-svc-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}
.ldn-svc-card--directory {
	min-width: 0;
	border: 1px solid #e0e7e1;
	border-radius: 16px;
	box-shadow: 0 5px 14px rgba(20, 53, 31, .045);
	overflow: hidden;
	transition: border-color .15s ease;
}
.ldn-svc-card--directory .ldn-svc-img-wrap {
	padding-top: 60%;
	border-radius: 16px 16px 0 0;
	background: #dfeade;
}
.ldn-svc-card--directory .ldn-svc-card-img { display: block; }
.ldn-svc-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #d4e6d7, #8fbe99);
	color: rgba(255, 255, 255, .86);
}
.ldn-svc-card-placeholder .dashicons { width: 34px; height: 34px; font-size: 34px; }
.ldn-svc-card--directory .ldn-svc-card-body { gap: .4rem; padding: 1rem 1.15rem 1.15rem; }
.ldn-svc-category {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: .12rem;
	padding: .24rem .55rem;
	border: 1px solid #d7eadb;
	border-radius: 999px;
	background: #f1faf3;
	color: #39844c;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.ldn-svc-card--directory h3 {
	margin: 0;
	color: #17241b;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.02em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ldn-svc-summary {
	min-height: 2.65em;
	margin: .15rem 0 0;
	color: #526259;
	font-size: .86rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ldn-svc-provider-by {
	margin: .3rem 0 0;
	color: #8a988e;
	font-size: .75rem;
}
.ldn-svc-card-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: .65rem;
	margin-top: auto;
	padding-top: .9rem;
	border-top: 1px solid #edf2ee;
}
.ldn-svc-from { display: flex; flex-direction: column; gap: .05rem; }
.ldn-svc-from span { color: #738077; font-size: .72rem; }
.ldn-svc-from strong { color: #216d35; font-size: 1.1rem; line-height: 1.1; }
.ldn-svc-book-now {
	display: inline-flex;
	align-items: center;
	gap: .28rem;
	padding: .48rem .7rem;
	border: 1px solid #b9d9bf;
	border-radius: 8px;
	background: #f1faf3;
	color: #16803b;
	font-size: .82rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}
.ldn-svc-book-now span { font-size: 1rem; line-height: 1; transition: transform .15s ease; }
.ldn-svc-book-now:hover { color: #0b5b28; background: #e5f5e8; text-decoration: none; }
.ldn-svc-book-now:hover span { transform: translateX(3px); }

@media (max-width: 1020px) {
	.ldn-services-filter-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ldn-services-filter-actions { grid-column: 1 / -1; justify-content: flex-end; }
	.ldn-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
	body.ldn-page-services .ldn-main { padding-inline: .75rem; }
	.ldn-services-hero { min-height: 0; padding: 2rem 1.35rem; border-radius: 18px; }
	.ldn-services-hero h1 { font-size: 2.25rem; }
	.ldn-services-hero p { font-size: .92rem; }
	.ldn-services-hero-points { gap: .45rem .85rem; font-size: .75rem; }
	.ldn-services-filter { padding: 1rem; }
	.ldn-services-filter-form { grid-template-columns: 1fr; }
	.ldn-services-filter-actions { grid-column: auto; justify-content: stretch; }
	.ldn-services-filter-actions .ldn-btn { flex: 1; }
	.ldn-svc-grid { grid-template-columns: 1fr; }
}

/* ---- Service wizard (provider dashboard) ---- */
.ldn-wizard-back { margin-bottom: 0.5rem; }
.ldn-wizard-steps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.9rem 0 1.35rem; }
.ldn-wizard-step {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	color: #64748b;
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: default;
}
.ldn-wizard-step.is-active { background: #16a34a; border-color: #16a34a; color: #fff; }
.ldn-wizard-step.is-done { cursor: pointer; border-color: #bbf7d0; color: #15803d; background: #f0fdf4; }
.ldn-wizard-step.is-done:hover { border-color: #16a34a; }
.ldn-wizard-step.is-error { border-color: #fca5a5; color: #b91c1c; background: #fef2f2; }
.ldn-wizard-step.is-error.is-active { border-color: #dc2626; background: #dc2626; color: #fff; }
.ldn-wizard-step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 18px; height: 18px; border-radius: 50%;
	background: #eef2f7; color: #64748b; font-size: 0.72rem; font-weight: 800;
}
.ldn-wizard-step.is-active .ldn-wizard-step-num,
.ldn-wizard-step.is-done .ldn-wizard-step-num { background: #fff; color: #16a34a; }
.ldn-wizard-step.is-error .ldn-wizard-step-num { background: #fee2e2; color: #b91c1c; }
.ldn-wizard-step.is-error.is-active .ldn-wizard-step-num { background: #fff; color: #dc2626; }
.ldn-wizard-body { animation: ldnFade .2s ease; }
.ldn-hint { font-size: 0.8rem; color: #64748b; margin-top: 0.35rem; }
.ldn-wordcount { font-size: 0.8rem; color: #94a3b8; margin-top: 0.3rem; }
.ldn-wordcount.is-ok { color: #16a34a; font-weight: 600; }
.ldn-wizard-nav { justify-content: flex-end; margin-top: 1.35rem; }

/* Pricing variations */
.ldn-var-row {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #f8fafc;
	padding: 1rem;
	margin-bottom: 1rem;
}
.ldn-var-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.9rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid #eef2f7;
}
.ldn-var-head strong {
	font-size: 0.82rem;
	font-weight: 800;
	color: #334155;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.ldn-var-x {
	width: 28px;
	height: 28px;
	flex: none;
	border: none;
	border-radius: 8px;
	background: #fff;
	color: #64748b;
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .12s ease, color .12s ease;
}
.ldn-var-x:hover:not(:disabled) { background: #fee2e2; color: #dc2626; }
.ldn-var-x:disabled { opacity: 0.4; cursor: default; }
.ldn-var-fields {
	display: grid;
	grid-template-columns: minmax(150px, 1.2fr) minmax(150px, 1.3fr) 120px 120px;
	gap: 0.9rem;
	align-items: end;
}
.ldn-var-fields .ldn-field { margin-bottom: 0; }
.ldn-var-label { min-width: 0; }
.ldn-var-area { min-width: 0; }
.ldn-area-add { display: flex; gap: 0.6rem; align-items: center; }
.ldn-area-add .ldn-input { flex: 1; }
.ldn-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.ldn-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
	font-size: 0.85rem;
	font-weight: 600;
}
.ldn-tag-x {
	border: 0;
	background: transparent;
	color: #15803d;
	font-size: 1rem;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}
.ldn-tag-x:hover { color: #b91c1c; }
.ldn-svc-area-map {
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	margin-top: 0.9rem;
	border: 1px solid #e2e8f0;
	position: relative;
	z-index: 0;
}
.ldn-svc-area-map .leaflet-container { height: 100%; width: 100%; }
.ldn-location-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 4px 0 14px; }
.ldn-location-actions .ldn-btn--secondary { display: inline-flex; align-items: center; gap: 6px; }
.ldn-location-actions .ldn-muted { flex: 1; min-width: 180px; }
.ldn-location-actions .ldn-btn--secondary:disabled { opacity: .65; cursor: progress; }
.ldn-offer-box .ldn-modal-head p { margin: 0.15rem 0 0; font-size: 0.8rem; color: #64748b; line-height: 1.5; }
.ldn-offer-box .ldn-modal-head { align-items: flex-start; }
.ldn-offer-box .ldn-modal-head > div { flex: 1; }
.ldn-offer-progress {
	position: relative;
	height: 10px;
	border-radius: 999px;
	background: #eef2f7;
	margin-bottom: 1.1rem;
	overflow: visible;
}
.ldn-offer-progress-bar {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #22c55e, #15803d);
	transition: width 0.35s ease;
}
.ldn-offer-progress-text {
	position: absolute;
	top: -24px;
	right: 0;
	font-size: 0.72rem;
	font-weight: 700;
	color: #16a34a;
	letter-spacing: 0.03em;
}
.ldn-steps--offer { margin-bottom: 1.15rem; }
.ldn-offer-box .ldn-step-note {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 1rem;
	color: #0f172a;
	font-weight: 700;
	font-size: 0.95rem;
}
.ldn-offer-box .ldn-step-note .dashicons { color: #16a34a; font-size: 1.15rem; width: 1.15rem; height: 1.15rem; }
.ldn-price-wrap { position: relative; }
.ldn-price-prefix {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
	font-weight: 700;
	font-size: 0.9rem;
	pointer-events: none;
}
.ldn-price-wrap .ldn-input { padding-left: 1.8rem; }
.ldn-review-card {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
	padding: 0.4rem 1rem;
	margin-bottom: 1.2rem;
}
.ldn-review-card .ldn-review-row:last-child { border-bottom: 0; }
.ldn-var-add { margin-top: 0.4rem; }
.ldn-var-add .ldn-btn {
	border: 1px dashed #16a34a;
	background: #f0fdf4;
	color: #15803d;
	box-shadow: none;
}
.ldn-var-add .ldn-btn:hover {
	background: #dcfce7;
	color: #166534;
	border-style: solid;
	box-shadow: none;
}

/* Photo gallery picker */
.ldn-photo-step-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}
.ldn-photo-step-title { margin: 0 0 0.25rem; color: #0f172a; font-size: 1rem; }
.ldn-photo-step-head .ldn-step-note { margin: 0; }
.ldn-photo-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	padding: 0.4rem 0.7rem;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #f8fafc;
	color: #475569;
	font-size: 0.78rem;
	font-weight: 800;
}
.ldn-photo-upload-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.9rem 1rem;
	margin-bottom: 1rem;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	background: #f8fafc;
}
.ldn-photo-upload-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 10px;
	background: #dcfce7;
	color: #15803d;
}
.ldn-photo-upload-icon .dashicons { font-size: 19px; width: 19px; height: 19px; }
.ldn-photo-upload-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; gap: 0.18rem; }
.ldn-photo-upload-copy strong { color: #0f172a; font-size: 0.84rem; }
.ldn-photo-upload-copy span { color: #64748b; font-size: 0.74rem; }
.ldn-photo-add-btn {
	flex: none;
	padding: 0.55rem 0.9rem;
	border: 0;
	border-radius: 30px;
	background: #16a34a;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
}
.ldn-photo-add-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.ldn-gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.9rem; }
.ldn-gal-item { position: relative; min-width: 0; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid #e2e8f0; border-radius: 12px; background: #f1f5f9; }
.ldn-gal-preview { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.ldn-gal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ldn-gal-cover,.ldn-gal-number {
	position: absolute;
	left: 8px;
	top: 8px;
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.45rem;
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.78);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
}
.ldn-gal-cover { background: rgba(22, 163, 74, 0.92); }
.ldn-gal-x {
	position: absolute; top: 6px; right: 6px;
	width: 22px; height: 22px; border-radius: 50%;
	border: 0; background: rgba(239, 68, 68, 0.92); color: #fff;
	font-size: 0.95rem; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}
.ldn-gal-preview-btn {
	position: absolute;
	left: 8px;
	bottom: 8px;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.28rem 0.48rem;
	border: 0;
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.78);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	cursor: pointer;
}
.ldn-gal-preview-btn .dashicons { font-size: 13px; width: 13px; height: 13px; }
.ldn-photo-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 145px;
	flex-direction: column;
	gap: 0.35rem;
	border: 1px dashed #dbe3ec;
	border-radius: 12px;
	background: #fbfcfe;
	color: #94a3b8;
	text-align: center;
}
.ldn-photo-empty .dashicons { font-size: 26px; width: 26px; height: 26px; color: #cbd5e1; }
.ldn-photo-empty strong { color: #475569; font-size: 0.82rem; }
.ldn-photo-empty span { font-size: 0.74rem; }
.ldn-photo-preview-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(15, 23, 42, 0.72);
}
.ldn-photo-preview-panel {
	width: min(760px, 100%);
	max-height: calc(100vh - 2.5rem);
	overflow: auto;
	border-radius: 12px;
	background: #fff;
}
.ldn-photo-preview-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1rem;
	border-bottom: 1px solid #e2e8f0;
	color: #0f172a;
	font-size: 0.85rem;
}
.ldn-photo-preview-close {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f1f5f9;
	color: #475569;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}
.ldn-photo-preview-image { display: block; width: 100%; max-height: calc(100vh - 7rem); object-fit: contain; background: #f8fafc; }

@media (max-width: 640px) {
	.ldn-var-fields { grid-template-columns: 1fr 1fr; }
	.ldn-var-label { grid-column: 1 / -1; }
	.ldn-photo-upload-card { align-items: flex-start; flex-wrap: wrap; }
	.ldn-photo-upload-copy { flex-basis: calc(100% - 54px); }
	.ldn-photo-add-btn { margin-left: 54px; }
	.ldn-gal { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
}

/* ---- Service details ---- */
.ldn-svc-cover {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, #f0fdf4, #eff6ff);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
}
.ldn-svc-cover--hero .ldn-svc-cover-img { width: 250px; height: 190px; border-radius: 14px; }
.ldn-svc-cover--hero .ldn-svc-cover-top h1 { margin: 0; font-size: 1.65rem; color: #0f172a; letter-spacing: -0.02em; }
.ldn-svc-cover-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	font-size: 0.85rem;
	background: #f1f5f9;
}
.ldn-svc-chip {
	background: #e7f6ee;
	color: #15803d;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
}
.ldn-svc-cover-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-top: 0.65rem; }
.ldn-svc-cover-row .ldn-price { font-size: 1.3rem; color: #16a34a; }
.ldn-svc-cover-row .ldn-svc-rating { font-size: 0.82rem; }
.ldn-grid--svc {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
	align-items: start;
	gap: 1.5rem;
}
.ldn-svc-main,
.ldn-svc-side { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.ldn-svc-side { position: sticky; top: 5.5rem; }
.ldn-svc-side .ldn-panel { flex: none; }
.ldn-svc-book { border-top: 3px solid #16a34a; }
.ldn-svc-book .ldn-section-title { margin-top: 0; }
.ldn-svc-book .ldn-btn + .ldn-btn { margin-top: 0.6rem; }
.ldn-svc-cover-img {
	width: 128px;
	height: 96px;
	flex: none;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2e8f0;
}
.ldn-svc-cover-ph .dashicons { font-size: 2rem; width: 2rem; height: 2rem; color: #94a3b8; }
.ldn-svc-cover-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ldn-svc-cover-body { min-width: 0; }
.ldn-svc-cover-top { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.ldn-svc-cover-top h2 { margin: 0; font-size: 1.35rem; color: #0f172a; }
.ldn-svc-cover-meta { margin: 0.3rem 0 0; color: #64748b; font-size: 0.9rem; }

/* ---- Service details (customer dashboard) — clean layout ---- */
.ldn-svc-detail-media .ldn-svc-slider { border-radius: 16px; }
.ldn-svc-detail-head { display: flex; flex-direction: column; gap: 0.6rem; }
.ldn-svc-detail-tags { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.ldn-svc-detail-title { margin: 0; font-size: 1.55rem; line-height: 1.2; letter-spacing: -0.02em; color: #0f172a; }
.ldn-svc-detail-provider {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	align-self: flex-start;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font: inherit;
}
.ldn-svc-detail-provider .ldn-svc-avatar { width: 30px; height: 30px; }
.ldn-svc-detail-provider-name { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.ldn-svc-detail-provider:hover .ldn-svc-detail-provider-name { color: #16a34a; }
.ldn-svc-detail-meta { margin: 0; font-size: 0.88rem; color: #64748b; }
.ldn-svc-detail-rating { display: flex; align-items: center; gap: 0.45rem; }
.ldn-svc-detail-rating small { font-size: 0.8rem; color: #94a3b8; }

.ldn-svc-detail .ldn-svc-book {
	border: 1px solid #e8edf3;
	border-top: 3px solid #16a34a;
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.ldn-svc-book-price {
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f1f5f9;
}
.ldn-svc-book-price small { font-size: 0.8rem; color: #94a3b8; font-weight: 600; }
.ldn-svc-book-price .ldn-price { font-size: 1.6rem; line-height: 1; }

@media (max-width: 960px) {
	.ldn-grid--svc { grid-template-columns: minmax(0, 1fr); }
	.ldn-grid--svc .ldn-svc-side { position: static; }
	.ldn-quick-book-grid { grid-template-columns: 1fr; }
}

.ldn-svc-slider {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
}
.ldn-svc-slider-viewport { overflow: hidden; }
.ldn-svc-slider-track { display: flex; transition: transform 0.35s ease; }
.ldn-svc-slider-slide { flex: 0 0 100%; min-width: 0; }
.ldn-svc-slider-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.ldn-svc-slider-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.6rem 0.9rem;
	border-top: 1px solid #eef2f7;
	background: #fff;
}
.ldn-svc-slider-btn {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #334155;
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ldn-svc-slider-btn:hover { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.ldn-svc-slider-count { font-size: 0.8rem; color: #64748b; font-weight: 600; }
.ldn-svc-slider-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 0.9rem;
	border-top: 1px solid #eef2f7;
	background: #fff;
}
.ldn-svc-slider-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: #cbd5e1;
	cursor: pointer;
	transition: background 0.2s ease;
}
.ldn-svc-slider-dot.is-active { background: #16a34a; }
.ldn-svc-slider-thumbs {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding: 0.7rem 0.9rem 0.85rem;
	background: #fff;
}
.ldn-svc-slider-thumb {
	width: 68px;
	height: 48px;
	flex: 0 0 auto;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	background: #f1f5f9;
	cursor: pointer;
	opacity: 0.7;
}
.ldn-svc-slider-thumb:hover,
.ldn-svc-slider-thumb.is-active { border-color: #16a34a; opacity: 1; }
.ldn-svc-slider-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ldn-quick-book { margin-top: 0.85rem; padding-top: 1rem; border-top: 1px solid #eef2f7; }
.ldn-quick-book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.ldn-quick-book .ldn-field { margin-bottom: 0.25rem; }
.ldn-quick-book .ldn-input { font-size: 0.88rem; padding: 0.62rem 0.65rem; }
.ldn-quick-book .ldn-field-hint { margin: 0.45rem 0 0.9rem; }
.ldn-svc-slider--single .ldn-svc-slider-img { border-radius: 16px; }

/* ---- Marketplace posts ---- */
.ldn-marketplace-view { display: flex; flex-direction: column; gap: 1rem; }
.ldn-marketplace-head { align-items: flex-start; }
.ldn-marketplace-head > div { min-width: 0; }
.ldn-marketplace-head p { margin: .25rem 0 0; font-size: .84rem; }
.ldn-marketplace-head .ldn-btn { flex: none; }
.ldn-marketplace-head .ldn-btn--green,
.ldn-marketplace-head .ldn-btn--green:hover {
	background: none;
	box-shadow: none;
	color: #000;
}
.ldn-marketplace-modal { z-index: 1100; }
.ldn-marketplace-modal .ldn-modal-box { max-width: 620px; text-align: left; }
.ldn-marketplace-modal .ldn-marketplace-form { margin: auto; }
.ldn-marketplace-modal .ldn-field { margin-bottom: 1rem; }
.ldn-marketplace-modal .ldn-actions { margin-top: .4rem; }
.ldn-marketplace-form { border-top: 3px solid #16a34a; }
.ldn-marketplace-form .ldn-panel-head { margin-bottom: 1.1rem; }
.ldn-marketplace-table-wrap { overflow-x: auto; }
.ldn-marketplace-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .86rem; }
.ldn-marketplace-table th { padding: .7rem .65rem; text-align: left; color: #64748b; font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid #e2e8f0; white-space: nowrap; }
.ldn-marketplace-table td { position: relative; padding: .75rem .65rem; color: #334155; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.ldn-marketplace-table tr:last-child td { border-bottom: 0; }
.ldn-marketplace-post-cell { display: flex; align-items: center; gap: .7rem; min-width: 280px; }
.ldn-marketplace-post-cell > div { min-width: 0; }
.ldn-marketplace-post-cell strong { display: block; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ldn-marketplace-post-cell small { display: block; max-width: 360px; margin-top: .2rem; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ldn-marketplace-thumb { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex: 0 0 48px; object-fit: cover; border-radius: 9px; background: #f1f5f9; color: #94a3b8; }
.ldn-marketplace-thumb--empty .dashicons { font-size: 20px; }
.ldn-marketplace-author { display: block; font-weight: 700; color: #334155; }
.ldn-marketplace-status { display: inline-flex; padding: .25rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.ldn-marketplace-status.is-active { color: #15803d; background: #dcfce7; }
.ldn-marketplace-status.is-inactive { color: #b45309; background: #fef3c7; }
.ldn-marketplace-actions-head, .ldn-marketplace-actions-cell { width: 60px; text-align: right !important; }
.ldn-marketplace-actions-cell { white-space: nowrap; }
.ldn-marketplace-menu-btn { width: 32px; height: 32px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fff; color: #64748b; cursor: pointer; }
.ldn-marketplace-menu-btn:hover { color: #15803d; border-color: #86efac; background: #f0fdf4; }
.ldn-marketplace-menu { position: fixed; z-index: 1000; width: 150px; padding: .3rem; border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; box-shadow: 0 10px 25px rgba(15,23,42,.14); }
.ldn-marketplace-menu button { display: flex; align-items: center; gap: .45rem; width: 100%; padding: .5rem .55rem; border: 0; border-radius: 7px; background: transparent; color: #334155; text-align: left; cursor: pointer; font-size: .8rem; }
.ldn-marketplace-menu button:hover { background: #f1f5f9; }
.ldn-marketplace-menu button.is-danger { color: #dc2626; }
.ldn-marketplace-menu .dashicons { width: 16px; height: 16px; font-size: 16px; }
.ldn-marketplace-empty { padding: 3rem 1rem; border: 1px dashed #cbd5e1; border-radius: 12px; text-align: center; color: #64748b; }
.ldn-marketplace-empty .dashicons { display: block; margin: 0 auto .5rem; font-size: 2rem; width: 2rem; height: 2rem; color: #94a3b8; }
.ldn-marketplace-empty strong { display: block; color: #334155; }
.ldn-marketplace-empty p { margin: .3rem 0 0; font-size: .85rem; }
@media (max-width: 640px) {
	.ldn-marketplace-head { flex-direction: column; gap: .75rem; }
	.ldn-marketplace-head .ldn-btn { width: 100%; justify-content: center; }
}

.ldn-svc-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.ldn-svc-stat {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.1rem;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	background: #fff;
}
.ldn-svc-stat--green { background: #f0fdf4; border-color: #bbf7d0; }
.ldn-svc-stat--blue { background: #eff6ff; border-color: #bfdbfe; }
.ldn-svc-stat--amber { background: #fff7ed; border-color: #fed7aa; }
.ldn-svc-stat-icon {
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e2e8f0;
}
.ldn-svc-stat--green .ldn-svc-stat-icon { color: #16a34a; border-color: #bbf7d0; }
.ldn-svc-stat--blue .ldn-svc-stat-icon { color: #2563eb; border-color: #bfdbfe; }
.ldn-svc-stat--amber .ldn-svc-stat-icon { color: #d97706; border-color: #fed7aa; }
.ldn-svc-stat-icon .dashicons { font-size: 22px; width: 22px; height: 22px; }
.ldn-svc-stat-body { min-width: 0; }
.ldn-svc-stat-body strong { display: block; font-size: 1.2rem; color: #0f172a; }
.ldn-svc-stat-body small { display: block; color: #64748b; font-size: 0.78rem; margin-top: 0.1rem; }

@media (max-width: 640px) {
	.ldn-svc-cover { flex-direction: column; align-items: flex-start; }
	.ldn-svc-stats { grid-template-columns: 1fr; }
}
.ldn-svc-hero {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 1rem;
}
.ldn-svc-pricing {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0.9rem 0;
	padding: 0.9rem 1rem;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
}
.ldn-svc-pricing .ldn-price { font-size: 1.3rem; }
.ldn-htmldesc { color: #334155; font-size: 0.95rem; line-height: 1.65; }
.ldn-htmldesc p { margin: 0 0 0.75rem; }
.ldn-htmldesc ul, .ldn-htmldesc ol { margin: 0 0 0.75rem; padding-left: 1.25rem; }
.ldn-htmldesc h1, .ldn-htmldesc h2, .ldn-htmldesc h3 { margin: 0.8rem 0 0.4rem; color: #0f172a; }
.ldn-why { background: #fdf6ec; border: 1px solid #fed7aa; border-radius: 12px; padding: 1rem; }
.ldn-pkg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.ldn-pkg-card {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	text-align: left;
	padding: 0.8rem 0.9rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s, background .15s, box-shadow .15s;
}
.ldn-pkg-card:hover { border-color: #cbd5e1; }
.ldn-pkg-card.is-selected {
	border-color: #16a34a;
	background: #f0fdf4;
	box-shadow: 0 6px 16px rgba(22, 163, 74, 0.14);
}
.ldn-pkg-name { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.ldn-pkg-dur { font-size: 0.75rem; color: #64748b; }
.ldn-pkg-price { font-size: 0.95rem; font-weight: 800; color: #16a34a; }
.ldn-booking-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1rem 0;
	padding: 0.8rem 1rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}
.ldn-booking-total span { font-size: 0.9rem; color: #475569; }
.ldn-booking-total strong { font-size: 1.2rem; color: #16a34a; }

/* ---- Booking time slots ---- */
.ldn-time-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(66px, 1fr));
	gap: 0.45rem;
}
.ldn-time-slot {
	padding: 0.5rem 0.4rem;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	color: #0f172a;
	cursor: pointer;
	text-align: center;
	transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
}
.ldn-time-slot:hover:not(:disabled) { border-color: #86efac; background: #f0fdf4; color: #15803d; }
.ldn-time-slot.is-selected {
	background: #16a34a;
	border-color: #16a34a;
	color: #fff;
	box-shadow: 0 6px 14px rgba(22, 163, 74, 0.22);
}
.ldn-time-slot.is-disabled {
	background: #f1f5f9;
	color: #b6c2d1;
	cursor: not-allowed;
	border-color: #eef2f7;
	text-decoration: line-through;
}
.ldn-time-slot.is-booked {
	background: #fef2f2;
	color: #f87171;
	border-color: #fecaca;
	cursor: not-allowed;
	text-decoration: line-through;
}
.ldn-time-slot.is-selected { text-decoration: none; }
.ldn-field-hint {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.75rem;
	color: #64748b;
	line-height: 1.5;
}
.ldn-text-warn { color: #d97706; }
@media (max-width: 480px) {
	.ldn-time-slots { grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); }
}
.ldn-dash-main h2 { margin: 0.2rem 0 0.4rem; font-size: 1.5rem; color: #0f172a; letter-spacing: -0.02em; }

/* ---- Tables ---- */
.ldn-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ldn-table th {
	text-align: left;
	padding: 0.6rem 0.7rem;
	color: #64748b;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e2e8f0;
}
.ldn-table td {
	padding: 0.65rem 0.7rem;
	color: #334155;
	border-bottom: 1px solid #f1f5f9;
}
.ldn-table tbody tr:last-child td { border-bottom: 0; }
.ldn-table tbody tr:hover td { background: #f8fafc; }
.ldn-table-wrap { overflow-x: auto; }

/* ---- Conversations / chat ---- */
.ldn-msgs {
	display: flex;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	min-height: 540px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.ldn-msgs-side {
	width: 340px;
	flex: none;
	display: flex;
	flex-direction: column;
	background: #f8fafc;
	border-right: 1px solid #eef2f7;
}
.ldn-msgs-head {
	padding: 1rem 1.1rem;
	border-bottom: 1px solid #eef2f7;
	background: #fff;
}
.ldn-msgs-head strong { font-size: 1.05rem; color: #0f172a; }
.ldn-msgs-empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem;
	text-align: center;
	color: #94a3b8;
	font-size: 0.88rem;
}
.ldn-msgs-empty .dashicons { font-size: 2rem; width: auto; height: auto; opacity: 0.5; }
.ldn-msgs-list {
	flex: 1;
	overflow-y: auto;
	padding: 0.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.ldn-convo {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	width: 100%;
	text-align: left;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 0.6rem 0.65rem;
	cursor: pointer;
	transition: border-color .15s, background .15s;
}
.ldn-convo:hover { border-color: #e2e8f0; background: #fff; }
.ldn-convo.is-active { border-color: #16a34a; background: #f0fdf4; }
.ldn-convo-avatar {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.ldn-convo-meta { flex: 1; min-width: 0; }
.ldn-convo-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.ldn-convo-line strong {
	font-size: 0.9rem;
	color: #0f172a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ldn-convo-sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 0.15rem;
}
.ldn-convo-msg {
	font-size: 0.78rem;
	color: #64748b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ldn-convo-time { font-size: 0.7rem; color: #94a3b8; flex: none; }
.ldn-convo .ldn-notif-count {
	position: static;
	flex: none;
	margin-left: auto;
}
.ldn-msgs-pane {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: #fff;
}
.ldn-msgs-pane-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}
.ldn-msgs-chathead {
	padding: 1rem 1.2rem;
	border-bottom: 1px solid #eef2f7;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}
.ldn-msgs-chathead-main { flex: 1; min-width: 0; }
.ldn-msgs-chathead strong { display: block; font-size: 1rem; color: #0f172a; }
.ldn-msgs-chathead small { font-size: 0.8rem; color: #94a3b8; }
.ldn-btn--sm { padding: 0.4rem 0.7rem; font-size: 0.82rem; }
.ldn-btn--sm .dashicons { font-size: 15px; width: 15px; height: 15px; margin-right: 2px; }
.ldn-msg-context {
	flex: none;
	margin: 1rem 1.2rem 0.85rem;
	padding: 0.85rem 1rem;
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
	border-radius: 12px;
}
.ldn-msg-context-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.65rem; }
.ldn-msg-context-head .dashicons { color: #16a34a; }
.ldn-msg-context-head strong { font-size: 0.95rem; color: #0f172a; flex: 1; min-width: 0; }
.ldn-msg-context .ldn-badge { margin-left: auto; flex: none; }
.ldn-msg-context-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem 1rem; }
.ldn-msg-context .ldn-bok-kv small { text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Custom order offers ---------- */
.ldn-offer {
	flex: none;
	margin: 0.55rem 1.2rem;
	max-width: 340px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	align-self: flex-start;
}
.ldn-offer--provider { align-self: flex-end; }
.ldn-offer-head {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.7rem 0.9rem;
	background: #f8fafc;
	border-bottom: 1px solid #eef2f7;
}
.ldn-offer-ico { color: #7c3aed; font-size: 18px; width: 18px; height: 18px; }
.ldn-offer-head-text { flex: 1; min-width: 0; }
.ldn-offer-head-text strong { display: block; font-size: 0.9rem; color: #0f172a; }
.ldn-offer-head-text small { font-size: 0.75rem; color: #94a3b8; }
.ldn-offer-status {
	flex: none;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
	background: #fef3c7;
	color: #b45309;
}
.ldn-offer.is-accepted .ldn-offer-status { background: #dcfce7; color: #16a34a; }
.ldn-offer.is-declined .ldn-offer-status { background: #fee2e2; color: #dc2626; }
.ldn-offer-title {
	padding: 0.8rem 0.9rem 0.4rem;
	font-weight: 700;
	font-size: 1rem;
	color: #0f172a;
}
.ldn-offer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.32rem 0.9rem;
	font-size: 0.86rem;
	color: #64748b;
}
.ldn-offer-row strong { color: #0f172a; }
.ldn-offer-desc { margin: 0; padding: 0.5rem 0.9rem 0.8rem; font-size: 0.84rem; color: #475569; }
.ldn-offer-actions {
	display: flex;
	gap: 0.5rem;
	padding: 0 0.9rem 0.8rem;
}
.ldn-offer-actions .ldn-btn { flex: 1; }
.ldn-msgs-noselect {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: #94a3b8;
}
.ldn-msgs-noselect .dashicons { font-size: 2.6rem; width: auto; height: auto; opacity: 0.45; }
.ldn-msgs-noselect p { margin: 0; font-size: 0.9rem; }

.ldn-chat { display: flex; flex-direction: column; }
.ldn-msgs-thread {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	overflow-y: auto;
	padding: 1rem 1.2rem;
	max-height: none;
}
.ldn-msg { display: flex; flex-direction: column; gap: 0.2rem; max-width: 78%; }
.ldn-msg:not(.is-mine) { align-self: flex-start; min-width: 0; }
.ldn-msg.is-mine { align-self: flex-end; align-items: flex-end; }
.ldn-msg-bubble {
	padding: 0.6rem 0.85rem;
	border-radius: 14px 14px 14px 4px;
	background: #f1f5f9;
	color: #0f172a;
	font-size: 0.9rem;
	line-height: 1.45;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
	white-space: pre-wrap;
}
.ldn-msg.is-mine .ldn-msg-bubble {
	background: linear-gradient(135deg, #16a34a, #15803d);
	color: #fff;
	border-radius: 14px 14px 4px 14px;
}
.ldn-msg small { font-size: 0.72rem; color: #94a3b8; }
.ldn-chat-input {
	display: flex;
	gap: 0.6rem;
	align-items: flex-end;
	border-top: 1px solid #eef1f5;
	padding-top: 0.8rem;
	padding-bottom: 1rem;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
	margin-top: 0.4rem;
}
.ldn-chat-input textarea { flex: 1; margin: 0; }
.ldn-input-wrap {
	position: relative;
	flex: 1;
}
.ldn-input-wrap textarea {
	width: 100%;
	padding-right: 3.1rem;
}

/* ---- Chat composer: cleaner input ---- */
.ldn-chat-input .ldn-input-wrap textarea.ldn-input {
	background: #fbfdff !important;
	border: 1px solid #dbe3ec !important;
	border-radius: 12px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	padding: 0.75rem 3.3rem 0.75rem 0.95rem;
	min-height: 52px;
	line-height: 1.45;
	font-size: 0.95rem;
	color: #0f172a;
	resize: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ldn-chat-input .ldn-input-wrap textarea.ldn-input:hover {
	border-color: #c6d0dc !important;
}
.ldn-chat-input .ldn-input-wrap textarea.ldn-input:focus {
	border-color: #dbe3ec !important;
	background: #fbfdff !important;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ldn-chat-input .ldn-input-wrap textarea.ldn-input::placeholder {
	color: #94a3b8;
}
.ldn-chat-input .ldn-input-wrap .ldn-send-btn {
	right: 0.55rem;
	bottom: 0.55rem;
	width: 40px;
	height: 40px;
}
.ldn-chat-form { position: relative; }
.ldn-chat-form textarea.ldn-input { padding-bottom: 0.75rem; }
/* ---- Summary dl ---- */
.ldn-dash-main .ldn-summary {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 0.5rem 1rem;
	margin: 0.6rem 0;
}
.ldn-dash-main .ldn-summary dt,
.ldn-dash-main .ldn-summary dd {
	padding: 0.3rem 0;
	border-top: 1px dashed #eef2f7;
}
.ldn-dash-main .ldn-summary dt { font-weight: 700; color: #475569; font-size: 0.9rem; }
.ldn-dash-main .ldn-summary dd { margin: 0; color: #0f172a; font-weight: 600; font-size: 0.9rem; }
.ldn-dash-main .ldn-summary dd { text-align: right; }

/* ---- Support chat (customer + provider dashboards) ---- */
.ldn-support {
	display: flex;
	flex-direction: column;
	min-height: 62vh;
	height: calc(100vh - 210px);
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 16px;
}
.ldn-support-head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 1.2rem;
	background: linear-gradient(135deg, #f8fafc, #eef2ff);
	border-bottom: 1px solid #eef2f7;
}
.ldn-support-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1d4ed8, #7c3aed);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border: 2px solid #fff;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.15);
}
.ldn-support-head-text { flex: 1; min-width: 0; }
.ldn-support-head-text strong { display: block; font-size: 1rem; color: #0f172a; }
.ldn-support-head-text small { font-size: 0.8rem; color: #64748b; }
.ldn-support-status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.72rem;
	color: #15803d;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	white-space: nowrap;
	flex: none;
}
.ldn-support > .ldn-alert { margin: 0.9rem 1.2rem 0; }
.ldn-support-thread {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 320px;
	max-height: none;
	overflow-y: auto;
	padding: 1.4rem 1.3rem;
	margin: 0;
	background:
		radial-gradient(1200px 320px at 50% -80px, rgba(30, 64, 175, 0.05), transparent 60%),
		#f8fafc;
}
.ldn-support-thread .ldn-msg { flex-direction: row; align-items: flex-end; gap: 0.55rem; }
.ldn-support-thread .ldn-msg.is-mine { flex-direction: row-reverse; }
.ldn-support-thread .ldn-msg-avatar--mini {
	width: 30px;
	height: 30px;
	font-size: 0.68rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.ldn-support-thread .ldn-msg-avatar--hidden { visibility: hidden; }
.ldn-support-thread .ldn-msg-main {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}
.ldn-support-thread .ldn-msg.is-mine .ldn-msg-main { align-items: flex-end; }
.ldn-support-thread .ldn-msg-bubble { position: relative; }
.ldn-support-thread .ldn-msg.is-grouped { margin-top: -0.5rem; }
.ldn-support-thread .ldn-msg.is-grouped .ldn-msg-avatar--mini { visibility: hidden; }
.ldn-support-thread .ldn-msg.is-grouped small { display: none; }
.ldn-support-thread .ldn-msg.is-grouped:not(.is-mine) .ldn-msg-bubble { border-top-left-radius: 6px; }
.ldn-support-thread .ldn-msg.is-grouped.is-mine .ldn-msg-bubble { border-top-right-radius: 6px; }
.ldn-support-thread .ldn-msg:not(.is-mine) .ldn-msg-bubble {
	background: #fff;
	border: 1px solid #eef2f7;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
.ldn-support-thread .ldn-msg.is-mine .ldn-msg-bubble {
	box-shadow: 0 3px 10px rgba(22, 163, 74, 0.18);
}
.ldn-support-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-align: center;
	color: #64748b;
	padding: 2.2rem 1rem;
	flex: 1;
}
.ldn-support-empty-ico {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #eff6ff, #f5f3ff);
	color: #1d4ed8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}
.ldn-support-empty-ico.dashicons::before { font-size: 2rem; }
.ldn-support-empty strong { font-size: 1.05rem; color: #0f172a; }
.ldn-support-empty p { margin: 0; font-size: 0.88rem; max-width: 34ch; }
.ldn-support-empty .ldn-msg-quick { justify-content: center; margin-top: 0.3rem; }

/* Support layout for customer and provider dashboards. */
.ldn-dash-main .ldn-support {
	height: clamp(420px, calc(100vh - 220px), 720px);
	min-height: 420px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.ldn-dash-main .ldn-support-head {
	padding: 0.85rem 1.1rem;
}
.ldn-dash-main .ldn-support-thread {
	padding: 1.15rem 1.2rem;
	gap: 0.6rem;
}
.ldn-dash-main .ldn-support .ldn-chat-input {
	background: #fff;
	padding: 0.8rem 1rem 1rem;
	margin-top: 0;
}
@media (max-width: 700px) {
	.ldn-dash-main .ldn-support {
		height: calc(100vh - 180px);
		min-height: 390px;
	}
	.ldn-dash-main .ldn-support-status {
		display: none;
	}
}

/* ---- Empty state ---- */
.ldn-empty {
	border: 1px dashed #dbe3ec;
	border-radius: 14px;
	background: #f8fafc;
	padding: 2.4rem 1.5rem;
	text-align: center;
	color: #64748b;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	margin: 0.5rem 0;
}
.ldn-empty .dashicons { font-size: 2rem; width: 2rem; height: 2rem; color: #94a3b8; }
.ldn-empty strong { font-size: 1rem; color: #334155; }
.ldn-empty p { margin: 0; font-size: 0.88rem; }

/* ---- Check grid (availability) ---- */
.ldn-check-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.ldn-check-grid .ldn-check {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 0.55rem 0.7rem;
	background: #f8fafc;
	cursor: pointer;
	align-items: center;
	transition: border-color .15s, background .15s;
}
.ldn-check-grid .ldn-check:hover { border-color: #16a34a; }
.ldn-check-grid .ldn-check:has(input:checked) { border-color: #16a34a; background: #f0fdf4; color: #15803d; }

/* ---- Stars / reviews ---- */
.ldn-stars { display: inline-flex; gap: 2px; line-height: 1; }
.ldn-star { color: #d1d5db; font-size: 1rem; }
.ldn-star.is-on { color: #f59e0b; }
.ldn-stars.is-interactive .ldn-star { cursor: pointer; transition: transform .1s ease; }
.ldn-stars.is-interactive .ldn-star:hover { transform: scale(1.2); }
.ldn-review-head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.ldn-review-head strong { font-size: 1.4rem; color: #0f172a; }
.ldn-review {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.85rem 1rem;
	margin-bottom: 0.75rem;
	background: #fff;
}
.ldn-review-top {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 0.35rem;
	flex-wrap: wrap;
}
.ldn-review-top strong { font-size: 0.92rem; color: #0f172a; }
.ldn-review-top small { font-size: 0.78rem; color: #94a3b8; }
.ldn-review p { margin: 0; font-size: 0.9rem; color: #475569; }
.ldn-booking-review-panel { margin-top: 1rem; }
.ldn-booking-review-panel--inline { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #eef2f7; }
.ldn-booking-review-panel--inline .ldn-panel-head { margin-bottom: 0.75rem; }
.ldn-review-box {
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
	margin-top: 1rem;
}
.ldn-modal-box--booking .ldn-review-box {
	margin-top: 0;
	padding: 1.15rem;
	background: #fbfefc;
	border-color: #d7e9dc;
}
.ldn-review-box-head {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1rem;
}
.ldn-review-box-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #dcfce7;
	color: #15803d;
	font-weight: 800;
}
.ldn-review-box-head h3 { margin: 0; font-size: 1.05rem; color: #0f172a; }
.ldn-review-box-head p { margin: .15rem 0 0; color: #64748b; font-size: .82rem; }
.ldn-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .65rem;
}
.ldn-review-item {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	min-width: 0;
	padding: .75rem .85rem;
	background: #fff;
	border: 1px solid #e6edf0;
	border-radius: 10px;
}
.ldn-review-item--wide { grid-column: 1 / -1; }
.ldn-review-item span {
	color: #64748b;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.ldn-review-item strong {
	color: #0f172a;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.45;
	overflow-wrap: anywhere;
}
.ldn-booking-total--emphasis {
	margin: 1rem 0 .7rem;
	padding: .9rem 1rem;
	background: #f0fdf4;
	border-color: #bbf7d0;
}
.ldn-booking-total--emphasis span { font-weight: 700; color: #166534; }
.ldn-booking-total--emphasis strong { font-size: 1.35rem; }
.ldn-review-note { margin: 0; color: #64748b; font-size: .8rem; line-height: 1.5; }

/* ---- Form panel ---- */
.ldn-form-panel {
	border: 1px dashed #16a34a;
	background: #fafffc;
	padding: 1.5rem 1.6rem;
}

/* ---- Mobile ---- */
@media (max-width: 960px) {
	.ldn-dash { grid-template-columns: 1fr; }
	.ldn-dash-side { position: static; }
	.ldn-dash-nav { flex-direction: row; flex-wrap: wrap; }
	.ldn-dash-nav-btn { width: auto; }
	.ldn-grid--two { grid-template-columns: 1fr; }
	.ldn-grid--two > .ldn-panel + .ldn-panel { margin-top: 1.5rem; }
	.ldn-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ldn-notif-panel { width: 280px; }
}
@media (max-width: 640px) {
	.ldn-dash-main { padding: 1.1rem; }
	.ldn-dash-main .ldn-summary { grid-template-columns: 1fr; gap: 0.15rem; }
	.ldn-dash-main .ldn-summary dt { margin-top: 0.5rem; }
	.ldn-grid--four { grid-template-columns: 1fr; }
	.ldn-dash-toolbar { flex-direction: column; align-items: flex-start; }
	.ldn-dash-month { width: 100%; }
}

/* ---- Dashboard roots are full width (they must not inherit the auth-card cap) ---- */
#ldn-account-root.ldn-card-wrap,
#ldn-pro-root.ldn-card-wrap,
#ldn-provider-profile-root.ldn-card-wrap {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	position: static;
}
.ldn-page-my-account .ldn-main,
.ldn-page-pro-dashboard .ldn-main,
.ldn-page-provider-profile .ldn-main {
	width: 100%;
	min-height: 100vh;
}
.ldn-page-my-account .ldn-dash,
.ldn-page-pro-dashboard .ldn-dash {
	width: 100%;
}
.ldn-page-provider-profile .ldn-profile-page {
	max-width: 1180px;
	margin: 0 auto;
}

/* ---- Remove parent-theme header menu + categories on standalone pages ---- */
.ldn-standalone .header-nav nav#mobile-menu,
.ldn-standalone .header-nav .navbar-logo .dropdown,
.ldn-standalone .header__hamburger {
	display: none !important;
}

/* ---- Remove parent-theme breadcrumb bar on standalone pages ---- */
.ldn-standalone .breadcrumb-bar {
	display: none !important;
}

/* ---- Dashboards: full-height sidebar so the logout button pins to the bottom ---- */
.ldn-standalone .ldn-dash {
	align-items: stretch;
}
.ldn-standalone .ldn-dash-side {
	position: sticky;
	top: 84px;
	height: calc(100vh - 84px - 2.5rem);
	overflow: visible;
}
.ldn-standalone .ldn-dash-side .ldn-dash-side-foot {
	margin-top: auto;
}

/* ---- Messages: fill the full available height ---- */
.ldn-page-my-account .ldn-msgs,
.ldn-page-pro-dashboard .ldn-msgs {
	height: calc(100vh - 84px - 2.5rem);
	min-height: 520px;
}
@media (max-width: 960px) {
	.ldn-standalone .ldn-dash-side {
		position: static;
		height: auto;
		overflow-y: visible;
	}
}

/* ---- Hide parent-theme logout links in the header on standalone pages ----
   (logout lives at the bottom of the dashboard sidebar instead) ---- */
.ldn-standalone .header-nav a[href*="action=logout"],
.ldn-standalone .offcanvas__contact a[href*="action=logout"] {
	display: none !important;
}

/* ---- Remove the header profile dropdown menu on standalone pages ----
   (the avatar stays visible, but no menu opens on click) ---- */
.ldn-standalone .header-nav .dropdown-menu {
	display: none !important;
}

/* ---- Keep the parent-theme header sticky on standalone pages except the
   provider application, where the full form should scroll naturally. ---- */
.ldn-standalone:not(.ldn-page-become-a-pro) header.header-one,
.ldn-standalone:not(.ldn-page-become-a-pro) header.header-one.fixed {
	position: sticky !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 999;
	animation: none !important;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

body.ldn-page-become-a-pro .ldn-shell-header {
	position: static;
	top: auto;
}

/* ---- Public services directory (/services) ---- */
.ldn-services-page { display: flex; flex-direction: column; gap: 1.25rem; }
.ldn-services-hero {
	background: linear-gradient(135deg, #0f172a, #1e3a5f);
	color: #fff;
	border-radius: 18px;
}
.ldn-services-hero .ldn-muted { color: #cbd5e1; }
.ldn-services-title { margin: 0 0 0.4rem; font-size: 1.7rem; letter-spacing: -0.02em; }
.ldn-search-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr auto;
	gap: 0.7rem;
	margin-top: 1rem;
	align-items: end;
}
.ldn-search-row .ldn-field { margin: 0; }
.ldn-search-row .ldn-input {
	background: #fff;
	border-color: #cbd5e1;
	color: #0f172a;
}
.ldn-hidden-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.ldn-services-page .ldn-svc-card-body a.ldn-btn { text-decoration: none; text-align: center; }

/* ---- Single service page (/service/...) ---- */
.ldn-svc-breadcrumb { padding: 0.7rem 0.9rem; }
.ldn-svc-breadcrumb .ldn-link-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #2563eb;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0;
}
.ldn-centered-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 2.4rem 1.5rem; }
.ldn-cta-compact { padding: 1.4rem 1.2rem; border: 1px dashed #cbd5e1; border-radius: 14px; background: #f8fafc; }
.ldn-centered-cta .ldn-actions--center { justify-content: center; }
body.ldn-page-service-detail .ldn-cta-compact .ldn-actions--center {
	width: 100%;
	flex-direction: column;
	align-items: stretch;
}
body.ldn-page-service-detail .ldn-cta-compact .ldn-actions--center .ldn-btn {
	width: 100%;
}
.ldn-big-icon { font-size: 2.6rem !important; width: 2.6rem !important; height: 2.6rem !important; color: #16a34a; }
#ldn-service-root.ldn-card-wrap,
#ldn-services-root.ldn-card-wrap {
	width: min(100%, 1180px);
	max-width: 1180px;
	margin: 0 auto;
	padding: 1.25rem 1.25rem 3rem;
	position: static;
}
.ldn-service-fallback {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.35rem;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
[hidden] { display: none !important; }
.ldn-service-fallback h1 { margin: 1rem 0; color: #0f172a; }
.ldn-service-fallback-image { display: block; width: 100%; max-height: 360px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; }
.ldn-service-fallback-meta { color: #64748b; margin: 0.55rem 0; }
.ldn-service-fallback-summary { display: flex; align-items: baseline; gap: 0.7rem; margin: 1rem 0; padding: 0.85rem 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.ldn-service-fallback-summary strong { color: #15803d; font-size: 1.3rem; }
.ldn-service-fallback-summary span { color: #64748b; }
.ldn-service-fallback-actions { margin: 1rem 0; }
.ldn-service-fallback-note { color: #64748b; font-size: .9rem; }
.ldn-server-service-layout { max-width: 100%; }
.ldn-server-service-main { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 1.25rem; align-items: start; }
.ldn-server-service-gallery { min-width: 0; overflow: hidden; border: 1px solid #e2e8f0; border-radius: 16px; background: #f8fafc; }
.ldn-server-service-image { display: block; width: 100%; height: 330px; object-fit: cover; }
.ldn-server-service-gallery-nav { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .65rem .85rem; border-top: 1px solid #e2e8f0; background: #fff; }
.ldn-server-service-gallery-btn { width: 32px; height: 32px; border: 1px solid #dbe3ec; border-radius: 999px; background: #fff; color: #334155; font-size: 1.2rem; cursor: pointer; }
.ldn-server-service-gallery-btn:hover { border-color: #86efac; color: #15803d; background: #f0fdf4; }
.ldn-server-service-gallery-count { color: #64748b; font-size: .8rem; font-weight: 700; }
.ldn-server-service-copy h1 { margin: 0 0 .45rem; color: #0f172a; font-size: 1.8rem; line-height: 1.2; }
.ldn-server-service-booking { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.25rem; padding: 1.15rem; border: 1px solid #bbf7d0; border-top: 3px solid #16a34a; border-radius: 14px; background: #fff; }
.ldn-server-service-price { color: #15803d; font-size: 1.5rem; }
.ldn-server-service-duration { color: #64748b; font-size: .88rem; }
@media (max-width: 760px) {
	.ldn-server-service-main { grid-template-columns: 1fr; }
	.ldn-server-service-image { height: 240px; }
}

/* ---- Delivery request UI (customer + provider dashboards) ---- */
.ldn-delivery-note {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 0.7rem 0.85rem;
	margin: 0.75rem 0;
}
.ldn-delivery-note .dashicons { color: #2563eb; margin-top: 2px; }
.ldn-delivery-note strong { font-size: 0.92rem; color: #1e3a5f; }
.ldn-delivery-note p { margin: 0.2rem 0 0; font-size: 0.84rem; }
.ldn-delivery-note--ok {
	background: #f0fdf4;
	border-color: #bbf7d0;
}
.ldn-delivery-note--ok .dashicons { color: #16a34a; }
.ldn-delivery-note--ok strong { color: #14532d; }
.ldn-delivery-chip {
	display: inline-block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #15803d;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	padding: 0.2rem 0.6rem;
}

@media (max-width: 720px) {
	.ldn-search-row { grid-template-columns: 1fr; align-items: stretch; }
	.ldn-search-row .ldn-btn { width: 100%; }
}

/* ---- Provider public profile page ---- */
.ldn-profile-page { display: flex; flex-direction: column; gap: 1.5rem; }

.ldn-profile-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 55%, #f0fdf4 100%);
	color: #0f172a;
	border: 1px solid #e8eef5;
	margin: 0;
	padding: 0;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}
.ldn-profile-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,0.55), transparent 45%),
		radial-gradient(circle at 85% 85%, rgba(45,212,191,0.14), transparent 55%);
	pointer-events: none;
}
.ldn-profile-hero .ldn-profile-inner { position: relative; padding: 2rem; z-index: 1; }

.ldn-profile-head { display: flex; align-items: flex-start; gap: 1.4rem; }
.ldn-profile-avatar {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 4px solid #fff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
	background: #e2e8f0;
}
.ldn-profile-avatar.ldn-photo--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #94a3b8;
}
.ldn-profile-id { min-width: 0; }
.ldn-profile-toprow { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.ldn-profile-id h1 { margin: 0.1rem 0 0.2rem; font-size: 2rem; letter-spacing: -0.02em; color: #0f172a; }
.ldn-profile-id .ldn-muted { margin: 0.15rem 0; color: #5b6b7c; }
.ldn-profile-rating { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin: 0.6rem 0 0; }
.ldn-profile-rating .ldn-stars { transform: scale(1.15); transform-origin: left center; }
.ldn-profile-rating small { color: #64748b; font-size: 0.88rem; }
.ldn-profile-head .ldn-btn--msg { margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 0.45rem; }
.ldn-profile-head .ldn-btn--msg .dashicons { font-size: 18px; width: auto; height: auto; }

.ldn-profile-hero .ldn-status {
	background: #fff;
	border: 1px solid #dbe4ee;
	color: #64748b;
}
.ldn-profile-hero .ldn-status--ok { color: #15803d; border-color: #bbf7d0; background: #f0fdf4; }
.ldn-profile-hero .ldn-status--warn { color: #b45309; border-color: #fde68a; background: #fffbeb; }

.ldn-profile-bio {
	margin-top: 1.2rem;
	padding: 1.1rem 1.25rem;
	border: 1px solid #e8eef5;
	background: rgba(255,255,255,0.85);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.ldn-profile-bio .ldn-section-title { color: #10233f; }
.ldn-profile-bio p { margin: 0.45rem 0 0; color: #334155; line-height: 1.65; white-space: pre-line; }

.ldn-profile-cols { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }
.ldn-profile-main { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; }
.ldn-profile-side { position: sticky; top: 1rem; }
.ldn-profile-side .ldn-msg-card .ldn-chat-input { margin-top: 0; border-top: 1px solid #eef1f5; padding-top: 0.8rem; }
.ldn-profile-side .ldn-chat { display: flex; flex-direction: column; box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06); }
.ldn-profile-side .ldn-alert { margin-bottom: 0.5rem; }
.ldn-profile-side .ldn-chat-input { margin-top: 0.75rem; }

/* ---- Profile message card ---- */
.ldn-msg-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}
.ldn-msg-card-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.15rem;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-bottom: 1px solid #eef1f5;
}
.ldn-msg-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.12);
	background: #e2e8f0;
}
.ldn-msg-avatar.ldn-photo--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: #94a3b8;
}
.ldn-msg-card-head strong { display: block; font-size: 0.98rem; color: #10233f; }
.ldn-msg-card-head small {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.78rem;
	color: #64748b;
}
.ldn-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
	flex-shrink: 0;
}
.ldn-dot.is-on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }
.ldn-msg-card-body { padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column; }
.ldn-msg-cart { flex: none; }
.ldn-msg-cart .ldn-chat-thread { max-height: 340px; }

.ldn-msg-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	text-align: center;
	padding: 1.6rem 0.5rem;
	color: #94a3b8;
}
.ldn-msg-empty .dashicons { font-size: 2rem; width: auto; height: auto; color: #cbd5e1; }
.ldn-msg-empty strong { color: #64748b; font-size: 0.95rem; }
.ldn-msg-empty p { margin: 0; font-size: 0.82rem; }

.ldn-msg-quick { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.6rem 0 0.8rem; }
.ldn-msg-chip {
	border: 1px solid #dbe4ee;
	background: #fff;
	color: #475569;
	border-radius: 999px;
	padding: 0.4rem 0.8rem;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .15s ease;
}
.ldn-msg-chip:hover { border-color: #16a34a; color: #15803d; background: #f0fdf4; }

.ldn-msg-cta {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: #475569;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 0.9rem;
}
.ldn-msg-cta .dashicons { color: #16a34a; margin-top: 2px; }

/* ---- Booking status (post-booking confirmation) ---- */
.ldn-booking-status {
	width: 100%;
	max-width: 360px;
	margin: 1rem auto 1.25rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 0.9rem 1rem;
	text-align: left;
}
.ldn-booking-status-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.35rem 0;
	border-bottom: 1px solid #eef2f7;
}
.ldn-booking-status-row:last-child { border-bottom: 0; }
.ldn-booking-status-row span { font-size: 0.82rem; color: #64748b; }
.ldn-booking-status-row strong { font-size: 0.88rem; color: #0f172a; }

.ldn-send-btn {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: #e2e8f0;
	color: #94a3b8;
	cursor: pointer;
	transition: all .15s ease;
}
.ldn-send-btn:hover:not(:disabled) { transform: translateY(-1px); }
.ldn-send-btn:disabled { cursor: default; box-shadow: none; transform: none; }
.ldn-send-btn:not(:disabled) {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #fff;
	box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}
.ldn-send-btn:not(:disabled):hover { box-shadow: 0 8px 20px rgba(22, 163, 74, 0.45); }
.ldn-send-btn svg { display: block; }
.ldn-send-btn .dashicons { font-size: 1rem; width: auto; height: auto; margin-left: 1px; }

.ldn-msg-sent {
	display: inline-flex;
	align-items: center;
	align-self: flex-end;
	color: #16a34a;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	padding: 0.3rem 0.6rem;
	margin-bottom: 0.5rem;
}
.ldn-msg-sent .dashicons { font-size: 1rem; width: auto; height: auto; }

.ldn-chip-static {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #64748b;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
	white-space: nowrap;
}
.ldn-chip-static .dashicons { font-size: 0.95rem; width: auto; height: auto; }

.ldn-profile-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.ldn-profile-stat {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.ldn-profile-stat .dashicons { color: #2563eb; font-size: 1.3rem; width: auto; height: auto; margin-bottom: 0.35rem; }
.ldn-profile-stat strong { font-size: 1.5rem; color: #0f172a; letter-spacing: -0.02em; }
.ldn-profile-stat span { font-size: 0.82rem; color: #64748b; }

.ldn-review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ldn-review {
	background: #f8fafc;
	border: 1px solid #eef2f7;
	border-radius: 14px;
	padding: 1.1rem;
}
.ldn-review-head { gap: 0.75rem; align-items: center; }
.ldn-review-head .ldn-svc-avatar { width: 42px; height: 42px; }
.ldn-review-head strong { display: block; font-size: 0.92rem; color: #0f172a; }
.ldn-review-head small { display: block; color: #94a3b8; font-size: 0.75rem; }
.ldn-review > p { margin: 0.6rem 0 0; color: #334155; font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 960px) {
	.ldn-profile-cols { grid-template-columns: 1fr; }
	.ldn-profile-side { position: static; }
	.ldn-profile-stats { grid-template-columns: repeat(2, 1fr); }
	.ldn-review-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.ldn-profile-hero .ldn-profile-inner { padding: 1.4rem; }
	.ldn-profile-head { flex-direction: column; align-items: center; text-align: center; }
	.ldn-profile-rating { justify-content: center; }
	.ldn-profile-id h1 { font-size: 1.55rem; }
	.ldn-profile-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- New-message toast popup (Fiverr-style) ---------- */
.ldn-toast-wrap {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}
.ldn-toast {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	width: 320px;
	max-width: calc(100vw - 36px);
	pointer-events: auto;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-right: 3px solid #22c55e;
	border-radius: 14px;
	padding: 0.8rem 0.9rem;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	transform: translateX(12px);
	opacity: 0;
	transition: transform .25s ease, opacity .25s ease;
}
.ldn-toast.is-in { transform: translateX(0); opacity: 1; }
.ldn-toast.is-leaving { transform: translateX(14px); opacity: 0; }
.ldn-toast-avatar {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.ldn-toast-body { flex: 1; min-width: 0; }
.ldn-toast-head {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.25;
}
.ldn-toast-msg {
	font-size: 0.85rem;
	color: #475569;
	margin: 0.2rem 0 0.25rem;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ldn-toast-meta {
	font-size: 0.72rem;
	font-weight: 600;
	color: #16a34a;
}
.ldn-toast-close {
	flex: none;
	border: none;
	background: transparent;
	color: #94a3b8;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 0 0 0.25rem;
}
.ldn-toast-close:hover { color: #334155; }

@media (max-width: 960px) {
	.ldn-msgs { flex-direction: column; min-height: 0; }
	.ldn-msgs-side {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid #eef2f7;
		max-height: 300px;
	}
	.ldn-msgs-pane { min-height: 440px; }
	.ldn-page-my-account .ldn-msgs,
	.ldn-page-pro-dashboard .ldn-msgs {
		height: auto;
	}
}

/* ---- Settings screen ---- */
.ldn-settings { max-width: 900px; }

.ldn-settings-head {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	background: linear-gradient(135deg, #0f2447, #1e3a5f);
	border-radius: 16px;
	padding: 1.35rem 1.5rem;
	color: #fff;
	margin-bottom: 1.4rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .18);
}
.ldn-settings-head .ldn-avatar {
	width: 64px;
	height: 64px;
	font-size: 26px;
	font-weight: 800;
	border-radius: 16px;
	background: linear-gradient(135deg, #38bdf8, #2563eb);
	box-shadow: 0 4px 14px rgba(37, 99, 235, .4);
}
.ldn-settings-head-info { min-width: 0; }
.ldn-settings-head-info h2 { margin: 0; font-size: 1.35rem; font-weight: 800; color: #fff; }
.ldn-settings-head-info p { margin: 0.25rem 0 0; color: #b9c6d9; font-size: 0.88rem; }
.ldn-badge-role {
	display: inline-block;
	margin-top: 0.55rem;
	padding: 0.22rem 0.75rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .14);
	color: #e2f0ff;
	border: 1px solid rgba(255, 255, 255, .22);
}

.ldn-settings-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.ldn-settings-sect {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.35rem 1.45rem;
	box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
}
.ldn-settings-sect + .ldn-settings-sect { margin-top: 1.25rem; }
.ldn-settings-grid .ldn-settings-sect + .ldn-settings-sect { margin-top: 0; }
.ldn-settings-sect--avail { margin-top: 1.25rem; }
.ldn-settings-sect-head { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.1rem; }
.ldn-settings-sect-icon {
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0fdf4;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}
.ldn-settings-sect-icon .dashicons { font-size: 20px; width: 20px; height: 20px; }
.ldn-settings-sect-icon--blue { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.ldn-settings-sect-icon--amber { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.ldn-settings-sect-title { min-width: 0; }
.ldn-settings-sect-title strong { display: block; font-size: 1rem; color: #0f172a; font-weight: 800; }
.ldn-settings-sect-title small { display: block; margin-top: 0.15rem; color: #8593a6; font-size: 0.8rem; }

.ldn-settings-foot {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.1rem;
}
.ldn-settings-note { font-size: 0.78rem; color: #94a3b8; }
.ldn-time-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.6rem; }
.ldn-availability-hint { font-size: 0.8rem; color: #94a3b8; margin: 0.55rem 0 0; }
.ldn-input[disabled] { background: #f1f5f9; color: #64748b; cursor: not-allowed; }
.ldn-btn[disabled] { opacity: .55; cursor: not-allowed; }
.ldn-settings .ldn-check-grid { margin-top: 0.25rem; }

@media (max-width: 900px) {
	.ldn-settings-grid { grid-template-columns: 1fr; }
	.ldn-settings-grid .ldn-settings-sect + .ldn-settings-sect { margin-top: 0; }
}

/* ---- App-shell dashboards: full 100vh, no page scroll, internal scrolling ---- */
.ldn-page-my-account,
.ldn-page-pro-dashboard {
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.ldn-page-my-account > header,
.ldn-page-pro-dashboard > header,
.ldn-page-my-account header.header-one,
.ldn-page-pro-dashboard header.header-one {
	flex: none;
	margin-bottom: 20px;
}
.ldn-page-my-account .ldn-main,
.ldn-page-pro-dashboard .ldn-main {
	flex: 1;
	min-height: 0;
	height: calc(100vh - 104px);
	overflow: hidden;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.ldn-page-my-account .ldn-settings,
.ldn-page-pro-dashboard .ldn-settings {
	max-width: none;
}
.ldn-page-my-account #ldn-account-root,
.ldn-page-pro-dashboard #ldn-pro-root,
.ldn-page-my-account .ldn-dash,
.ldn-page-pro-dashboard .ldn-dash {
	height: 100%;
	min-height: 0;
	flex: 1;
	grid-template-rows: minmax(0, 1fr);
	align-items: stretch;
}
.ldn-page-my-account .ldn-dash,
.ldn-page-pro-dashboard .ldn-dash {
	padding: 0;
	box-sizing: border-box;
}
.ldn-page-my-account .ldn-main,
.ldn-page-pro-dashboard .ldn-main {
	padding: 0 20px;
	box-sizing: border-box;
}
.ldn-page-my-account .ldn-dash-side,
.ldn-page-pro-dashboard .ldn-dash-side {
	position: relative;
	top: auto;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	align-self: stretch;
	overflow: hidden;
}
.ldn-page-my-account .ldn-dash-nav,
.ldn-page-pro-dashboard .ldn-dash-nav {
	overflow: auto;
	min-height: 0;
}
.ldn-page-my-account .ldn-dash-main,
.ldn-page-pro-dashboard .ldn-dash-main {
	height: 100%;
	max-height: 100%;
	min-height: 0;
	overflow-y: auto;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	margin: 0 20px 0 0;
	padding: 20px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.ldn-page-my-account .ldn-msgs-wrap,
.ldn-page-pro-dashboard .ldn-msgs-wrap {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
}
.ldn-page-my-account .ldn-msgs,
.ldn-page-pro-dashboard .ldn-msgs {
	flex: 1;
	height: auto;
	min-height: 0;
}
@media (max-width: 960px) {
	.ldn-page-my-account .ldn-dash,
	.ldn-page-pro-dashboard .ldn-dash {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(0, 1fr);
	}
	.ldn-page-my-account .ldn-dash-side,
	.ldn-page-pro-dashboard .ldn-dash-side {
		height: auto;
		max-height: none;
		overflow: visible;
	}
	.ldn-page-my-account .ldn-dash-nav,
	.ldn-page-pro-dashboard .ldn-dash-nav {
		overflow: visible;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.ldn-page-my-account .ldn-dash-main,
	.ldn-page-pro-dashboard .ldn-dash-main {
		overflow-y: auto;
	}
	.ldn-page-my-account .ldn-msgs,
	.ldn-page-pro-dashboard .ldn-msgs {
		min-height: 440px;
	}
}

/* ---------------- Skeleton loaders ---------------- */

.ldn-skeleton {
	display: inline-block;
	vertical-align: middle;
	background: linear-gradient(90deg, #eef1f5 25%, #e2e7ed 37%, #eef1f5 63%);
	background-size: 400% 100%;
	animation: ldn-shimmer 1.3s ease-in-out infinite;
}

.ldn-skeleton--circle {
	border-radius: 50%;
	display: inline-block;
	flex: none;
}

@keyframes ldn-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

.ldn-skeleton-grid {
	display: grid;
	gap: 14px;
}

.ldn-skeleton-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	border: 1px solid #eef0f3;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.ldn-skeleton-card--kpi {
	min-height: 96px;
}

.ldn-skeleton-card--svc {
	min-height: 180px;
}

.ldn-skeleton-card--panel {
	min-height: 180px;
}

.ldn-job-skeleton {
	min-height: 150px;
}

@media (prefers-reduced-motion: reduce) {
	.ldn-skeleton {
		animation: none;
	}
}

/* ---------------- Loading buttons ---------------- */

.ldn-btn--loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}

.ldn-spinner {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	display: inline-block;
	flex: none;
	animation: ldn-spin 0.7s linear infinite;
}

.ldn-btn--secondary .ldn-spinner,
.ldn-btn--ghost .ldn-spinner,
.ldn-btn--white .ldn-spinner {
	border-color: rgba(0, 0, 0, 0.18);
	border-top-color: #1d2839;
}

@keyframes ldn-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.ldn-spinner {
		animation: none;
	}
}

/* Provider application: let the form define the page height so the footer
 * cannot compress the form when it is rendered below the application. */
.ldn-page-become-a-pro,
body.ldn-page-become-a-pro #page {
	height: auto;
	min-height: 100vh;
	overflow: visible;
	display: flex;
	flex-direction: column;
}
.ldn-page-become-a-pro > header,
.ldn-page-become-a-pro header.header-one {
	flex: 0 0 auto;
}
.ldn-page-become-a-pro .ldn-main,
body.ldn-page-become-a-pro #page > .ldn-main {
	flex: 0 0 auto;
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: visible;
	display: flex;
	align-items: flex-start;
	padding: 1rem;
}
.ldn-page-become-a-pro .ldn-card-wrap.auth-wide {
	width: 100%;
	max-width: 1600px;
	height: auto;
	max-height: none;
	margin: 0 auto;
}
.ldn-page-become-a-pro .ldn-card--split {
	width: 100%;
	max-width: 1600px;
	height: auto;
	max-height: none;
	grid-template-columns: minmax(280px, .5fr) minmax(780px, 2fr);
	overflow: visible;
}
.ldn-page-become-a-pro .ldn-card--split .ldn-split-main {
	min-height: 0;
	height: auto;
	max-height: none;
	overflow: visible;
}
.ldn-page-become-a-pro .ldn-card--split .ldn-split-brand {
	min-height: 0;
	height: auto;
	max-height: none;
	overflow: visible;
}
body.ldn-page-become-a-pro #page > footer {
	display: block !important;
}
@media (max-width: 900px) {
	.ldn-page-become-a-pro .ldn-main {
		align-items: flex-start;
		overflow-y: auto;
	}
	.ldn-page-become-a-pro .ldn-card-wrap.auth-wide,
	.ldn-page-become-a-pro .ldn-card--split {
		height: auto;
		max-height: none;
	}
	.ldn-page-become-a-pro .ldn-card--split .ldn-split-main,
	.ldn-page-become-a-pro .ldn-card--split .ldn-split-brand {
		height: auto;
		max-height: none;
		overflow: visible;
	}
}

/* Simple customer/provider support layout. */
.ldn-dash-main .ldn-support {
	height: 100%;
	min-height: 0;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: none;
	background: #fff;
}
.ldn-dash-main .ldn-support-head {
	padding: 0 1.2rem 1rem;
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
}
.ldn-dash-main .ldn-support-avatar {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
	box-shadow: none;
}
.ldn-dash-main .ldn-support-status {
	padding: 0;
	background: transparent;
	border: 0;
	color: #64748b;
}
.ldn-dash-main .ldn-support-thread {
	padding: 1.1rem 1.2rem;
	background: #fff;
	background-image: none;
}
.ldn-dash-main .ldn-support-thread .ldn-msg:not(.is-mine) .ldn-msg-bubble,
.ldn-dash-main .ldn-support-thread .ldn-msg.is-mine .ldn-msg-bubble {
	box-shadow: none;
}
.ldn-dash-main .ldn-support .ldn-chat-input {
	padding: .8rem 1rem 1rem;
	border-top: 1px solid #e2e8f0;
	background: #fff;
}

.ldn-page-my-account .ldn-dash-side,
.ldn-page-pro-dashboard .ldn-dash-side {
	margin-top: 20px;
}
.ldn-dash-main .ldn-support-head-text strong { font-size: .86rem; }
.ldn-dash-main .ldn-support-avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	padding: 7px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
}
.ldn-dash-main .ldn-support .ldn-chat-form textarea.ldn-input,
.ldn-dash-main .ldn-support .ldn-chat-form textarea.ldn-input:hover,
.ldn-dash-main .ldn-support .ldn-chat-form textarea.ldn-input:focus {
	border: 0 !important;
	box-shadow: none !important;
	outline: none;
	background: #f1f5f9 !important;
}

@media (min-width: 961px) {
	.ldn-page-my-account .ldn-dash-side,
	.ldn-page-pro-dashboard .ldn-dash-side {
		height: calc(100% - 20px);
		min-height: calc(100% - 20px);
		max-height: calc(100% - 20px);
	}
}

/* ---- Public service detail: simple, client-first layout ---- */
body.ldn-page-service-detail .ldn-main {
	padding-top: 20px;
	padding-bottom: 3rem;
}
body.ldn-page-service-detail #ldn-service-root.ldn-card-wrap {
	width: min(100%, 1180px);
	max-width: 1180px;
	padding: 0 0 2rem;
}
body.ldn-page-service-detail .ldn-svc-breadcrumb {
	padding: 0 0 .85rem;
}
body.ldn-page-service-detail .ldn-svc-breadcrumb .ldn-link-btn {
	color: #475569;
	font-size: .84rem;
}
body.ldn-page-service-detail .ldn-svc-cover {
	position: relative;
	align-items: flex-start;
	margin-bottom: 1rem;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border-color: #e2e8f0;
	border-top: 4px solid #16a34a;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
body.ldn-page-service-detail .ldn-svc-cover-top {
	gap: .55rem;
}
body.ldn-page-service-detail .ldn-svc-cover-top h1 {
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	line-height: 1.2;
}
body.ldn-page-service-detail .ldn-svc-cover-meta {
	font-size: .86rem;
}
body.ldn-page-service-detail .ldn-svc-cover-row {
	gap: .8rem;
	margin-top: .8rem;
}
body.ldn-page-service-detail .ldn-svc-cover-row .ldn-price {
	font-size: 1.35rem;
}
body.ldn-page-service-detail .ldn-grid--svc {
	gap: 1rem;
}
body.ldn-page-service-detail .ldn-svc-main,
body.ldn-page-service-detail .ldn-svc-side {
	gap: 1rem;
}
body.ldn-page-service-detail .ldn-svc-main > .ldn-panel {
	box-shadow: 0 5px 18px rgba(15, 23, 42, .025);
}
body.ldn-page-service-detail .ldn-svc-main > .ldn-panel.ldn-panel--pad {
	padding: 1.15rem 1.25rem;
}
body.ldn-page-service-detail .ldn-svc-main .ldn-section-title {
	margin-bottom: .7rem;
	font-size: 1rem;
}
body.ldn-page-service-detail .ldn-svc-slider {
	border-color: #dbe3ec;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}
body.ldn-page-service-detail .ldn-svc-slider-img {
	aspect-ratio: 16 / 10;
	max-height: 500px;
	background: #f8fafc;
}
body.ldn-page-service-detail .ldn-svc-slider-nav {
	padding: .55rem .75rem;
}
body.ldn-page-service-detail .ldn-svc-slider-dots {
	padding: .5rem .75rem;
}
body.ldn-page-service-detail .ldn-svc-slider-thumbs {
	padding: .6rem .75rem .7rem;
}
body.ldn-page-service-detail .ldn-svc-slider-thumb {
	width: 62px;
	height: 44px;
}
body.ldn-page-service-detail .ldn-svc-book {
	padding: 1.2rem 1.15rem;
	border-color: #dbe3ec;
	border-top: 4px solid #16a34a;
	box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}
body.ldn-page-service-detail .ldn-svc-book .ldn-section-title {
	font-size: 1.08rem;
}
body.ldn-page-service-detail .ldn-svc-book-price {
	margin-bottom: .8rem;
	padding-bottom: .85rem;
}
body.ldn-page-service-detail .ldn-svc-book-price .ldn-price {
	font-size: 1.7rem;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-summary {
	display: grid;
	grid-template-columns: minmax(90px, .8fr) minmax(0, 1.2fr);
	gap: 0;
	margin: 0;
	padding: .25rem 0 .75rem;
	border-bottom: 1px solid #eef2f7;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dt,
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dd {
	margin: 0;
	padding: .38rem 0;
	font-size: .82rem;
	border-top: 1px solid #f1f5f9;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dt {
	color: #64748b;
	font-weight: 600;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dd {
	color: #0f172a;
	font-weight: 700;
	text-align: right;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dt:first-child,
body.ldn-page-service-detail .ldn-svc-book .ldn-summary dd:first-of-type {
	border-top: 0;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-cta-compact {
	margin-top: 1rem;
	padding: 1rem .75rem;
	border-style: solid;
	border-color: #e2e8f0;
	background: #f8fafc;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-cta-compact p {
	margin: 0 0 .7rem;
	font-size: .83rem;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-btn--block,
body.ldn-page-service-detail .ldn-svc-book .ldn-actions .ldn-btn {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-quick-book {
	margin-top: .9rem;
	padding-top: .9rem;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-field label {
	font-size: .82rem;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-field-hint {
	font-size: .75rem;
}
body.ldn-page-service-detail .ldn-provider-panel .ldn-section-title--mt {
	margin-top: 2rem;
}
body.ldn-page-service-detail .ldn-server-service-booking {
	box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

@media (max-width: 960px) {
	body.ldn-page-service-detail #ldn-service-root.ldn-card-wrap {
		padding-inline: .75rem;
	}
	body.ldn-page-service-detail .ldn-svc-cover {
		padding: 1.1rem 1rem;
	}
	body.ldn-page-service-detail .ldn-svc-side {
		order: -1;
	}
}
@media (max-width: 640px) {
	body.ldn-page-service-detail .ldn-main {
		padding-inline: .75rem;
	}
	body.ldn-page-service-detail .ldn-svc-cover-top h1 {
		flex-basis: 100%;
	}
	body.ldn-page-service-detail .ldn-svc-cover-row {
		align-items: flex-start;
		flex-direction: column;
		gap: .35rem;
	}
body.ldn-page-service-detail .ldn-svc-main > .ldn-panel.ldn-panel--pad {
		padding: 1rem;
	}
}

/* Custom arrows for the public services filters. */
body.ldn-page-services .ldn-select-control {
	position: relative;
}
body.ldn-page-services .ldn-select-control select.ldn-input {
	width: 100%;
	padding-right: 2.5rem;
	appearance: none;
	-webkit-appearance: none;
	background-image: none !important;
	cursor: pointer;
}
body.ldn-page-services .ldn-select-control::after {
	content: "";
	position: absolute;
	right: .95rem;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid #5f7666;
	border-bottom: 2px solid #5f7666;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
	transition: transform .15s ease, border-color .15s ease;
}
body.ldn-page-services .ldn-select-control:focus-within::after {
	border-color: #2f7d43;
	transform: translateY(-25%) rotate(225deg);
}
body.ldn-page-services .ldn-select-control select.ldn-input::-ms-expand {
	display: none;
}

/* ---- Service detail: clean, easy-to-scan presentation ---- */
body.ldn-page-service-detail {
	background: #f7faf8;
}
body.ldn-page-service-detail .ldn-main {
	background: transparent;
}
body.ldn-page-service-detail #ldn-service-root.ldn-card-wrap {
	box-sizing: border-box;
}
body.ldn-page-service-detail .ldn-svc-cover {
	box-shadow: none;
}
body.ldn-page-service-detail .ldn-svc-cover-body {
	width: 100%;
}
body.ldn-page-service-detail .ldn-svc-cover-meta--biz {
	margin-top: .65rem;
}
body.ldn-page-service-detail .ldn-svc-cover-meta--biz .ldn-link-btn {
	color: #166534;
	font-weight: 700;
}
body.ldn-page-service-detail .ldn-svc-main > .ldn-panel,
body.ldn-page-service-detail .ldn-svc-slider {
	border-radius: 12px;
	box-shadow: none;
}
body.ldn-page-service-detail .ldn-svc-main > .ldn-panel.ldn-panel--pad {
	padding: 1.2rem 1.25rem;
}
body.ldn-page-service-detail .ldn-svc-main .ldn-section-title,
body.ldn-page-service-detail .ldn-provider-panel > .ldn-section-title:first-child {
	margin-top: 0;
	margin-bottom: .85rem;
}
body.ldn-page-service-detail .ldn-htmldesc {
	color: #334155;
	font-size: .92rem;
	line-height: 1.7;
}
body.ldn-page-service-detail .ldn-htmldesc p:last-child {
	margin-bottom: 0;
}
body.ldn-page-service-detail .ldn-table-wrap {
	border: 1px solid #eef2f7;
	border-radius: 9px;
}
body.ldn-page-service-detail .ldn-table th {
	background: #f8fafc;
	font-size: .72rem;
}
body.ldn-page-service-detail .ldn-table td {
	font-size: .84rem;
}
body.ldn-page-service-detail .ldn-table tbody tr:hover td {
	background: #fff;
}
body.ldn-page-service-detail .ldn-tags {
	margin-top: 0;
	gap: .45rem;
}
body.ldn-page-service-detail .ldn-tag {
	background: #f1faf3;
	border-color: #d7eadb;
	color: #256b37;
	font-size: .78rem;
}
body.ldn-page-service-detail .ldn-svc-area-map {
	margin-top: .9rem;
	min-height: 190px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
}
body.ldn-page-service-detail .ldn-provider-card {
	padding-bottom: .15rem;
}
body.ldn-page-service-detail .ldn-provider-stats {
	margin: 1rem 0;
	padding: .85rem 0;
	background: #f8fafc;
	border: 1px solid #eef2f7;
	border-radius: 10px;
}
body.ldn-page-service-detail .ldn-provider-stat strong {
	font-size: .95rem;
}
body.ldn-page-service-detail .ldn-provider-stat small {
	font-size: .68rem;
}
body.ldn-page-service-detail .ldn-provider-meta {
	padding: .75rem 0 .2rem;
	margin-bottom: .25rem;
}
body.ldn-page-service-detail .ldn-provider-panel .ldn-section-title--mt {
	padding-top: .25rem;
	border-top: 1px solid #eef2f7;
}
body.ldn-page-service-detail .ldn-svc-book {
	box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
body.ldn-page-service-detail .ldn-svc-book .ldn-btn--green {
	box-shadow: none;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-btn--green:hover {
	box-shadow: none;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-actions {
	width: 100%;
	gap: .5rem;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-actions .ldn-btn {
	flex: 1 1 0;
}
body.ldn-page-service-detail .ldn-svc-book .ldn-quick-book .ldn-btn {
	margin-top: .2rem;
}
body.ldn-page-service-detail .ldn-alts {
	gap: .75rem;
}
body.ldn-page-service-detail .ldn-alt-card {
	border-radius: 10px;
	box-shadow: none;
}

@media (max-width: 640px) {
	body.ldn-page-service-detail .ldn-svc-cover {
		border-top-width: 3px;
	}
	body.ldn-page-service-detail .ldn-svc-book .ldn-actions {
		flex-direction: column;
	}
	body.ldn-page-service-detail .ldn-svc-book .ldn-actions .ldn-btn {
		width: 100%;
	}
	body.ldn-page-service-detail .ldn-svc-main > .ldn-panel.ldn-panel--pad {
		padding: 1rem;
	}
}

/* ---- Customer booking: compact service details ---- */
.ldn-booking-service-panel {
	margin-top: 1.5rem;
	padding: 1.35rem 1.45rem;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
}
.ldn-booking-service-head {
	margin-bottom: 1.05rem;
	padding-bottom: .85rem;
	border-bottom: 1px solid #eef2f7;
}
.ldn-booking-service-heading {
	display: flex;
	align-items: center;
	gap: .7rem;
	flex-wrap: wrap;
}
.ldn-booking-service-heading strong {
	font-size: 1.05rem;
}
.ldn-booking-service-view {
	flex: none;
	text-decoration: none;
}
.ldn-booking-service-meta {
	padding: .28rem .6rem;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: .75rem;
	font-weight: 700;
}
.ldn-booking-service-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.ldn-booking-service-intro {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	align-items: start;
	gap: 1.1rem;
}
.ldn-booking-service-cover {
	padding: .9rem;
	border: 1px solid #dbeafe;
	border-radius: 14px;
	background: linear-gradient(135deg, #f0fdf4, #eff6ff);
}
.ldn-booking-service-image {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}
.ldn-booking-service-gallery {
	min-width: 0;
}
.ldn-booking-service-gallery .ldn-svc-slider {
	border-radius: 12px;
}
.ldn-booking-service-gallery .ldn-svc-slider-img {
	 aspect-ratio: 4 / 3;
}
.ldn-booking-service-image--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}
.ldn-booking-service-image--empty .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}
.ldn-booking-service-copy {
	min-width: 0;
}
.ldn-booking-service-tags {
	display: flex;
	align-items: center;
	gap: .45rem;
	flex-wrap: wrap;
	margin-bottom: .55rem;
}
.ldn-booking-service-tags .ldn-svc-chip {
	font-size: .7rem;
}
.ldn-booking-service-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: .55rem;
}
.ldn-booking-service-title-row h3 {
	margin: 0;
	color: #0f172a;
	font-size: 1.2rem;
	line-height: 1.25;
}
.ldn-booking-service-title-row .ldn-price {
	flex: none;
	color: #15803d;
	font-size: 1.05rem;
	font-weight: 800;
	white-space: nowrap;
}
.ldn-booking-service-submeta {
	margin: -.2rem 0 .6rem;
	color: #64748b;
	font-size: .78rem;
}
.ldn-booking-service-copy .ldn-htmldesc {
	font-size: .9rem;
	line-height: 1.6;
	color: #475569;
}
.ldn-booking-service-description {
	max-height: 14.4em;
	overflow: hidden;
	transition: max-height .2s ease;
}
.ldn-booking-service-description.is-expanded {
	max-height: none;
}
.ldn-booking-service-copy .ldn-htmldesc p:last-child {
	margin-bottom: 0;
}
.ldn-booking-service-readmore {
	display: inline-flex;
	align-items: center;
	margin-top: .55rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #15803d;
	font-size: .82rem;
	font-weight: 800;
	cursor: pointer;
}
.ldn-booking-service-readmore:hover {
	color: #166534;
	text-decoration: underline;
}
.ldn-booking-service-provider {
	display: flex;
	align-items: center;
	gap: .4rem;
	margin-top: .8rem;
	padding-top: .7rem;
	border-top: 1px solid #f1f5f9;
	color: #64748b;
	font-size: .78rem;
}
.ldn-booking-service-provider .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
	color: #16a34a;
}
.ldn-booking-service-pricing {
	padding-top: 1.05rem;
	border-top: 1px solid #eef2f7;
}
.ldn-booking-service-pricing .ldn-section-title {
	margin: 0 0 .65rem;
	font-size: .95rem;
}
.ldn-booking-service-pricing .ldn-table-wrap {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
}
.ldn-booking-service-pricing .ldn-table {
	margin: 0;
	font-size: .84rem;
}
.ldn-booking-service-pricing .ldn-table th,
.ldn-booking-service-pricing .ldn-table td {
	padding: .65rem .75rem;
}
.ldn-booking-service-area {
	padding-top: 1.05rem;
	border-top: 1px solid #eef2f7;
}
.ldn-booking-service-area .ldn-section-title {
	margin: 0 0 .65rem;
	font-size: .95rem;
}
.ldn-booking-service-area .ldn-tags {
	margin: 0;
	gap: .45rem;
}
.ldn-booking-service-area .ldn-tag {
	background: #f1faf3;
	border-color: #d7eadb;
	color: #256b37;
	font-size: .78rem;
}
.ldn-booking-service-empty {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	margin: 0;
	padding: .9rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	color: #64748b;
	font-size: .88rem;
	line-height: 1.5;
}
.ldn-booking-service-empty-copy {
	min-width: 0;
}
.ldn-booking-service-empty-copy strong,
.ldn-booking-service-empty-copy p {
	margin: 0;
}
.ldn-booking-service-empty-copy strong {
	display: block;
	margin-bottom: .2rem;
	color: #0f172a;
}
.ldn-booking-service-empty-copy p + p {
	margin-top: .35rem;
}
.ldn-booking-service-empty--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #b91c1c;
}
.ldn-booking-service-empty--error .dashicons {
	margin-top: 2px;
	color: #dc2626;
}
.ldn-service-loading-dot {
	width: 9px;
	height: 9px;
	margin-top: .35rem;
	border-radius: 50%;
	background: #16a34a;
	box-shadow: 0 0 0 4px #dcfce7;
}

@media (max-width: 640px) {
	.ldn-booking-service-panel {
		margin-top: 1rem;
		padding: 1rem;
	}
	.ldn-booking-service-intro {
		grid-template-columns: 1fr;
		gap: .85rem;
	}
	.ldn-booking-service-cover {
		padding: .75rem;
	}
	.ldn-booking-service-image {
		width: 100%;
		height: 170px;
	}
	.ldn-booking-service-view {
		width: 100%;
		justify-content: center;
	}
	.ldn-booking-service-title-row {
		flex-direction: column;
		gap: .35rem;
	}
	.ldn-booking-service-title-row .ldn-price {
		font-size: 1rem;
	}
	.ldn-booking-service-pricing .ldn-table th,
	.ldn-booking-service-pricing .ldn-table td {
		padding: .55rem .6rem;
		white-space: nowrap;
	}
}
